{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/ShhGWBVhBmBR7U02eU1k/QbvKnIgBwfLehxGP7Pn0/hF9awyCfl.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.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", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/tMgLW02JctHcv25gtiqf/SlideShow.js\";import KeyInfo from\"#framer/local/canvasComponent/eU8x15pub/eU8x15pub.js\";import BackButton from\"#framer/local/canvasComponent/HnSuwsomd/HnSuwsomd.js\";import Footer from\"#framer/local/canvasComponent/Lo2b4HKrL/Lo2b4HKrL.js\";import ProjectCard from\"#framer/local/canvasComponent/q5ehOd4Cf/q5ehOd4Cf.js\";import Navbar from\"#framer/local/canvasComponent/xTDxPclhL/xTDxPclhL.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/aEVYHCYsz/aEVYHCYsz.js\";import*as sharedStyle7 from\"#framer/local/css/jIhDmXZQC/jIhDmXZQC.js\";import*as sharedStyle1 from\"#framer/local/css/njWAR1JYp/njWAR1JYp.js\";import*as sharedStyle8 from\"#framer/local/css/ntShLx_Vq/ntShLx_Vq.js\";import*as sharedStyle5 from\"#framer/local/css/oJJWHPOy4/oJJWHPOy4.js\";import*as sharedStyle6 from\"#framer/local/css/syzFyH9j3/syzFyH9j3.js\";import*as sharedStyle3 from\"#framer/local/css/u4EIRlaKy/u4EIRlaKy.js\";import*as sharedStyle from\"#framer/local/css/WgVycfRhQ/WgVycfRhQ.js\";import*as sharedStyle9 from\"#framer/local/css/Wj6Wl1p4c/Wj6Wl1p4c.js\";import*as sharedStyle4 from\"#framer/local/css/yeDeFqjxl/yeDeFqjxl.js\";import metadataProvider from\"#framer/local/webPageMetadata/hF9awyCfl/hF9awyCfl.js\";const NavbarFonts=getFonts(Navbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const BackButtonFonts=getFonts(BackButton);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const KeyInfoFonts=getFonts(KeyInfo);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const SlideshowFonts=getFonts(Slideshow);const ContainerWithFX=withFX(Container);const YouTubeFonts=getFonts(YouTube);const EmbedFonts=getFonts(Embed);const ProjectCardFonts=getFonts(ProjectCard);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const BlurGradientFonts=getFonts(BlurGradient);const breakpoints={AQhMz3Xlr:\"(max-width: 809px)\",eObec5g_Z:\"(min-width: 810px) and (max-width: 1259px)\",qOEPabaY9:\"(min-width: 1260px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9P2dt\";const variantClassNames={AQhMz3Xlr:\"framer-v-1xyhk33\",eObec5g_Z:\"framer-v-19qu0us\",qOEPabaY9:\"framer-v-9whq9x\"};const transition1={damping:30,delay:0,mass:1,stiffness:60,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={damping:30,delay:.1,mass:1,stiffness:80,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.2,mass:1,stiffness:80,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 animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition6={bounce:.2,delay:0,duration:.7,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:150,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition7={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:30};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"qOEPabaY9\",Phone:\"AQhMz3Xlr\",Tablet:\"eObec5g_Z\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qOEPabaY9\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vXwnenIGEd1n698iSa,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"vZprMt34m\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AQhMz3Xlr\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AQhMz3Xlr\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qOEPabaY9\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f5c224fe-3170-407d-9fc4-ea42613acde2, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-9whq9x\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-11qjuw5-container\",\"data-framer-appear-id\":\"11qjuw5\",initial:animation1,nodeId:\"QW10peJLK\",optimized:true,rendersWithMotion:true,scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{variant:\"uTzpJ6q5o\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"QW10peJLK\",layoutId:\"QW10peJLK\",style:{width:\"100%\"},variant:\"vcoVwRvcX\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c4tn5s\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xh618m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3brtj\",\"data-framer-name\":\"Left Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{y:(componentViewport?.y||0)+0+60+50+0+0+0+0+0},eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:(componentViewport?.y||0)+0+60+50+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1dnh11t-container\",\"data-framer-appear-id\":\"1dnh11t\",initial:animation1,nodeId:\"LWYwI8MtB\",optimized:true,rendersWithMotion:true,scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{OMuQy5S6m:resolvedLinks[2],variant:\"TKS4440u5\"},eObec5g_Z:{OMuQy5S6m:resolvedLinks[1],variant:\"TKS4440u5\"}},children:/*#__PURE__*/_jsx(BackButton,{height:\"100%\",id:\"LWYwI8MtB\",layoutId:\"LWYwI8MtB\",OMuQy5S6m:resolvedLinks[0],variant:\"ScgjV_wXx\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pzinya\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17flada\",\"data-styles-preset\":\"WgVycfRhQ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Korean Tarot\"})}),className:\"framer-13pppmg\",\"data-framer-name\":\"Title\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11l2zuw\",\"data-styles-preset\":\"njWAR1JYp\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(0, 0, 0))\"},children:\"An Interactive site where you can read fortunes within 3D Tarot cards\"})}),className:\"framer-ldkh0z\",\"data-framer-appear-id\":\"ldkh0z\",\"data-framer-name\":\"Website\",fonts:[\"Inter\"],initial:animation4,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17flada\",\"data-styles-preset\":\"WgVycfRhQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(0, 0, 0))\"},children:\"How might we introduce Korean aesthetics into digital fortune-telling to create a unique experience?\"})}),className:\"framer-12lo4u\",\"data-framer-appear-id\":\"12lo4u\",\"data-framer-name\":\"Website\",fonts:[\"Inter\"],initial:animation4,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7m6wto\",\"data-framer-name\":\"Right Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1f8n\",\"data-framer-name\":\"Main info\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+0},eObec5g_Z:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1608px) - 58px) / 2, 1px), 480px)`,y:(componentViewport?.y||0)+0+60+50+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s3pis5-container\",nodeId:\"u3m_jc_rA\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(KeyInfo,{gJucMQdbw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Ella Yoo\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Bora Yun\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Taeyun Kim\"})]}),height:\"100%\",id:\"u3m_jc_rA\",layoutId:\"u3m_jc_rA\",QCu4rIc7p:\"Timeline\",style:{width:\"100%\"},variant:\"rqXp9Os54\",wfX68JnDu:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Oct 2022 - May 2023\"})}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+124},eObec5g_Z:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+124}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1608px) - 58px) / 2, 1px), 480px)`,y:(componentViewport?.y||0)+0+60+50+0+0+0+0+0+124,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8mx38b-container\",nodeId:\"ZulsmO8xm\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(KeyInfo,{gJucMQdbw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Software Enginner (1)\",/*#__PURE__*/_jsx(\"br\",{}),\"Elijah Storm \"]})}),height:\"100%\",id:\"ZulsmO8xm\",layoutId:\"ZulsmO8xm\",QCu4rIc7p:\"Team\",style:{width:\"100%\"},variant:\"RhVek8fFx\",wfX68JnDu:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Designer (5)\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Anna E Kim \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Hyeyoon Jeong \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Mogin Park \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Mari Kim \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Myeongji Namgung \"})]}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+248},eObec5g_Z:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+248}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1608px) - 58px) / 2, 1px), 480px)`,y:(componentViewport?.y||0)+0+60+50+0+0+0+0+0+248,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cty3gc-container\",nodeId:\"CGwL7ZC6c\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(KeyInfo,{gJucMQdbw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Ella Yoo\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Bora Yun\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Taeyun Kim\"})]}),height:\"100%\",id:\"CGwL7ZC6c\",layoutId:\"CGwL7ZC6c\",QCu4rIc7p:\"My Role\",style:{width:\"100%\"},variant:\"rqXp9Os54\",wfX68JnDu:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"UI Design\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Character Modeling/Texturing\"})]}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+372},eObec5g_Z:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1608px) - 48px, 560px)`,y:(componentViewport?.y||0)+0+60+50+0+0+334.6+0+0+0+372}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1608px) - 58px) / 2, 1px), 480px)`,y:(componentViewport?.y||0)+0+60+50+0+0+0+0+0+372,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10z352t-container\",nodeId:\"dRLY8uBDP\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(KeyInfo,{gJucMQdbw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Ella Yoo\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Bora Yun\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Taeyun Kim\"})]}),height:\"100%\",id:\"dRLY8uBDP\",layoutId:\"dRLY8uBDP\",QCu4rIc7p:\"Tools\",style:{width:\"100%\"},variant:\"rqXp9Os54\",wfX68JnDu:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Figma, Photoshop, Illustrator, Cinema4D, Maya, After Effects\"})}),width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1mevyda\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+0),pixelHeight:1e3,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png\",srcSet:\"https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png 1458w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+0),pixelHeight:1e3,pixelWidth:1464,sizes:\"719px\",src:\"https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png\",srcSet:\"https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png 1458w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+0),pixelHeight:1e3,pixelWidth:1464,sizes:\"993px\",src:\"https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png\",srcSet:\"https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yS2BIRoO1bausWFDFkKbrTz9w3E.png 1458w\"},className:\"framer-1fr89nq\",id:elementId,ref:ref1})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jlz0w0\",\"data-styles-preset\":\"aEVYHCYsz\",style:{\"--framer-text-color\":\"var(--token-48ead1ea-65fb-4dab-b381-2b16a89a2801, rgb(158, 158, 158))\"},children:\"Korean Tarot is a 3D interactive web experience that reimagines traditional tarot with Korean cultural aesthetics. Designed to blend Eastern influences with the universal appeal of tarot, this project offers a fresh and immersive way for users to explore fortune-telling through Korean-inspired visual storytelling.\"})}),className:\"framer-1oqgof\",\"data-framer-appear-id\":\"1oqgof\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bpsygl\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ilqkm9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Background\"})}),className:\"framer-9gd2ac\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-17dgbe5\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"As online fortune-telling gains popularity among young adults, most tarot cards remain rooted in Western symbols that may not resonate with Eastern audiences. Korean Tarot fills this gap by integrating Korean themes, allowing users to experience fortune-telling through a culturally immersive lens.\"})}),initial:animation1,optimized:true},eObec5g_Z:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11l2zuw\",\"data-styles-preset\":\"njWAR1JYp\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"As online fortune-telling gains popularity among young adults, most tarot cards remain rooted in Western symbols that may not resonate with Eastern audiences. Korean Tarot fills this gap by integrating Korean themes, allowing users to experience fortune-telling through a culturally immersive lens.\"})}),className:\"framer-nnk2p6\",\"data-framer-appear-id\":\"nnk2p6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gbkxll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7dwhl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Problem Statement\"})}),className:\"framer-1xov95w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-1dn3udf\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:[\"Most existing tarot websites and apps are \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"text-based,\"}),\" offering limited interactivity and visual engagement. Additionally, they follow \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"Western cultural aesthetics\"}),\", which can feel distant for Eastern audiences seeking meaningful, culturally relevant interpretations.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11l2zuw\",\"data-styles-preset\":\"njWAR1JYp\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:[\"Most existing tarot websites and apps are \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"text-based,\"}),\" offering limited interactivity and visual engagement. Additionally, they follow \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"Western cultural aesthetics\"}),\", which can feel distant for Eastern audiences seeking meaningful, culturally relevant interpretations.\"]})}),className:\"framer-bwn1jk\",\"data-framer-appear-id\":\"bwn1jk\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mnu7ho\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-juymmy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Project Goals\"})}),className:\"framer-i000yk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-11mg5j6\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Create a tarot card experience with a distinctly Korean influence, using traditional elements like historical paintings and Eastern symbols.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Design a 3D interactive space where users can immerse themselves and engage with their chosen cards on a deeper level.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11l2zuw\",\"data-styles-preset\":\"njWAR1JYp\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Create a tarot card experience with a distinctly Korean influence, using traditional elements like historical paintings and Eastern symbols.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11l2zuw\",\"data-styles-preset\":\"njWAR1JYp\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Design a 3D interactive space where users can immerse themselves and engage with their chosen cards on a deeper level.\"})]}),className:\"framer-195jiv6\",\"data-framer-appear-id\":\"195jiv6\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"\\bKorean Tarot's Eastern-inspired card designs\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xw5gwn\",\"data-styles-preset\":\"ntShLx_Vq\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"\\bKorean Tarot's Eastern-inspired card designs\"})}),className:\"framer-1xtn3j3\",\"data-framer-appear-id\":\"1xtn3j3\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f85u38\",\"data-framer-name\":\"Frame 240347\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oygpfb hidden-1xyhk33\",\"data-framer-name\":\"Frame 240339\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vllzoo\",\"data-framer-name\":\"Frame 240318\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fantasies of Korea\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fantasies of Korea\"})}),className:\"framer-1jhwxas\",\"data-framer-name\":\"Fantasies of Korea\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l7oii6\",\"data-framer-name\":\"Frame 240340\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+25.65+0+0),sizes:\"156.05px\",src:\"https://framerusercontent.com/images/oIhgaFQCBeVj9b575GhSOBR9V1E.png\",srcSet:\"https://framerusercontent.com/images/oIhgaFQCBeVj9b575GhSOBR9V1E.png?scale-down-to=512 512w,https://framerusercontent.com/images/oIhgaFQCBeVj9b575GhSOBR9V1E.png 871w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+34.93+0+0),sizes:\"210.57px\",src:\"https://framerusercontent.com/images/oIhgaFQCBeVj9b575GhSOBR9V1E.png\",srcSet:\"https://framerusercontent.com/images/oIhgaFQCBeVj9b575GhSOBR9V1E.png?scale-down-to=512 512w,https://framerusercontent.com/images/oIhgaFQCBeVj9b575GhSOBR9V1E.png 871w\"},className:\"framer-1z05lgn\",\"data-framer-name\":\"image 561\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+25.65+0+67.99),sizes:\"156.05px\",src:\"https://framerusercontent.com/images/dAU3vznjw6yciLT0Zl2Ps4cCq8U.png\",srcSet:\"https://framerusercontent.com/images/dAU3vznjw6yciLT0Zl2Ps4cCq8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/dAU3vznjw6yciLT0Zl2Ps4cCq8U.png 877w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+34.93+0+91.75),sizes:\"210.57px\",src:\"https://framerusercontent.com/images/dAU3vznjw6yciLT0Zl2Ps4cCq8U.png\",srcSet:\"https://framerusercontent.com/images/dAU3vznjw6yciLT0Zl2Ps4cCq8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/dAU3vznjw6yciLT0Zl2Ps4cCq8U.png 877w\"},className:\"framer-1jfs402\",\"data-framer-name\":\"image 562\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"The card's characteristics match well with the tarot figures.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"The card's characteristics match well with the tarot figures.\"})}),className:\"framer-2eg281\",\"data-framer-name\":\"The card's characteristics match well with the tarot figures.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6rwq7g\",\"data-framer-name\":\"Frame 240344\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tuqfsc\",\"data-framer-name\":\"Frame 240321\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Major Arcana in Korean Style\"})})},eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Major Arcana in Korean Style\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Major Arcana in Korean Style\"})}),className:\"framer-1yy3aw8\",\"data-framer-name\":\"Major Arcana in Korean Style\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198cc8u\",\"data-framer-name\":\"Frame 240341\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1134+0+542+0+0+25.18+0),positionX:\"center\",positionY:\"center\",sizes:\"80.81px\",src:\"https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png\",srcSet:\"https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png?scale-down-to=1024 603w,https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png 736w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+24.3+0),positionX:\"center\",positionY:\"center\",sizes:\"78px\",src:\"https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png\",srcSet:\"https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png?scale-down-to=1024 603w,https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png 736w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+32.8+0),positionX:\"center\",positionY:\"center\",sizes:\"105.26px\",src:\"https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png\",srcSet:\"https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png?scale-down-to=1024 603w,https://framerusercontent.com/images/hF3N8JuI0HJcXuOULVI5KRv1NI.png 736w\"},className:\"framer-1raeb7q\",\"data-framer-name\":\"image 584\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1134+0+542+0+0+25.18+0),positionX:\"center\",positionY:\"center\",sizes:\"82.82px\",src:\"https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png\",srcSet:\"https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png?scale-down-to=1024 617w,https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png 752w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+24.3+0),positionX:\"center\",positionY:\"center\",sizes:\"79.94px\",src:\"https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png\",srcSet:\"https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png?scale-down-to=1024 617w,https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png 752w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+32.8+0),positionX:\"center\",positionY:\"center\",sizes:\"107.88px\",src:\"https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png\",srcSet:\"https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png?scale-down-to=1024 617w,https://framerusercontent.com/images/tkCFaayCWoE6xgc4Rf1MQDApy8M.png 752w\"},className:\"framer-1nxjsry\",\"data-framer-name\":\"image 582\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"It directly connects Korean elements to the tarot.\"})})},eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"It directly connects Korean elements to the tarot.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"It directly connects Korean elements to the tarot.\"})}),className:\"framer-o68g3t\",\"data-framer-name\":\"It directly connects Korean elements to the tarot.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9yuylu\",\"data-framer-name\":\"Frame 240345\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16o8lou\",\"data-framer-name\":\"Frame 240322\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"22 Korean Tarot Cards\"})})},eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"22 Korean Tarot Cards\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"22 Korean Tarot Cards\"})}),className:\"framer-1ojntur\",\"data-framer-name\":\"22 Korean Tarot Cards\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vd6fbk\",\"data-framer-name\":\"Frame 240342\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1134+0+542+0+0+26.14+0),positionX:\"center\",positionY:\"center\",sizes:\"77.17px\",src:\"https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png\",srcSet:\"https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png?scale-down-to=1024 574w,https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png 700w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+25.65+0),positionX:\"center\",positionY:\"center\",sizes:\"74.49px\",src:\"https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png\",srcSet:\"https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png?scale-down-to=1024 574w,https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png 700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+34.93+0),positionX:\"center\",positionY:\"center\",sizes:\"100.53px\",src:\"https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png\",srcSet:\"https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png?scale-down-to=1024 574w,https://framerusercontent.com/images/FwHSfDBJRV36v8Xq76ogbOKiE.png 700w\"},className:\"framer-1bqi1i1\",\"data-framer-name\":\"image 569\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1134+0+542+0+0+26.14+0),positionX:\"center\",positionY:\"center\",sizes:\"77.17px\",src:\"https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png\",srcSet:\"https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png?scale-down-to=1024 574w,https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png 700w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+25.65+0),positionX:\"center\",positionY:\"center\",sizes:\"74.49px\",src:\"https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png\",srcSet:\"https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png?scale-down-to=1024 574w,https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png 700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+34.93+0),positionX:\"center\",positionY:\"center\",sizes:\"100.53px\",src:\"https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png\",srcSet:\"https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png?scale-down-to=1024 574w,https://framerusercontent.com/images/MMSqxTFf510cTKNFV7eaaZ81KjU.png 700w\"},className:\"framer-1hqympd\",\"data-framer-name\":\"image 568\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"It directly connects Korean elements to the tarot.\"})})},eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"It directly connects Korean elements to the tarot.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"It directly connects Korean elements to the tarot.\"})}),className:\"framer-1sgijar\",\"data-framer-name\":\"It directly connects Korean elements to the tarot.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sg3ee4 hidden-1xyhk33\",\"data-framer-name\":\"Frame 240346\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urmqw0\",\"data-framer-name\":\"Frame 240323\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Korean Pictorial Tarot\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Korean Pictorial Tarot\"})}),className:\"framer-fovy9v\",\"data-framer-name\":\"Korean Pictorial Tarot\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfzwed\",\"data-framer-name\":\"Frame 240343\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+25.65+0),positionX:\"center\",positionY:\"center\",sizes:\"76.37px\",src:\"https://framerusercontent.com/images/YbiVr6ZTV3XeVeRTdQvPlOL8PU.png\",srcSet:\"https://framerusercontent.com/images/YbiVr6ZTV3XeVeRTdQvPlOL8PU.png?scale-down-to=1024 598w,https://framerusercontent.com/images/YbiVr6ZTV3XeVeRTdQvPlOL8PU.png 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+34.93+0),positionX:\"center\",positionY:\"center\",sizes:\"103.06px\",src:\"https://framerusercontent.com/images/YbiVr6ZTV3XeVeRTdQvPlOL8PU.png\",srcSet:\"https://framerusercontent.com/images/YbiVr6ZTV3XeVeRTdQvPlOL8PU.png?scale-down-to=1024 598w,https://framerusercontent.com/images/YbiVr6ZTV3XeVeRTdQvPlOL8PU.png 720w\"},className:\"framer-1y0idce\",\"data-framer-name\":\"image 575\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+1611+0+573+0+0+25.65+0),positionX:\"center\",positionY:\"center\",sizes:\"76.37px\",src:\"https://framerusercontent.com/images/jjrkQxaQKVkJNb4w93eb9GE3qao.png\",srcSet:\"https://framerusercontent.com/images/jjrkQxaQKVkJNb4w93eb9GE3qao.png?scale-down-to=1024 598w,https://framerusercontent.com/images/jjrkQxaQKVkJNb4w93eb9GE3qao.png 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+1909+0+573+0+0+34.93+0),positionX:\"center\",positionY:\"center\",sizes:\"103.06px\",src:\"https://framerusercontent.com/images/jjrkQxaQKVkJNb4w93eb9GE3qao.png\",srcSet:\"https://framerusercontent.com/images/jjrkQxaQKVkJNb4w93eb9GE3qao.png?scale-down-to=1024 598w,https://framerusercontent.com/images/jjrkQxaQKVkJNb4w93eb9GE3qao.png 720w\"},className:\"framer-q4ofj9\",\"data-framer-name\":\"image 578\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"Designed using real old paintings and artifacts.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"Designed using real old paintings and artifacts.\"})}),className:\"framer-ef7471\",\"data-framer-name\":\"Designed using real old paintings and artifacts.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wr1erj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8yvo40\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Key Features & Interactive Solution\"})}),className:\"framer-cqd09j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-5epp39\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pim42v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"3D Interactive Card Exploration\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",children:\"3D Interactive Card Exploration\"})}),className:\"framer-1ihv84k\",\"data-framer-appear-id\":\"1ihv84k\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Users enter a 3D space within each tarot card, where they interact with various symbols that reveal meanings based on Korean cultural interpretations.\"})}),className:\"framer-16ls1ws\",\"data-framer-appear-id\":\"16ls1ws\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mq7kpz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"Multiple Fortune Categories\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",children:\"Multiple Fortune Categories\"})}),className:\"framer-zsxd6b\",\"data-framer-appear-id\":\"zsxd6b\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Users can select different fortune types\u2014wealth, love, career, or annual fortune\u2014then explore past, present, and future predictions within each.\"})}),className:\"framer-1wfxstv\",\"data-framer-appear-id\":\"1wfxstv\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1td3gxz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"Cultural Symbolism\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",children:\"Cultural Symbolism\"})}),className:\"framer-cd5mpa\",\"data-framer-appear-id\":\"cd5mpa\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Each card incorporates Korean symbols and stories, blending traditional fortune-telling with historical references, allowing users to learn about Korean culture while exploring their fortunes.\"})}),className:\"framer-ps08a6\",\"data-framer-appear-id\":\"ps08a6\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pvtilk-container\",isModuleExternal:true,nodeId:\"xnPJ8OViG\",rendersWithMotion:true,scopeId:\"hF9awyCfl\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:12,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"xnPJ8OViG\",intervalControl:4,itemAmount:1,layoutId:\"xnPJ8OViG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:40,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1920,sizes:\"960px\",src:\"https://framerusercontent.com/images/ndkGOVBQ6Lwon4dwWYxc3mLNA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ndkGOVBQ6Lwon4dwWYxc3mLNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ndkGOVBQ6Lwon4dwWYxc3mLNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndkGOVBQ6Lwon4dwWYxc3mLNA.jpg 1920w\"},className:\"framer-2qjbpf\",\"data-framer-name\":\"Card gui5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1920,sizes:\"960px\",src:\"https://framerusercontent.com/images/XGrATXk3vJtFF6ANR3knunKKXs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XGrATXk3vJtFF6ANR3knunKKXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XGrATXk3vJtFF6ANR3knunKKXs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XGrATXk3vJtFF6ANR3knunKKXs.jpg 1920w\"},className:\"framer-1k02j1e\",\"data-framer-name\":\"Korean tarot gui\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1920,sizes:\"960px\",src:\"https://framerusercontent.com/images/K7ce7n8U28kGW0SisVd9V3eAz3s.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K7ce7n8U28kGW0SisVd9V3eAz3s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K7ce7n8U28kGW0SisVd9V3eAz3s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7ce7n8U28kGW0SisVd9V3eAz3s.jpg 1920w\"},className:\"framer-11rr8di\",\"data-framer-name\":\"Card gui\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1920,sizes:\"960px\",src:\"https://framerusercontent.com/images/J9zHeXRYf7w6emjZclqjhJVOQ.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/J9zHeXRYf7w6emjZclqjhJVOQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J9zHeXRYf7w6emjZclqjhJVOQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J9zHeXRYf7w6emjZclqjhJVOQ.jpg 1920w\"},className:\"framer-polyae\",\"data-framer-name\":\"Card gui1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1920,sizes:\"960px\",src:\"https://framerusercontent.com/images/Xl6JC6Q0czPM6eciVhyLV4zig.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Xl6JC6Q0czPM6eciVhyLV4zig.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xl6JC6Q0czPM6eciVhyLV4zig.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xl6JC6Q0czPM6eciVhyLV4zig.jpg 1920w\"},className:\"framer-12u7erd\",\"data-framer-name\":\"Card gui2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1920,sizes:\"960px\",src:\"https://framerusercontent.com/images/EycWZnzpDhFN02kvTwpag0x4hg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EycWZnzpDhFN02kvTwpag0x4hg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EycWZnzpDhFN02kvTwpag0x4hg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EycWZnzpDhFN02kvTwpag0x4hg.jpg 1920w\"},className:\"framer-1embnu4\",\"data-framer-name\":\"Card gui7\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13vb5x6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15gvgn2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Competitor Analysis\"})}),className:\"framer-1v31wdt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-4mixr4\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"We reviewed popular online tarot platforms and noted that existing services primarily rely on text and static images, limiting engagement. Additionally, most platforms have a Western-style design that does not fully resonate with an Eastern audience. Based on these findings, we developed a unique 3D experience rooted in Korean aesthetics.\"})}),className:\"framer-3sk7cm\",\"data-framer-appear-id\":\"3sk7cm\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ctagsh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1styr0a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:349,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+3301.99+0+268+0+0+0+0),pixelHeight:240,pixelWidth:698,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.88)`,src:\"https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png 698w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:349,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+3797.85+0+268+0+0+0),pixelHeight:240,pixelWidth:698,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3744)`,src:\"https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png 698w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:349,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+4375.68+0+268+0+0+0),pixelHeight:240,pixelWidth:698,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.37)`,src:\"https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VHxGtrzCoec6k6RZkmPAJMUNHhE.png 698w\"},className:\"framer-1hhmm4g\",\"data-framer-name\":\"Image\"})}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ccxwig\",\"data-styles-preset\":\"Wj6Wl1p4c\",children:\"Kismet : A 3D tarot card game in VR\"})}),className:\"framer-1ep32t1 hidden-1xyhk33\",\"data-framer-appear-id\":\"1ep32t1\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ccxwig\",\"data-styles-preset\":\"Wj6Wl1p4c\",children:\"Benchmarking the use of 3D graphics to interact with users and see the tarot.\"})}),className:\"framer-15nhpvs\",\"data-framer-appear-id\":\"15nhpvs\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65qju3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:347.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+3301.99+0+268+0+269.8458+0+0),pixelHeight:240,pixelWidth:695,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.88)`,src:\"https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png 695w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:347.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+3797.85+0+268+0+0+0),pixelHeight:240,pixelWidth:695,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3744)`,src:\"https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png 695w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:347.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+4375.68+0+268+0+0+0),pixelHeight:240,pixelWidth:695,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.37)`,src:\"https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/RB5W570flJ8jqDUrTcxekySQ.png 695w\"},className:\"framer-187uzmh\",\"data-framer-name\":\"Image\"})}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ccxwig\",\"data-styles-preset\":\"Wj6Wl1p4c\",children:\"A tarot interaction site run by the official YouTube account.\"})}),className:\"framer-1k7u94r hidden-1xyhk33\",\"data-framer-appear-id\":\"1k7u94r\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ccxwig\",\"data-styles-preset\":\"Wj6Wl1p4c\",children:\"Benchmarked for interactivity where the space on the page moves, and content where you can create your own cards.\"})}),className:\"framer-1j3gwid\",\"data-framer-appear-id\":\"1j3gwid\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ifhl8t\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18equam\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Design Process\"})}),className:\"framer-1rmdtxi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-4t096x\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Adapting the 22 Major Arcana cards to Korean cultural figures was challenging. We explored using the 12 Zodiac animals, Korean deities, historical figures (like Emperor Gojong and Hwang Jini), and fictional characters (like Jeon Woo-chi), but maintaining consistency was difficult.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"\u200B\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:'To ensure unity and avoid sensitivity, we chose generic titles\u2014using \"Emperor\" instead of \"Emperor Gojong\" and \"Fairy\" instead of specific names. Each card\u2019s interaction was crafted to align with its meaning, balancing cultural representation with tarot archetypes.'})]}),className:\"framer-v16c7u\",\"data-framer-appear-id\":\"v16c7u\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-480x7-container\",isModuleExternal:true,nodeId:\"O8zySUJbQ\",rendersWithMotion:true,scopeId:\"hF9awyCfl\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:12,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"O8zySUJbQ\",intervalControl:2,itemAmount:1,layoutId:\"O8zySUJbQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:40,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:448.5,intrinsicWidth:797.5,pixelHeight:897,pixelWidth:1595,sizes:\"798.3891px\",src:\"https://framerusercontent.com/images/I61HB110x1GSU82f4LIZO8oA7C8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/I61HB110x1GSU82f4LIZO8oA7C8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I61HB110x1GSU82f4LIZO8oA7C8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I61HB110x1GSU82f4LIZO8oA7C8.jpg 1595w\"},className:\"framer-rfb2sw\",\"data-border\":true,\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:448.5,intrinsicWidth:797.5,pixelHeight:897,pixelWidth:1595,sizes:\"798.3891px\",src:\"https://framerusercontent.com/images/SKWcXzUAj6IMOiqGLj7KmWPRFsU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SKWcXzUAj6IMOiqGLj7KmWPRFsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SKWcXzUAj6IMOiqGLj7KmWPRFsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SKWcXzUAj6IMOiqGLj7KmWPRFsU.jpg 1595w\"},className:\"framer-10rw697\",\"data-border\":true,\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:448.5,intrinsicWidth:797.5,pixelHeight:897,pixelWidth:1595,sizes:\"798.3891px\",src:\"https://framerusercontent.com/images/BDBQkOLThJFBa6XInyIKeaI7dw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BDBQkOLThJFBa6XInyIKeaI7dw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BDBQkOLThJFBa6XInyIKeaI7dw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BDBQkOLThJFBa6XInyIKeaI7dw.jpg 1595w\"},className:\"framer-cyn574\",\"data-border\":true,\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/OVICm25JDKIW0zdW5XAp0GB6lKc.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OVICm25JDKIW0zdW5XAp0GB6lKc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OVICm25JDKIW0zdW5XAp0GB6lKc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OVICm25JDKIW0zdW5XAp0GB6lKc.jpg 1595w\"},className:\"framer-1yp4u1o\",\"data-border\":true,\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/DSNUze5kfn5RRvN5JvIZ7bwDc4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DSNUze5kfn5RRvN5JvIZ7bwDc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DSNUze5kfn5RRvN5JvIZ7bwDc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DSNUze5kfn5RRvN5JvIZ7bwDc4.jpg 1595w\"},className:\"framer-1ph3ybz\",\"data-border\":true,\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/DnGX796K00LXzpMhlbz1IF9O8Mg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DnGX796K00LXzpMhlbz1IF9O8Mg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DnGX796K00LXzpMhlbz1IF9O8Mg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DnGX796K00LXzpMhlbz1IF9O8Mg.jpg 1595w\"},className:\"framer-15cudaj\",\"data-border\":true,\"data-framer-name\":\"6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/I8oNagjG73TIptwzwgYsXZFJF4U.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/I8oNagjG73TIptwzwgYsXZFJF4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I8oNagjG73TIptwzwgYsXZFJF4U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I8oNagjG73TIptwzwgYsXZFJF4U.jpg 1595w\"},className:\"framer-17i3ebi\",\"data-border\":true,\"data-framer-name\":\"7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/AnWWdSqkLbZaEHb5bYfLMNI7JGI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AnWWdSqkLbZaEHb5bYfLMNI7JGI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AnWWdSqkLbZaEHb5bYfLMNI7JGI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AnWWdSqkLbZaEHb5bYfLMNI7JGI.jpg 1595w\"},className:\"framer-uzfgxo\",\"data-border\":true,\"data-framer-name\":\"8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/RLYXUfcgUaWcZ36TPXbXCLNcw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RLYXUfcgUaWcZ36TPXbXCLNcw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RLYXUfcgUaWcZ36TPXbXCLNcw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RLYXUfcgUaWcZ36TPXbXCLNcw.jpg 1595w\"},className:\"framer-1vklzio\",\"data-border\":true,\"data-framer-name\":\"9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/gB1BXSqAyp2aEJzgEZx1JjJMCUI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gB1BXSqAyp2aEJzgEZx1JjJMCUI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gB1BXSqAyp2aEJzgEZx1JjJMCUI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gB1BXSqAyp2aEJzgEZx1JjJMCUI.jpg 1595w\"},className:\"framer-1bz0hxk\",\"data-border\":true,\"data-framer-name\":\"10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/TBnDcr4QnQDVcHTCCAe6OhpUE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TBnDcr4QnQDVcHTCCAe6OhpUE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TBnDcr4QnQDVcHTCCAe6OhpUE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TBnDcr4QnQDVcHTCCAe6OhpUE.jpg 1595w\"},className:\"framer-1cc6f8l\",\"data-border\":true,\"data-framer-name\":\"11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/Cu3HZmTkFvzX3A3wzMabEl73JT8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Cu3HZmTkFvzX3A3wzMabEl73JT8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Cu3HZmTkFvzX3A3wzMabEl73JT8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cu3HZmTkFvzX3A3wzMabEl73JT8.jpg 1595w\"},className:\"framer-1q7hw4f\",\"data-border\":true,\"data-framer-name\":\"12\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/pZBOKCzo3RmaXa2fn2Qv62eaUdY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pZBOKCzo3RmaXa2fn2Qv62eaUdY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pZBOKCzo3RmaXa2fn2Qv62eaUdY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pZBOKCzo3RmaXa2fn2Qv62eaUdY.jpg 1595w\"},className:\"framer-1eypkqa\",\"data-border\":true,\"data-framer-name\":\"13\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/0YuQ13tIFKyNDDckiBrwYDAHM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0YuQ13tIFKyNDDckiBrwYDAHM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0YuQ13tIFKyNDDckiBrwYDAHM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0YuQ13tIFKyNDDckiBrwYDAHM.jpg 1595w\"},className:\"framer-erbptl\",\"data-border\":true,\"data-framer-name\":\"14\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/JoaaTcu2hQmTKo9VAQnaCMp8M.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JoaaTcu2hQmTKo9VAQnaCMp8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JoaaTcu2hQmTKo9VAQnaCMp8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JoaaTcu2hQmTKo9VAQnaCMp8M.jpg 1595w\"},className:\"framer-1yozt6s\",\"data-border\":true,\"data-framer-name\":\"15\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/s8iqzWBPokvbahBnlFx098NHfCA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/s8iqzWBPokvbahBnlFx098NHfCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s8iqzWBPokvbahBnlFx098NHfCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s8iqzWBPokvbahBnlFx098NHfCA.jpg 1595w\"},className:\"framer-1s3vqo3\",\"data-border\":true,\"data-framer-name\":\"16\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/SUORXXvG0v0hyQ1xOEh4E0PaUGU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SUORXXvG0v0hyQ1xOEh4E0PaUGU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUORXXvG0v0hyQ1xOEh4E0PaUGU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUORXXvG0v0hyQ1xOEh4E0PaUGU.jpg 1595w\"},className:\"framer-1e2w4o6\",\"data-border\":true,\"data-framer-name\":\"17\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:797.5,pixelHeight:898,pixelWidth:1595,sizes:\"799.2762px\",src:\"https://framerusercontent.com/images/yxu0KBHCzntK3oSIrOPWhziyro.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yxu0KBHCzntK3oSIrOPWhziyro.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yxu0KBHCzntK3oSIrOPWhziyro.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yxu0KBHCzntK3oSIrOPWhziyro.jpg 1595w\"},className:\"framer-1f5e53w\",\"data-border\":true,\"data-framer-name\":\"18\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xml8qv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5m37f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Design & Prototype\"})}),className:\"framer-sz89l3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-1c8eugl\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Through low- and high-fidelity wireframes, we mapped out the user journey and interactions within the 3D environment. Initial designs explored a 2D approach, but we ultimately pivoted to a 3D format, which allowed for a more immersive experience. I was mainly responsible for character modeling and rigging, adding depth to the visual experience within the interactive tarot cards.\"})}),className:\"framer-pbprp3\",\"data-framer-appear-id\":\"pbprp3\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:416.5,intrinsicWidth:938.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5001.8358+0+268),pixelHeight:833,pixelWidth:1877,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.88)`,src:\"https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png 1877w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:416.5,intrinsicWidth:938.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5634.85+0+268),pixelHeight:833,pixelWidth:1877,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png 1877w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:416.5,intrinsicWidth:938.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+6345.18+0+268),pixelHeight:833,pixelWidth:1877,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FHZNKEr8DHVaVXl5Wmx4psP8.png 1877w\"},className:\"framer-t59db1\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obeam\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xw5gwn\",\"data-styles-preset\":\"ntShLx_Vq\",children:\"Initially, we were concerned that a 3D design would not feel like a card, so we approached it as a 2D design.\"})}),className:\"framer-1t3skow\",\"data-framer-appear-id\":\"1t3skow\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:1010,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5001.8358+0+708.5+0+115),pixelHeight:384,pixelWidth:2020,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.88)`,src:\"https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png 2020w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:1010,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5634.85+0+708.5+0+115),pixelHeight:384,pixelWidth:2020,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png 2020w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:1010,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+6345.18+0+708.5+0+115),pixelHeight:384,pixelWidth:2020,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WxWrS4fXT5ixVLYt3Tv5GS7kKbw.png 2020w\"},className:\"framer-1ggap3z\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xw5gwn\",\"data-styles-preset\":\"ntShLx_Vq\",children:\"However, after creating the spaces in the tarot card in 3D, I realized that the 2D graphics card felt too foreign, so I switched to a 3D design.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xw5gwn\",\"data-styles-preset\":\"ntShLx_Vq\",children:\"I designed a tarot card back that visualizes the Eastern yin-yang spirit.\"})]}),className:\"framer-82mg7v\",\"data-framer-appear-id\":\"82mg7v\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247.5,intrinsicWidth:1070.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5001.8358+0+708.5+0+557),pixelHeight:495,pixelWidth:2141,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.97)`,src:\"https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=512 512w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png 2141w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247.5,intrinsicWidth:1070.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5634.85+0+708.5+0+557),pixelHeight:495,pixelWidth:2141,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=512 512w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png 2141w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247.5,intrinsicWidth:1070.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+6345.18+0+708.5+0+557),pixelHeight:495,pixelWidth:2141,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=512 512w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iFuh97p46l8Vpu5onvLucbO08.png 2141w\"},className:\"framer-wb3hud\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k8tm2t\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xw5gwn\",\"data-styles-preset\":\"ntShLx_Vq\",children:\"The initial approach was to design a character with no eyebrows or a cute childlike character. However, in order to capture the mysterious and serious vibe of the tarot cards, I switched to a 3D character with a more realistic image.\"})}),className:\"framer-1dypfyo\",\"data-framer-appear-id\":\"1dypfyo\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:452.5,intrinsicWidth:985,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5001.8358+0+1537+0+115),pixelHeight:905,pixelWidth:1970,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0493)`,src:\"https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png 1970w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:452.5,intrinsicWidth:985,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+5634.85+0+1537+0+115),pixelHeight:905,pixelWidth:1970,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png 1970w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:452.5,intrinsicWidth:985,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+6345.18+0+1537+0+115),pixelHeight:905,pixelWidth:1970,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bWNp0QMWFNnhs5oOxKg8GJVUQ.png 1970w\"},className:\"framer-l41wge\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xw5gwn\",\"data-styles-preset\":\"ntShLx_Vq\",children:\"I was primarily responsible for modeling and rigging the character faces.\"})}),className:\"framer-1gsckcd\",\"data-framer-appear-id\":\"1gsckcd\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2t3stl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tsvw3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Information Architecture & User Flow\"})}),className:\"framer-1l489op\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-te3mxq\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"The structure is designed to guide users through various fortune categories seamlessly:\"})}),className:\"framer-u90fz3\",\"data-framer-appear-id\":\"u90fz3\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ahq047\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Choose a Fortune Type\"})})})}),className:\"framer-1u63onz\",\"data-framer-appear-id\":\"1u63onz\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Users select a fortune category, such as love or career.\"})}),className:\"framer-10jb8oh\",\"data-framer-appear-id\":\"10jb8oh\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ykzqo\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",start:\"2\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Draw Three Cards\"})})})}),className:\"framer-xp0k6i\",\"data-framer-appear-id\":\"xp0k6i\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Users explore their past, present, and future fortunes within the selected category.\"})}),className:\"framer-1q7db6q\",\"data-framer-appear-id\":\"1q7db6q\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn1a1r\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",start:\"3\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interact and Discover\"})})})}),className:\"framer-2vxlel\",\"data-framer-appear-id\":\"2vxlel\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"By clicking on a card, users enter a 3D space filled with symbols, allowing for a deep, interactive fortune-telling experience.\"})}),className:\"framer-gmnyjt\",\"data-framer-appear-id\":\"gmnyjt\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15f1luk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+7020.8358+0+1141+0+0),pixelHeight:968,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8681)`,src:\"https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png 1920w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+8048.35+0+745+22.75),pixelHeight:968,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3772)`,src:\"https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+8786.68+0+745+22.75),pixelHeight:968,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3772)`,src:\"https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WU2K7SxH9jWzCAy0FuuZtOy1Jc.png 1920w\"},className:\"framer-1fdw7r\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+7020.8358+0+1141+0+157.0662),pixelHeight:968,pixelWidth:1661,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8681)`,src:\"https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png 1661w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+8048.35+0+745+0),pixelHeight:968,pixelWidth:1661,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3772)`,src:\"https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png 1661w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+8786.68+0+745+0),pixelHeight:968,pixelWidth:1661,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3772)`,src:\"https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuKplji2Pt15ngJUAs7Q6DsHFb0.png 1661w\"},className:\"framer-1ahaudh\",\"data-framer-name\":\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6kghvg\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1njs7h2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q3rm78\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Visual Design Choices\"})}),className:\"framer-1875nz3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-hf1ueh\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"To align with Eastern aesthetics, we used Korean traditional colors, historical elements, and a unique back card design that reflects the yin-yang philosophy. This distinct design approach provides an engaging yet culturally rich visual experience.\"})}),className:\"framer-19lh8ad\",\"data-framer-appear-id\":\"19lh8ad\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ado5ho\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k4ngu5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"3D Card Design\"})}),className:\"framer-ufo2x8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-1vq0xcj\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"The cards were designed in 3D to give users the sensation of stepping into an immersive world within each card. Each fortune type is represented with unique color schemes and elements that align with traditional Korean symbolism. My primary contributions in the 3D design aspect included character modeling and rigging, ensuring the characters supported the interactive and mystical atmosphere of the tarot experience.\"})}),className:\"framer-1s0yni5\",\"data-framer-appear-id\":\"1s0yni5\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-156retm-container\",isModuleExternal:true,nodeId:\"PjLy9WHze\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"PjLy9WHze\",isMixedBorderRadius:false,isRed:true,layoutId:\"PjLy9WHze\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://youtu.be/x_VvlAFHy30?si=8tveZPv0p45OkMLp\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rwyjdy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7dm3r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Outcomes & Recognition\"})}),className:\"framer-1mmtd8u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-1g4l4wn\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"The Korean Tarot project was successfully developed as an interactive website, receiving positive feedback for its cultural depth and innovative use of 3D design. Notably, it was awarded the Encouragement Prize at the 29th International Communication Design Competition in 2023, recognizing its unique blend of traditional Korean aesthetics with modern interactive design.\"})}),className:\"framer-zj62er\",\"data-framer-appear-id\":\"zj62er\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:292,intrinsicWidth:872.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+9380.9619+0+268),pixelHeight:584,pixelWidth:1745,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=512 512w,https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png 1745w\"}},eObec5g_Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:292,intrinsicWidth:872.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+858.6+0+10260.85+0+268),pixelHeight:584,pixelWidth:1745,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=512 512w,https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png 1745w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:292,intrinsicWidth:872.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+50+524+0+11238.18+0+268),pixelHeight:584,pixelWidth:1745,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.76)`,src:\"https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=512 512w,https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DwOIOWUqFgtUH3CZWOO7TOf0AE.png 1745w\"},className:\"framer-173ocww\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7ci49c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d18x5l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jublzv\",\"data-styles-preset\":\"u4EIRlaKy\",style:{\"--framer-text-color\":\"var(--token-ad0ff604-9ce3-4947-8218-e9193c9617f8, rgb(105, 105, 105))\"},children:\"Reflection\"})}),className:\"framer-pk015q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Izs_hG3SB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vXwnenIGEd1n698iSa,className:\"framer-u3d4vp\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oi9w0o\",h1:\"framer-styles-preset-10ug5x5\",h2:\"framer-styles-preset-17flada\",h3:\"framer-styles-preset-1a08t1y\",h6:\"framer-styles-preset-6t5azx\",p:\"framer-styles-preset-jublzv\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",children:\"Through this project, I gained experience in integrating 3D design with UX principles, creating a user journey that encourages exploration and interaction. This project reinforced the importance of cultural relevance in digital products, especially in visual-driven experiences.\"})}),className:\"framer-1oik4rk\",\"data-framer-appear-id\":\"1oik4rk\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ejjjq6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ln0OEPzxR\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"Ln0OEPzxR\",layoutId:\"Ln0OEPzxR\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://elijahstorm.github.io/korean-tarrot-card/\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd70d8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mgn6zf\",\"data-styles-preset\":\"jIhDmXZQC\",style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"Other Works\"})}),initial:animation1,optimized:true},eObec5g_Z:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1a08t1y\",\"data-styles-preset\":\"oJJWHPOy4\",style:{\"--framer-text-color\":\"var(--token-d4162b1a-0beb-4896-b045-946679273301, rgb(3, 3, 3))\"},children:\"Other Works\"})}),className:\"framer-1xzkvz5\",\"data-framer-appear-id\":\"1xzkvz5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7j2qt\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"io8oxuXQU\"},implicitPathVariables:undefined},{href:{webPageId:\"io8oxuXQU\"},implicitPathVariables:undefined},{href:{webPageId:\"io8oxuXQU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:`max(${componentViewport?.width||\"100vw\"} * 0.88, 50px)`,y:(componentViewport?.y||0)+0+60+50+11624.0619+64+32.8+0+0},eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+12933.45+64+84.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:`max((${componentViewport?.width||\"100vw\"} * 0.76 - 32px) / 2, 50px)`,y:(componentViewport?.y||0)+0+60+50+13632.18+64+84.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wye6ds-container\",nodeId:\"TzqsOiwRH\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{N3iHAK7UD:resolvedLinks1[2]},eObec5g_Z:{N3iHAK7UD:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",hLdej01m4:\"Roundtable 2.0\",id:\"TzqsOiwRH\",layoutId:\"TzqsOiwRH\",mTpSJRSZy:\"Customer Feedback\",N3iHAK7UD:resolvedLinks1[0],Orp4DJQD6:\"2025\",P8QV8xJVc:\"Produst Insights\",q_aGnM5As:\"Beauty Product Consumer Research Platform\",style:{width:\"100%\"},variant:\"JvqzzMDXi\",VcthxiXP_:addImageAlt({src:\"https://framerusercontent.com/images/Q8x9fY4y6UXJJS42DOUvAD9LDCg.jpg\",srcSet:\"https://framerusercontent.com/images/Q8x9fY4y6UXJJS42DOUvAD9LDCg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Q8x9fY4y6UXJJS42DOUvAD9LDCg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q8x9fY4y6UXJJS42DOUvAD9LDCg.jpg 1415w\"},\"\"),width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RqcbqTTPd\"},implicitPathVariables:undefined},{href:{webPageId:\"RqcbqTTPd\"},implicitPathVariables:undefined},{href:{webPageId:\"RqcbqTTPd\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{width:`max(${componentViewport?.width||\"100vw\"} * 0.88, 50px)`,y:(componentViewport?.y||0)+0+60+50+11624.0619+64+32.8+0+459},eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+12933.45+64+84.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:`max((${componentViewport?.width||\"100vw\"} * 0.76 - 32px) / 2, 50px)`,y:(componentViewport?.y||0)+0+60+50+13632.18+64+84.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-naabtk-container\",nodeId:\"o3qZx95ot\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{N3iHAK7UD:resolvedLinks2[2]},eObec5g_Z:{N3iHAK7UD:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",hLdej01m4:\"Brave\",id:\"o3qZx95ot\",layoutId:\"o3qZx95ot\",mTpSJRSZy:\"VR Training\",N3iHAK7UD:resolvedLinks2[0],Orp4DJQD6:\"2024\",P8QV8xJVc:\"Anxiety Management\",q_aGnM5As:\"VR Solution to Overcome Public Speaking Anxiety\",style:{width:\"100%\"},variant:\"JvqzzMDXi\",VcthxiXP_:addImageAlt({src:\"https://framerusercontent.com/images/MgKhXgGkgrie2bPrXHGgPtsHUM.jpg\",srcSet:\"https://framerusercontent.com/images/MgKhXgGkgrie2bPrXHGgPtsHUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MgKhXgGkgrie2bPrXHGgPtsHUM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MgKhXgGkgrie2bPrXHGgPtsHUM.jpg 1415w\"},\"\"),width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rT3cl6SgX\"},implicitPathVariables:undefined},{href:{webPageId:\"rT3cl6SgX\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+12933.45+64+84.8+0+459}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:`max((${componentViewport?.width||\"100vw\"} * 0.76 - 32px) / 2, 50px)`,y:(componentViewport?.y||0)+0+60+50+13632.18+64+84.8+0+459,children:/*#__PURE__*/_jsx(Container,{className:\"framer-359r6l-container hidden-1xyhk33\",nodeId:\"tWnx5iVMC\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{N3iHAK7UD:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",hLdej01m4:\"QFEED\",id:\"tWnx5iVMC\",layoutId:\"tWnx5iVMC\",mTpSJRSZy:\"Social Feedback\",N3iHAK7UD:resolvedLinks3[0],Orp4DJQD6:\"2023\",P8QV8xJVc:\"Community Platform UX\",q_aGnM5As:\"Bringing GAS to Korea with a Cultural Twist\",style:{width:\"100%\"},variant:\"JvqzzMDXi\",VcthxiXP_:addImageAlt({src:\"https://framerusercontent.com/images/8Ofyz4MwxgsF2oxirsqJsxfSkg.jpg\",srcSet:\"https://framerusercontent.com/images/8Ofyz4MwxgsF2oxirsqJsxfSkg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8Ofyz4MwxgsF2oxirsqJsxfSkg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Ofyz4MwxgsF2oxirsqJsxfSkg.jpg 1415w\"},\"\"),width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hj7RUZQr5\"},implicitPathVariables:undefined},{href:{webPageId:\"hj7RUZQr5\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+12933.45+64+84.8+0+459}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:`max((${componentViewport?.width||\"100vw\"} * 0.76 - 32px) / 2, 50px)`,y:(componentViewport?.y||0)+0+60+50+13632.18+64+84.8+0+459,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hiqxev-container hidden-1xyhk33\",nodeId:\"IQJIOj3eu\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{N3iHAK7UD:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",hLdej01m4:\"STAR:T\",id:\"IQJIOj3eu\",layoutId:\"IQJIOj3eu\",mTpSJRSZy:\"AR Coaching\",N3iHAK7UD:resolvedLinks4[0],Orp4DJQD6:\"2023\",P8QV8xJVc:\"Smartwatch Integration\",q_aGnM5As:\"AI Dance Coach for K-Pop Fans\",style:{width:\"100%\"},variant:\"JvqzzMDXi\",VcthxiXP_:addImageAlt({src:\"https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg\",srcSet:\"https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg 1415w\"},\"\"),width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dCQa6twq_\"},implicitPathVariables:undefined},{href:{webPageId:\"dCQa6twq_\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+12933.45+64+84.8+0+918}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:`max((${componentViewport?.width||\"100vw\"} * 0.76 - 32px) / 2, 50px)`,y:(componentViewport?.y||0)+0+60+50+13632.18+64+84.8+0+918,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hjjt3w-container hidden-1xyhk33\",nodeId:\"hXTBGp5ID\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eObec5g_Z:{N3iHAK7UD:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",hLdej01m4:\"essentory\",id:\"hXTBGp5ID\",layoutId:\"hXTBGp5ID\",mTpSJRSZy:\"Crowdfunding\",N3iHAK7UD:resolvedLinks5[0],Orp4DJQD6:\"2023\",P8QV8xJVc:\"Internship\",q_aGnM5As:\"Empowering Creators Through Community-Driven Funding\",style:{width:\"100%\"},variant:\"JvqzzMDXi\",VcthxiXP_:addImageAlt({src:\"https://framerusercontent.com/images/K0Ixz8EICdAmY6heLhjsmqkEC18.jpg\",srcSet:\"https://framerusercontent.com/images/K0Ixz8EICdAmY6heLhjsmqkEC18.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K0Ixz8EICdAmY6heLhjsmqkEC18.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K0Ixz8EICdAmY6heLhjsmqkEC18.jpg 1415w\"},\"\"),width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hj7RUZQr5\"},implicitPathVariables:undefined},{href:{webPageId:\"hj7RUZQr5\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{height:427,width:`max(${componentViewport?.width||\"100vw\"} * 0.88, 50px)`,y:(componentViewport?.y||0)+0+60+50+11624.0619+64+32.8+0+918}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1484j87-container hidden-9whq9x hidden-19qu0us\",nodeId:\"gImL1sEm4\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{N3iHAK7UD:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",hLdej01m4:\"STAR:T\",id:\"gImL1sEm4\",layoutId:\"gImL1sEm4\",mTpSJRSZy:\"AR Coaching\",N3iHAK7UD:resolvedLinks6[0],Orp4DJQD6:\"2023\",P8QV8xJVc:\"Smartwatch Integration\",q_aGnM5As:\"AI Dance Coach for K-Pop Fans\",style:{width:\"100%\"},variant:\"JvqzzMDXi\",VcthxiXP_:addImageAlt({src:\"https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg\",srcSet:\"https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/krvLqoS4KxzzVBJIbwEYFOItZco.jpg 1415w\"},\"\"),width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-m09nn9\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{y:(componentViewport?.y||0)+0+60+50+13125.8619+0},eObec5g_Z:{y:(componentViewport?.y||0)+0+60+50+14487.25+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342.5,width:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,y:(componentViewport?.y||0)+0+60+50+15185.98+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10a5eof-container\",nodeId:\"oYf2tsymm\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQhMz3Xlr:{variant:\"w1Q3Q5gBS\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"oYf2tsymm\",layoutId:\"oYf2tsymm\",style:{height:\"100%\",width:\"100%\"},variant:\"Af7kDVVhZ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19mclww-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lYj5XUR5E\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"lYj5XUR5E\",intensity:4,layoutId:\"lYj5XUR5E\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8lsfkd-container\",\"data-framer-name\":\"Blur Gradient\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,name:\"Blur Gradient\",nodeId:\"JtjJFN1mI\",scopeId:\"hF9awyCfl\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:10,borderRadius:\"0px\",direction:\"to bottom\",height:\"100%\",id:\"JtjJFN1mI\",layoutId:\"JtjJFN1mI\",name:\"Blur Gradient\",style:{height:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9P2dt.framer-vaukxl, .framer-9P2dt .framer-vaukxl { display: block; }\",\".framer-9P2dt.framer-9whq9x { align-content: center; align-items: center; background-color: var(--token-f5c224fe-3170-407d-9fc4-ea42613acde2, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1260px; }\",\".framer-9P2dt .framer-11qjuw5-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-9P2dt .framer-1c4tn5s { align-content: center; align-items: center; background-color: var(--token-f5c224fe-3170-407d-9fc4-ea42613acde2, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1xh618m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1608px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-t3brtj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9P2dt .framer-1dnh11t-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9P2dt .framer-pzinya { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-13pppmg { flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-ldkh0z, .framer-9P2dt .framer-12lo4u { flex: none; height: auto; max-width: 480px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-7m6wto { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9P2dt .framer-b1f8n { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1s3pis5-container, .framer-9P2dt .framer-8mx38b-container, .framer-9P2dt .framer-cty3gc-container, .framer-9P2dt .framer-10z352t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1mevyda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 168px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1fr89nq { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 612px; position: relative; width: 993px; }\",\".framer-9P2dt .framer-1oqgof, .framer-9P2dt .framer-bwn1jk, .framer-9P2dt .framer-195jiv6, .framer-9P2dt .framer-1xtn3j3, .framer-9P2dt .framer-3sk7cm, .framer-9P2dt .framer-v16c7u, .framer-9P2dt .framer-pbprp3, .framer-9P2dt .framer-u90fz3, .framer-9P2dt .framer-19lh8ad, .framer-9P2dt .framer-1s0yni5, .framer-9P2dt .framer-zj62er, .framer-9P2dt .framer-1oik4rk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-1bpsygl, .framer-9P2dt .framer-gbkxll, .framer-9P2dt .framer-1mnu7ho, .framer-9P2dt .framer-13vb5x6, .framer-9P2dt .framer-1ifhl8t, .framer-9P2dt .framer-xml8qv, .framer-9P2dt .framer-2t3stl, .framer-9P2dt .framer-1njs7h2, .framer-9P2dt .framer-1ado5ho, .framer-9P2dt .framer-rwyjdy, .framer-9P2dt .framer-7ci49c { align-content: center; align-items: center; 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: 100%; }\",\".framer-9P2dt .framer-ilqkm9, .framer-9P2dt .framer-t7dwhl, .framer-9P2dt .framer-juymmy, .framer-9P2dt .framer-8yvo40, .framer-9P2dt .framer-15gvgn2, .framer-9P2dt .framer-18equam, .framer-9P2dt .framer-1v5m37f, .framer-9P2dt .framer-8tsvw3, .framer-9P2dt .framer-1q3rm78, .framer-9P2dt .framer-k4ngu5, .framer-9P2dt .framer-s7dm3r, .framer-9P2dt .framer-1d18x5l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1560px; overflow: visible; padding: 0px; position: relative; width: 75%; z-index: 2; }\",\".framer-9P2dt .framer-9gd2ac, .framer-9P2dt .framer-1xov95w, .framer-9P2dt .framer-i000yk, .framer-9P2dt .framer-cqd09j, .framer-9P2dt .framer-1v31wdt, .framer-9P2dt .framer-1rmdtxi, .framer-9P2dt .framer-sz89l3, .framer-9P2dt .framer-1l489op, .framer-9P2dt .framer-1875nz3, .framer-9P2dt .framer-ufo2x8, .framer-9P2dt .framer-1mmtd8u, .framer-9P2dt .framer-pk015q, .framer-9P2dt .framer-1xzkvz5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9P2dt .framer-17dgbe5, .framer-9P2dt .framer-1dn3udf, .framer-9P2dt .framer-11mg5j6, .framer-9P2dt .framer-5epp39, .framer-9P2dt .framer-4mixr4, .framer-9P2dt .framer-4t096x, .framer-9P2dt .framer-1c8eugl, .framer-9P2dt .framer-te3mxq, .framer-9P2dt .framer-hf1ueh, .framer-9P2dt .framer-1vq0xcj, .framer-9P2dt .framer-1g4l4wn, .framer-9P2dt .framer-u3d4vp { flex: 1 0 0px; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-nnk2p6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-1f85u38 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 76%; }\",\".framer-9P2dt .framer-1oygpfb, .framer-9P2dt .framer-6rwq7g, .framer-9P2dt .framer-9yuylu, .framer-9P2dt .framer-sg3ee4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9P2dt .framer-vllzoo, .framer-9P2dt .framer-16o8lou, .framer-9P2dt .framer-1urmqw0 { align-content: center; align-items: center; background-color: #191919; border-bottom-left-radius: 17px; border-bottom-right-radius: 17px; border-top-left-radius: 17px; border-top-right-radius: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 2.31px 9.2px 2.31px 9.2px; position: relative; width: min-content; }\",\".framer-9P2dt .framer-1jhwxas, .framer-9P2dt .framer-1yy3aw8, .framer-9P2dt .framer-1ojntur, .framer-9P2dt .framer-fovy9v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9P2dt .framer-1l7oii6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9P2dt .framer-1z05lgn { flex: none; height: 87px; position: relative; width: 211px; }\",\".framer-9P2dt .framer-1jfs402 { flex: none; height: 88px; position: relative; width: 211px; }\",\".framer-9P2dt .framer-2eg281 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 191px; word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-1tuqfsc { align-content: center; align-items: center; background-color: #191919; border-bottom-left-radius: 17px; border-bottom-right-radius: 17px; border-top-left-radius: 17px; border-top-right-radius: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 19px; justify-content: center; overflow: visible; padding: 2.31px 9.2px 2.31px 9.2px; position: relative; width: min-content; }\",\".framer-9P2dt .framer-198cc8u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9P2dt .framer-1raeb7q { flex: none; height: 179px; position: relative; width: 105px; }\",\".framer-9P2dt .framer-1nxjsry { flex: none; height: 179px; position: relative; width: 108px; }\",\".framer-9P2dt .framer-o68g3t, .framer-9P2dt .framer-1sgijar { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 160px; word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-1vd6fbk, .framer-9P2dt .framer-1cfzwed { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9P2dt .framer-1bqi1i1, .framer-9P2dt .framer-1hqympd { flex: none; height: 179px; position: relative; width: 101px; }\",\".framer-9P2dt .framer-1y0idce, .framer-9P2dt .framer-q4ofj9 { flex: none; height: 177px; position: relative; width: 103px; }\",\".framer-9P2dt .framer-ef7471 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 151px; word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-wr1erj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1pim42v, .framer-9P2dt .framer-mq7kpz, .framer-9P2dt .framer-1td3gxz, .framer-9P2dt .framer-1ahq047, .framer-9P2dt .framer-13ykzqo, .framer-9P2dt .framer-zn1a1r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 75%; }\",\".framer-9P2dt .framer-1ihv84k, .framer-9P2dt .framer-zsxd6b, .framer-9P2dt .framer-cd5mpa, .framer-9P2dt .framer-1u63onz, .framer-9P2dt .framer-xp0k6i, .framer-9P2dt .framer-2vxlel { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 27%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-16ls1ws, .framer-9P2dt .framer-1wfxstv, .framer-9P2dt .framer-ps08a6, .framer-9P2dt .framer-10jb8oh, .framer-9P2dt .framer-1q7db6q, .framer-9P2dt .framer-gmnyjt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 69%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-1pvtilk-container { flex: none; height: 554px; position: relative; width: 76%; }\",\".framer-9P2dt .framer-2qjbpf, .framer-9P2dt .framer-1k02j1e, .framer-9P2dt .framer-11rr8di, .framer-9P2dt .framer-polyae, .framer-9P2dt .framer-12u7erd, .framer-9P2dt .framer-1embnu4 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; width: 960px; }\",\".framer-9P2dt .framer-ctagsh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1styr0a, .framer-9P2dt .framer-65qju3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 37%; }\",\".framer-9P2dt .framer-1hhmm4g { aspect-ratio: 2.908333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); overflow: visible; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1ep32t1, .framer-9P2dt .framer-15nhpvs, .framer-9P2dt .framer-1k7u94r, .framer-9P2dt .framer-1j3gwid { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-187uzmh { aspect-ratio: 2.8958333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 161px); overflow: visible; position: relative; width: 100%; }\",\".framer-9P2dt .framer-480x7-container { flex: none; height: 510px; position: relative; width: 76%; }\",\".framer-9P2dt .framer-rfb2sw, .framer-9P2dt .framer-10rw697, .framer-9P2dt .framer-cyn574 { --border-bottom-width: 1px; --border-color: var(--token-037f309b-e4d0-49c1-bc69-d8167cb3dfb1, rgba(0, 0, 0, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.778149386845039 / 1; height: var(--framer-aspect-ratio-supported, 449px); overflow: visible; position: relative; width: 798px; }\",\".framer-9P2dt .framer-1yp4u1o, .framer-9P2dt .framer-1ph3ybz, .framer-9P2dt .framer-15cudaj, .framer-9P2dt .framer-17i3ebi, .framer-9P2dt .framer-uzfgxo, .framer-9P2dt .framer-1vklzio, .framer-9P2dt .framer-1bz0hxk, .framer-9P2dt .framer-1cc6f8l, .framer-9P2dt .framer-1q7hw4f, .framer-9P2dt .framer-1eypkqa, .framer-9P2dt .framer-erbptl, .framer-9P2dt .framer-1yozt6s, .framer-9P2dt .framer-1s3vqo3, .framer-9P2dt .framer-1e2w4o6, .framer-9P2dt .framer-1f5e53w { --border-bottom-width: 1px; --border-color: var(--token-037f309b-e4d0-49c1-bc69-d8167cb3dfb1, rgba(0, 0, 0, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.7761692650334076 / 1; height: var(--framer-aspect-ratio-supported, 450px); overflow: visible; position: relative; width: 798px; }\",\".framer-9P2dt .framer-t59db1 { aspect-ratio: 2.253301320528211 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 425px); overflow: visible; position: relative; width: 76%; }\",\".framer-9P2dt .framer-1obeam, .framer-9P2dt .framer-k8tm2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-1t3skow, .framer-9P2dt .framer-82mg7v, .framer-9P2dt .framer-1dypfyo, .framer-9P2dt .framer-1gsckcd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 76%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9P2dt .framer-1ggap3z { aspect-ratio: 5.260416666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 182px); overflow: visible; position: relative; width: 76%; }\",\".framer-9P2dt .framer-wb3hud { aspect-ratio: 4.325252525252525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 222px); overflow: visible; position: relative; width: 76%; }\",\".framer-9P2dt .framer-l41wge { aspect-ratio: 2.1767955801104972 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 579px); overflow: visible; position: relative; width: 100%; }\",\".framer-9P2dt .framer-15f1luk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 76%; }\",\".framer-9P2dt .framer-1fdw7r { aspect-ratio: 1.9834710743801653 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: visible; position: relative; width: 50%; }\",\".framer-9P2dt .framer-1ahaudh { aspect-ratio: 1.736745886654479 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 274px); overflow: visible; position: relative; width: 50%; }\",\".framer-9P2dt .framer-6kghvg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-156retm-container { flex: none; height: 529px; position: relative; width: 76%; }\",\".framer-9P2dt .framer-173ocww { aspect-ratio: 2.988013698630137 / 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, 321px); overflow: visible; position: relative; width: 76%; }\",\".framer-9P2dt .framer-1ejjjq6-container { aspect-ratio: 1.791044776119403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 704px); position: relative; width: 100%; }\",\".framer-9P2dt .framer-cd70d8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 76%; }\",\".framer-9P2dt .framer-d7j2qt { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-wye6ds-container, .framer-9P2dt .framer-naabtk-container, .framer-9P2dt .framer-359r6l-container, .framer-9P2dt .framer-1hiqxev-container, .framer-9P2dt .framer-hjjt3w-container, .framer-9P2dt .framer-1484j87-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-9P2dt .framer-m09nn9 { align-content: center; align-items: center; background-color: var(--token-f5c224fe-3170-407d-9fc4-ea42613acde2, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 351px; justify-content: center; overflow: hidden; padding: 0px 8px 8px 8px; position: relative; width: 100%; }\",\".framer-9P2dt .framer-10a5eof-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-9P2dt .framer-19mclww-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-9P2dt .framer-8lsfkd-container { bottom: 0px; flex: none; height: 88px; left: 0px; pointer-events: none; position: relative; right: 0px; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9P2dt.framer-9whq9x, .framer-9P2dt .framer-1c4tn5s, .framer-9P2dt .framer-t3brtj, .framer-9P2dt .framer-pzinya, .framer-9P2dt .framer-7m6wto, .framer-9P2dt .framer-b1f8n, .framer-9P2dt .framer-1mevyda, .framer-9P2dt .framer-1bpsygl, .framer-9P2dt .framer-gbkxll, .framer-9P2dt .framer-1mnu7ho, .framer-9P2dt .framer-1f85u38, .framer-9P2dt .framer-1oygpfb, .framer-9P2dt .framer-vllzoo, .framer-9P2dt .framer-1l7oii6, .framer-9P2dt .framer-6rwq7g, .framer-9P2dt .framer-1tuqfsc, .framer-9P2dt .framer-198cc8u, .framer-9P2dt .framer-9yuylu, .framer-9P2dt .framer-16o8lou, .framer-9P2dt .framer-1vd6fbk, .framer-9P2dt .framer-sg3ee4, .framer-9P2dt .framer-1urmqw0, .framer-9P2dt .framer-1cfzwed, .framer-9P2dt .framer-wr1erj, .framer-9P2dt .framer-1pim42v, .framer-9P2dt .framer-mq7kpz, .framer-9P2dt .framer-1td3gxz, .framer-9P2dt .framer-13vb5x6, .framer-9P2dt .framer-ctagsh, .framer-9P2dt .framer-1styr0a, .framer-9P2dt .framer-65qju3, .framer-9P2dt .framer-1ifhl8t, .framer-9P2dt .framer-xml8qv, .framer-9P2dt .framer-1obeam, .framer-9P2dt .framer-k8tm2t, .framer-9P2dt .framer-2t3stl, .framer-9P2dt .framer-1ahq047, .framer-9P2dt .framer-13ykzqo, .framer-9P2dt .framer-zn1a1r, .framer-9P2dt .framer-15f1luk, .framer-9P2dt .framer-6kghvg, .framer-9P2dt .framer-1njs7h2, .framer-9P2dt .framer-1ado5ho, .framer-9P2dt .framer-rwyjdy, .framer-9P2dt .framer-7ci49c, .framer-9P2dt .framer-cd70d8, .framer-9P2dt .framer-m09nn9 { gap: 0px; } .framer-9P2dt.framer-9whq9x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9P2dt.framer-9whq9x > :first-child, .framer-9P2dt .framer-1c4tn5s > :first-child, .framer-9P2dt .framer-t3brtj > :first-child, .framer-9P2dt .framer-pzinya > :first-child, .framer-9P2dt .framer-7m6wto > :first-child, .framer-9P2dt .framer-b1f8n > :first-child, .framer-9P2dt .framer-1mevyda > :first-child, .framer-9P2dt .framer-1bpsygl > :first-child, .framer-9P2dt .framer-gbkxll > :first-child, .framer-9P2dt .framer-1mnu7ho > :first-child, .framer-9P2dt .framer-1oygpfb > :first-child, .framer-9P2dt .framer-1l7oii6 > :first-child, .framer-9P2dt .framer-6rwq7g > :first-child, .framer-9P2dt .framer-9yuylu > :first-child, .framer-9P2dt .framer-sg3ee4 > :first-child, .framer-9P2dt .framer-wr1erj > :first-child, .framer-9P2dt .framer-13vb5x6 > :first-child, .framer-9P2dt .framer-1styr0a > :first-child, .framer-9P2dt .framer-65qju3 > :first-child, .framer-9P2dt .framer-1ifhl8t > :first-child, .framer-9P2dt .framer-xml8qv > :first-child, .framer-9P2dt .framer-1obeam > :first-child, .framer-9P2dt .framer-k8tm2t > :first-child, .framer-9P2dt .framer-2t3stl > :first-child, .framer-9P2dt .framer-6kghvg > :first-child, .framer-9P2dt .framer-1njs7h2 > :first-child, .framer-9P2dt .framer-1ado5ho > :first-child, .framer-9P2dt .framer-rwyjdy > :first-child, .framer-9P2dt .framer-7ci49c > :first-child, .framer-9P2dt .framer-cd70d8 > :first-child { margin-top: 0px; } .framer-9P2dt.framer-9whq9x > :last-child, .framer-9P2dt .framer-1c4tn5s > :last-child, .framer-9P2dt .framer-t3brtj > :last-child, .framer-9P2dt .framer-pzinya > :last-child, .framer-9P2dt .framer-7m6wto > :last-child, .framer-9P2dt .framer-b1f8n > :last-child, .framer-9P2dt .framer-1mevyda > :last-child, .framer-9P2dt .framer-1bpsygl > :last-child, .framer-9P2dt .framer-gbkxll > :last-child, .framer-9P2dt .framer-1mnu7ho > :last-child, .framer-9P2dt .framer-1oygpfb > :last-child, .framer-9P2dt .framer-1l7oii6 > :last-child, .framer-9P2dt .framer-6rwq7g > :last-child, .framer-9P2dt .framer-9yuylu > :last-child, .framer-9P2dt .framer-sg3ee4 > :last-child, .framer-9P2dt .framer-wr1erj > :last-child, .framer-9P2dt .framer-13vb5x6 > :last-child, .framer-9P2dt .framer-1styr0a > :last-child, .framer-9P2dt .framer-65qju3 > :last-child, .framer-9P2dt .framer-1ifhl8t > :last-child, .framer-9P2dt .framer-xml8qv > :last-child, .framer-9P2dt .framer-1obeam > :last-child, .framer-9P2dt .framer-k8tm2t > :last-child, .framer-9P2dt .framer-2t3stl > :last-child, .framer-9P2dt .framer-6kghvg > :last-child, .framer-9P2dt .framer-1njs7h2 > :last-child, .framer-9P2dt .framer-1ado5ho > :last-child, .framer-9P2dt .framer-rwyjdy > :last-child, .framer-9P2dt .framer-7ci49c > :last-child, .framer-9P2dt .framer-cd70d8 > :last-child { margin-bottom: 0px; } .framer-9P2dt .framer-1c4tn5s > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-9P2dt .framer-t3brtj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9P2dt .framer-pzinya > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9P2dt .framer-7m6wto > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-9P2dt .framer-b1f8n > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9P2dt .framer-1mevyda > * { margin: 0px; margin-bottom: calc(168px / 2); margin-top: calc(168px / 2); } .framer-9P2dt .framer-1bpsygl > *, .framer-9P2dt .framer-gbkxll > *, .framer-9P2dt .framer-1mnu7ho > *, .framer-9P2dt .framer-13vb5x6 > *, .framer-9P2dt .framer-1ifhl8t > *, .framer-9P2dt .framer-xml8qv > *, .framer-9P2dt .framer-2t3stl > *, .framer-9P2dt .framer-1njs7h2 > *, .framer-9P2dt .framer-1ado5ho > *, .framer-9P2dt .framer-rwyjdy > *, .framer-9P2dt .framer-7ci49c > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9P2dt .framer-1f85u38 > * { margin: 0px; margin-left: calc(21.72px / 2); margin-right: calc(21.72px / 2); } .framer-9P2dt .framer-1f85u38 > :first-child, .framer-9P2dt .framer-vllzoo > :first-child, .framer-9P2dt .framer-1tuqfsc > :first-child, .framer-9P2dt .framer-198cc8u > :first-child, .framer-9P2dt .framer-16o8lou > :first-child, .framer-9P2dt .framer-1vd6fbk > :first-child, .framer-9P2dt .framer-1urmqw0 > :first-child, .framer-9P2dt .framer-1cfzwed > :first-child, .framer-9P2dt .framer-1pim42v > :first-child, .framer-9P2dt .framer-mq7kpz > :first-child, .framer-9P2dt .framer-1td3gxz > :first-child, .framer-9P2dt .framer-ctagsh > :first-child, .framer-9P2dt .framer-1ahq047 > :first-child, .framer-9P2dt .framer-13ykzqo > :first-child, .framer-9P2dt .framer-zn1a1r > :first-child, .framer-9P2dt .framer-15f1luk > :first-child, .framer-9P2dt .framer-m09nn9 > :first-child { margin-left: 0px; } .framer-9P2dt .framer-1f85u38 > :last-child, .framer-9P2dt .framer-vllzoo > :last-child, .framer-9P2dt .framer-1tuqfsc > :last-child, .framer-9P2dt .framer-198cc8u > :last-child, .framer-9P2dt .framer-16o8lou > :last-child, .framer-9P2dt .framer-1vd6fbk > :last-child, .framer-9P2dt .framer-1urmqw0 > :last-child, .framer-9P2dt .framer-1cfzwed > :last-child, .framer-9P2dt .framer-1pim42v > :last-child, .framer-9P2dt .framer-mq7kpz > :last-child, .framer-9P2dt .framer-1td3gxz > :last-child, .framer-9P2dt .framer-ctagsh > :last-child, .framer-9P2dt .framer-1ahq047 > :last-child, .framer-9P2dt .framer-13ykzqo > :last-child, .framer-9P2dt .framer-zn1a1r > :last-child, .framer-9P2dt .framer-15f1luk > :last-child, .framer-9P2dt .framer-m09nn9 > :last-child { margin-right: 0px; } .framer-9P2dt .framer-1oygpfb > *, .framer-9P2dt .framer-6rwq7g > *, .framer-9P2dt .framer-9yuylu > *, .framer-9P2dt .framer-sg3ee4 > * { margin: 0px; margin-bottom: calc(13.81px / 2); margin-top: calc(13.81px / 2); } .framer-9P2dt .framer-vllzoo > *, .framer-9P2dt .framer-1tuqfsc > *, .framer-9P2dt .framer-198cc8u > *, .framer-9P2dt .framer-16o8lou > *, .framer-9P2dt .framer-1urmqw0 > * { margin: 0px; margin-left: calc(5.75px / 2); margin-right: calc(5.75px / 2); } .framer-9P2dt .framer-1l7oii6 > * { margin: 0px; margin-bottom: calc(4.6px / 2); margin-top: calc(4.6px / 2); } .framer-9P2dt .framer-1vd6fbk > *, .framer-9P2dt .framer-1cfzwed > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9P2dt .framer-wr1erj > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-9P2dt .framer-1pim42v > *, .framer-9P2dt .framer-mq7kpz > *, .framer-9P2dt .framer-1td3gxz > *, .framer-9P2dt .framer-1ahq047 > *, .framer-9P2dt .framer-13ykzqo > *, .framer-9P2dt .framer-zn1a1r > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-9P2dt .framer-ctagsh > *, .framer-9P2dt .framer-15f1luk > *, .framer-9P2dt .framer-m09nn9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9P2dt .framer-1styr0a > *, .framer-9P2dt .framer-65qju3 > *, .framer-9P2dt .framer-1obeam > *, .framer-9P2dt .framer-k8tm2t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9P2dt .framer-6kghvg > *, .framer-9P2dt .framer-cd70d8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-9P2dt[data-border=\"true\"]::after, .framer-9P2dt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1259px) { .framer-9P2dt.framer-9whq9x { width: 810px; } .framer-9P2dt .framer-11qjuw5-container { order: 0; position: sticky; top: 0px; } .framer-9P2dt .framer-1c4tn5s { order: 1; } .framer-9P2dt .framer-1xh618m { flex-direction: column; gap: 36px; justify-content: flex-start; } .framer-9P2dt .framer-t3brtj { flex: none; width: 100%; } .framer-9P2dt .framer-13pppmg { max-width: 640px; } .framer-9P2dt .framer-12lo4u { max-width: 560px; } .framer-9P2dt .framer-7m6wto { flex: none; gap: 56px; max-width: 560px; width: 100%; } .framer-9P2dt .framer-1mevyda { gap: 140px; } .framer-9P2dt .framer-1fr89nq { height: 426px; width: 719px; } .framer-9P2dt .framer-nnk2p6, .framer-9P2dt .framer-1xzkvz5 { will-change: var(--framer-will-change-effect-override, transform); } .framer-9P2dt .framer-1f85u38 { gap: 17px; width: min-content; } .framer-9P2dt .framer-1oygpfb, .framer-9P2dt .framer-6rwq7g, .framer-9P2dt .framer-9yuylu, .framer-9P2dt .framer-sg3ee4, .framer-9P2dt .framer-1ahq047, .framer-9P2dt .framer-13ykzqo, .framer-9P2dt .framer-zn1a1r { gap: 10px; } .framer-9P2dt .framer-vllzoo, .framer-9P2dt .framer-16o8lou, .framer-9P2dt .framer-1urmqw0 { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; gap: 4px; padding: 1.71px 6.82px 1.71px 6.82px; } .framer-9P2dt .framer-1l7oii6 { gap: 3px; } .framer-9P2dt .framer-1z05lgn, .framer-9P2dt .framer-1jfs402 { height: 65px; width: 156px; } .framer-9P2dt .framer-2eg281 { width: 142px; } .framer-9P2dt .framer-1tuqfsc { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; gap: 4px; height: 14px; padding: 1.71px 6.82px 1.71px 6.82px; } .framer-9P2dt .framer-198cc8u { gap: 4px; } .framer-9P2dt .framer-1raeb7q { height: 133px; width: 78px; } .framer-9P2dt .framer-1nxjsry { height: 133px; width: 80px; } .framer-9P2dt .framer-o68g3t, .framer-9P2dt .framer-1sgijar { width: 118px; } .framer-9P2dt .framer-1bqi1i1, .framer-9P2dt .framer-1hqympd { height: 133px; width: 74px; } .framer-9P2dt .framer-1y0idce, .framer-9P2dt .framer-q4ofj9 { height: 131px; width: 76px; } .framer-9P2dt .framer-ef7471 { width: 112px; } .framer-9P2dt .framer-1pvtilk-container { height: 412px; width: 76%; } .framer-9P2dt .framer-ctagsh { width: 76%; } .framer-9P2dt .framer-1styr0a, .framer-9P2dt .framer-65qju3 { width: 49%; } .framer-9P2dt .framer-1hhmm4g { height: var(--framer-aspect-ratio-supported, 104px); } .framer-9P2dt .framer-187uzmh { height: var(--framer-aspect-ratio-supported, 105px); } .framer-9P2dt .framer-480x7-container { height: 433px; } .framer-9P2dt .framer-t59db1 { height: var(--framer-aspect-ratio-supported, 273px); } .framer-9P2dt .framer-1ggap3z { height: var(--framer-aspect-ratio-supported, 117px); } .framer-9P2dt .framer-wb3hud { height: var(--framer-aspect-ratio-supported, 143px); } .framer-9P2dt .framer-l41wge { height: var(--framer-aspect-ratio-supported, 372px); } .framer-9P2dt .framer-10jb8oh, .framer-9P2dt .framer-1q7db6q, .framer-9P2dt .framer-gmnyjt { width: 71%; } .framer-9P2dt .framer-1fdw7r { height: var(--framer-aspect-ratio-supported, 154px); } .framer-9P2dt .framer-1ahaudh { height: var(--framer-aspect-ratio-supported, 176px); } .framer-9P2dt .framer-156retm-container { height: 346px; } .framer-9P2dt .framer-173ocww { height: var(--framer-aspect-ratio-supported, 206px); } .framer-9P2dt .framer-1ejjjq6-container { height: var(--framer-aspect-ratio-supported, 453px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9P2dt .framer-1xh618m, .framer-9P2dt .framer-7m6wto, .framer-9P2dt .framer-1mevyda, .framer-9P2dt .framer-1f85u38, .framer-9P2dt .framer-1oygpfb, .framer-9P2dt .framer-vllzoo, .framer-9P2dt .framer-1l7oii6, .framer-9P2dt .framer-6rwq7g, .framer-9P2dt .framer-1tuqfsc, .framer-9P2dt .framer-198cc8u, .framer-9P2dt .framer-9yuylu, .framer-9P2dt .framer-16o8lou, .framer-9P2dt .framer-sg3ee4, .framer-9P2dt .framer-1urmqw0, .framer-9P2dt .framer-1ahq047, .framer-9P2dt .framer-13ykzqo, .framer-9P2dt .framer-zn1a1r { gap: 0px; } .framer-9P2dt .framer-1xh618m > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-9P2dt .framer-1xh618m > :first-child, .framer-9P2dt .framer-7m6wto > :first-child, .framer-9P2dt .framer-1mevyda > :first-child, .framer-9P2dt .framer-1oygpfb > :first-child, .framer-9P2dt .framer-1l7oii6 > :first-child, .framer-9P2dt .framer-6rwq7g > :first-child, .framer-9P2dt .framer-9yuylu > :first-child, .framer-9P2dt .framer-sg3ee4 > :first-child { margin-top: 0px; } .framer-9P2dt .framer-1xh618m > :last-child, .framer-9P2dt .framer-7m6wto > :last-child, .framer-9P2dt .framer-1mevyda > :last-child, .framer-9P2dt .framer-1oygpfb > :last-child, .framer-9P2dt .framer-1l7oii6 > :last-child, .framer-9P2dt .framer-6rwq7g > :last-child, .framer-9P2dt .framer-9yuylu > :last-child, .framer-9P2dt .framer-sg3ee4 > :last-child { margin-bottom: 0px; } .framer-9P2dt .framer-7m6wto > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-9P2dt .framer-1mevyda > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-9P2dt .framer-1f85u38 > * { margin: 0px; margin-left: calc(16.99px / 2); margin-right: calc(16.99px / 2); } .framer-9P2dt .framer-1f85u38 > :first-child, .framer-9P2dt .framer-vllzoo > :first-child, .framer-9P2dt .framer-1tuqfsc > :first-child, .framer-9P2dt .framer-198cc8u > :first-child, .framer-9P2dt .framer-16o8lou > :first-child, .framer-9P2dt .framer-1urmqw0 > :first-child, .framer-9P2dt .framer-1ahq047 > :first-child, .framer-9P2dt .framer-13ykzqo > :first-child, .framer-9P2dt .framer-zn1a1r > :first-child { margin-left: 0px; } .framer-9P2dt .framer-1f85u38 > :last-child, .framer-9P2dt .framer-vllzoo > :last-child, .framer-9P2dt .framer-1tuqfsc > :last-child, .framer-9P2dt .framer-198cc8u > :last-child, .framer-9P2dt .framer-16o8lou > :last-child, .framer-9P2dt .framer-1urmqw0 > :last-child, .framer-9P2dt .framer-1ahq047 > :last-child, .framer-9P2dt .framer-13ykzqo > :last-child, .framer-9P2dt .framer-zn1a1r > :last-child { margin-right: 0px; } .framer-9P2dt .framer-1oygpfb > *, .framer-9P2dt .framer-6rwq7g > *, .framer-9P2dt .framer-9yuylu > *, .framer-9P2dt .framer-sg3ee4 > * { margin: 0px; margin-bottom: calc(10.23px / 2); margin-top: calc(10.23px / 2); } .framer-9P2dt .framer-vllzoo > *, .framer-9P2dt .framer-1tuqfsc > *, .framer-9P2dt .framer-198cc8u > *, .framer-9P2dt .framer-16o8lou > *, .framer-9P2dt .framer-1urmqw0 > * { margin: 0px; margin-left: calc(4.26px / 2); margin-right: calc(4.26px / 2); } .framer-9P2dt .framer-1l7oii6 > * { margin: 0px; margin-bottom: calc(3.41px / 2); margin-top: calc(3.41px / 2); } .framer-9P2dt .framer-1ahq047 > *, .framer-9P2dt .framer-13ykzqo > *, .framer-9P2dt .framer-zn1a1r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-9P2dt.framer-9whq9x { width: 390px; } .framer-9P2dt .framer-11qjuw5-container { order: 0; position: sticky; top: 0px; width: 390px; } .framer-9P2dt .framer-1c4tn5s { order: 1; } .framer-9P2dt .framer-1xh618m { flex-direction: column; gap: 36px; justify-content: flex-start; } .framer-9P2dt .framer-t3brtj { flex: none; width: 100%; } .framer-9P2dt .framer-13pppmg { max-width: 640px; } .framer-9P2dt .framer-12lo4u { max-width: 560px; } .framer-9P2dt .framer-7m6wto { flex: none; gap: 56px; max-width: 560px; width: 100%; } .framer-9P2dt .framer-1mevyda { gap: 64px; } .framer-9P2dt .framer-1fr89nq { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 285px; width: 100%; } .framer-9P2dt .framer-1oqgof, .framer-9P2dt .framer-ilqkm9, .framer-9P2dt .framer-t7dwhl, .framer-9P2dt .framer-bwn1jk, .framer-9P2dt .framer-juymmy, .framer-9P2dt .framer-195jiv6, .framer-9P2dt .framer-1xtn3j3, .framer-9P2dt .framer-8yvo40, .framer-9P2dt .framer-15gvgn2, .framer-9P2dt .framer-3sk7cm, .framer-9P2dt .framer-18equam, .framer-9P2dt .framer-v16c7u, .framer-9P2dt .framer-1v5m37f, .framer-9P2dt .framer-pbprp3, .framer-9P2dt .framer-1t3skow, .framer-9P2dt .framer-82mg7v, .framer-9P2dt .framer-1dypfyo, .framer-9P2dt .framer-1gsckcd, .framer-9P2dt .framer-8tsvw3, .framer-9P2dt .framer-u90fz3, .framer-9P2dt .framer-1q3rm78, .framer-9P2dt .framer-19lh8ad, .framer-9P2dt .framer-k4ngu5, .framer-9P2dt .framer-1s0yni5, .framer-9P2dt .framer-s7dm3r, .framer-9P2dt .framer-zj62er, .framer-9P2dt .framer-1d18x5l, .framer-9P2dt .framer-1oik4rk { width: 88%; } .framer-9P2dt .framer-nnk2p6 { width: 88%; will-change: var(--framer-will-change-effect-override, transform); } .framer-9P2dt .framer-1f85u38 { gap: 17px; width: min-content; } .framer-9P2dt .framer-6rwq7g, .framer-9P2dt .framer-9yuylu { gap: 11px; } .framer-9P2dt .framer-1tuqfsc { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; gap: 4px; height: 15px; padding: 1.77px 7.06px 1.77px 7.06px; } .framer-9P2dt .framer-198cc8u { gap: 4px; } .framer-9P2dt .framer-1raeb7q { height: 138px; width: 81px; } .framer-9P2dt .framer-1nxjsry { height: 138px; width: 83px; } .framer-9P2dt .framer-o68g3t, .framer-9P2dt .framer-1sgijar { width: 123px; } .framer-9P2dt .framer-16o8lou { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; gap: 4px; padding: 1.77px 7.06px 1.77px 7.06px; } .framer-9P2dt .framer-1bqi1i1, .framer-9P2dt .framer-1hqympd { height: 138px; width: 77px; } .framer-9P2dt .framer-wr1erj { gap: 32px; } .framer-9P2dt .framer-1pim42v, .framer-9P2dt .framer-mq7kpz, .framer-9P2dt .framer-1td3gxz, .framer-9P2dt .framer-1ahq047, .framer-9P2dt .framer-13ykzqo, .framer-9P2dt .framer-zn1a1r { flex-direction: column; gap: 8px; width: 88%; } .framer-9P2dt .framer-1ihv84k, .framer-9P2dt .framer-16ls1ws, .framer-9P2dt .framer-zsxd6b, .framer-9P2dt .framer-1wfxstv, .framer-9P2dt .framer-cd5mpa, .framer-9P2dt .framer-ps08a6, .framer-9P2dt .framer-1styr0a, .framer-9P2dt .framer-65qju3, .framer-9P2dt .framer-1u63onz, .framer-9P2dt .framer-10jb8oh, .framer-9P2dt .framer-xp0k6i, .framer-9P2dt .framer-1q7db6q, .framer-9P2dt .framer-2vxlel, .framer-9P2dt .framer-gmnyjt { width: 100%; } .framer-9P2dt .framer-1pvtilk-container { height: 272px; width: 100%; } .framer-9P2dt .framer-ctagsh { flex-direction: column; gap: 24px; width: 88%; } .framer-9P2dt .framer-1hhmm4g { height: var(--framer-aspect-ratio-supported, 118px); } .framer-9P2dt .framer-187uzmh { height: var(--framer-aspect-ratio-supported, 119px); } .framer-9P2dt .framer-480x7-container { height: 268px; width: 100%; } .framer-9P2dt .framer-t59db1 { height: var(--framer-aspect-ratio-supported, 153px); width: 88%; } .framer-9P2dt .framer-1ggap3z { height: var(--framer-aspect-ratio-supported, 65px); width: 88%; } .framer-9P2dt .framer-wb3hud { height: var(--framer-aspect-ratio-supported, 88px); width: 97%; } .framer-9P2dt .framer-l41wge { height: var(--framer-aspect-ratio-supported, 188px); width: 105%; } .framer-9P2dt .framer-15f1luk { flex-direction: column; width: 88%; } .framer-9P2dt .framer-1fdw7r { height: var(--framer-aspect-ratio-supported, 171px); width: 99%; } .framer-9P2dt .framer-1ahaudh { height: var(--framer-aspect-ratio-supported, 195px); width: 99%; } .framer-9P2dt .framer-156retm-container { height: 218px; width: 100%; } .framer-9P2dt .framer-173ocww { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: var(--framer-aspect-ratio-supported, 131px); width: 100%; } .framer-9P2dt .framer-1ejjjq6-container { aspect-ratio: unset; height: 393px; } .framer-9P2dt .framer-cd70d8 { gap: 8px; width: 88%; } .framer-9P2dt .framer-1xzkvz5 { will-change: var(--framer-will-change-effect-override, transform); } .framer-9P2dt .framer-d7j2qt { grid-template-columns: repeat(1, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9P2dt .framer-1xh618m, .framer-9P2dt .framer-7m6wto, .framer-9P2dt .framer-1mevyda, .framer-9P2dt .framer-1f85u38, .framer-9P2dt .framer-6rwq7g, .framer-9P2dt .framer-1tuqfsc, .framer-9P2dt .framer-198cc8u, .framer-9P2dt .framer-9yuylu, .framer-9P2dt .framer-16o8lou, .framer-9P2dt .framer-wr1erj, .framer-9P2dt .framer-1pim42v, .framer-9P2dt .framer-mq7kpz, .framer-9P2dt .framer-1td3gxz, .framer-9P2dt .framer-ctagsh, .framer-9P2dt .framer-1ahq047, .framer-9P2dt .framer-13ykzqo, .framer-9P2dt .framer-zn1a1r, .framer-9P2dt .framer-15f1luk, .framer-9P2dt .framer-cd70d8 { gap: 0px; } .framer-9P2dt .framer-1xh618m > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-9P2dt .framer-1xh618m > :first-child, .framer-9P2dt .framer-7m6wto > :first-child, .framer-9P2dt .framer-1mevyda > :first-child, .framer-9P2dt .framer-6rwq7g > :first-child, .framer-9P2dt .framer-9yuylu > :first-child, .framer-9P2dt .framer-wr1erj > :first-child, .framer-9P2dt .framer-1pim42v > :first-child, .framer-9P2dt .framer-mq7kpz > :first-child, .framer-9P2dt .framer-1td3gxz > :first-child, .framer-9P2dt .framer-ctagsh > :first-child, .framer-9P2dt .framer-1ahq047 > :first-child, .framer-9P2dt .framer-13ykzqo > :first-child, .framer-9P2dt .framer-zn1a1r > :first-child, .framer-9P2dt .framer-15f1luk > :first-child, .framer-9P2dt .framer-cd70d8 > :first-child { margin-top: 0px; } .framer-9P2dt .framer-1xh618m > :last-child, .framer-9P2dt .framer-7m6wto > :last-child, .framer-9P2dt .framer-1mevyda > :last-child, .framer-9P2dt .framer-6rwq7g > :last-child, .framer-9P2dt .framer-9yuylu > :last-child, .framer-9P2dt .framer-wr1erj > :last-child, .framer-9P2dt .framer-1pim42v > :last-child, .framer-9P2dt .framer-mq7kpz > :last-child, .framer-9P2dt .framer-1td3gxz > :last-child, .framer-9P2dt .framer-ctagsh > :last-child, .framer-9P2dt .framer-1ahq047 > :last-child, .framer-9P2dt .framer-13ykzqo > :last-child, .framer-9P2dt .framer-zn1a1r > :last-child, .framer-9P2dt .framer-15f1luk > :last-child, .framer-9P2dt .framer-cd70d8 > :last-child { margin-bottom: 0px; } .framer-9P2dt .framer-7m6wto > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-9P2dt .framer-1mevyda > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9P2dt .framer-1f85u38 > * { margin: 0px; margin-left: calc(16.67px / 2); margin-right: calc(16.67px / 2); } .framer-9P2dt .framer-1f85u38 > :first-child, .framer-9P2dt .framer-1tuqfsc > :first-child, .framer-9P2dt .framer-198cc8u > :first-child, .framer-9P2dt .framer-16o8lou > :first-child { margin-left: 0px; } .framer-9P2dt .framer-1f85u38 > :last-child, .framer-9P2dt .framer-1tuqfsc > :last-child, .framer-9P2dt .framer-198cc8u > :last-child, .framer-9P2dt .framer-16o8lou > :last-child { margin-right: 0px; } .framer-9P2dt .framer-6rwq7g > *, .framer-9P2dt .framer-9yuylu > * { margin: 0px; margin-bottom: calc(10.6px / 2); margin-top: calc(10.6px / 2); } .framer-9P2dt .framer-1tuqfsc > *, .framer-9P2dt .framer-198cc8u > *, .framer-9P2dt .framer-16o8lou > * { margin: 0px; margin-left: calc(4.41px / 2); margin-right: calc(4.41px / 2); } .framer-9P2dt .framer-wr1erj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9P2dt .framer-1pim42v > *, .framer-9P2dt .framer-mq7kpz > *, .framer-9P2dt .framer-1td3gxz > *, .framer-9P2dt .framer-1ahq047 > *, .framer-9P2dt .framer-13ykzqo > *, .framer-9P2dt .framer-zn1a1r > *, .framer-9P2dt .framer-cd70d8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9P2dt .framer-ctagsh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9P2dt .framer-15f1luk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13017\n * @framerIntrinsicWidth 1260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eObec5g_Z\":{\"layout\":[\"fixed\",\"auto\"]},\"AQhMz3Xlr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vZprMt34m\":{\"pattern\":\":vZprMt34m\",\"name\":\"\"}}\n * @framerResponsiveScreen\n */const FramerhF9awyCfl=withCSS(Component,css,\"framer-9P2dt\");export default FramerhF9awyCfl;FramerhF9awyCfl.displayName=\"Brave\";FramerhF9awyCfl.defaultProps={height:13017,width:1260};addFonts(FramerhF9awyCfl,[{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:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavbarFonts,...BackButtonFonts,...KeyInfoFonts,...SlideshowFonts,...YouTubeFonts,...EmbedFonts,...ProjectCardFonts,...FooterFonts,...SmoothScrollFonts,...BlurGradientFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...componentPresets.fonts?.[\"Izs_hG3SB\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Izs_hG3SB\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhF9awyCfl\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1260\",\"framerIntrinsicHeight\":\"13017\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eObec5g_Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AQhMz3Xlr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"vZprMt34m\\\":{\\\"pattern\\\":\\\":vZprMt34m\\\",\\\"name\\\":\\\"\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "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", "NavbarFonts", "getFonts", "xTDxPclhL_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "BackButtonFonts", "HnSuwsomd_default", "RichTextWithOptimizedAppearEffect", "RichText2", "KeyInfoFonts", "eU8x15pub_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "SlideshowFonts", "Slideshow", "ContainerWithFX", "YouTubeFonts", "Youtube", "EmbedFonts", "Embed", "ProjectCardFonts", "q5ehOd4Cf_default", "FooterFonts", "Lo2b4HKrL_default", "SmoothScrollFonts", "SmoothScroll", "BlurGradientFonts", "BlurGradient_Prod_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "animation10", "transition7", "animation11", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "vXwnenIGEd1n698iSa", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "x", "getLoadingLazyAtYPosition", "ComponentPresetsProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerhF9awyCfl", "withCSS", "hF9awyCfl_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
