{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js", "ssg:https://framerusercontent.com/modules/9Vr6z7CSao4InqLyCKkd/DXbDe6GKOuqaSx6Mxb8G/XbzKFJocl.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useCallback}from\"react\";const urlRegex=/(https?:\\/\\/[^ ]*)/;/**\n * SPOTIFY\n *\n * @framerIntrinsicWidth 280\n * @framerIntrinsicHeight 350\n */ export function Spotify(props){const{theme,url:sourceUrl}=props;const createEmbedUrl=useCallback(()=>{if(sourceUrl.length<5)return null;// If someone pastes the embed code lets still try to render it\nconst strippedUrl=sourceUrl.includes(\"iframe\")?sourceUrl.match(urlRegex)[1].replace(`\"`,\"\"):sourceUrl;const url=new URL(strippedUrl);// Add embed prefix if needed\nif(!url.pathname.includes(\"embed\"))url.pathname=`/embed${url.pathname}`;// Remove params\nurl.search=`theme=${theme}`;// @ben you could add all other bools in here like\n// url.search = `theme=${theme}&dog=${cat}`\nreturn url.toString();},[theme,sourceUrl]);const identifier=createEmbedUrl();return(/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\"},frameBorder:0,src:identifier}));}Spotify.defaultProps={url:\"https://open.spotify.com/album/31qVWUdRrlb8thMvts0yYL?si=Jl-8Mnc3RNGuOtqRC7NXVg\",width:280,height:350,theme:1};addPropertyControls(Spotify,{url:{type:ControlType.String,title:\"URL\"},theme:{type:ControlType.Enum,displaySegmentedControl:true,options:[1,0],optionTitles:[\"On\",\"Off\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"Spotify\":{\"type\":\"reactComponent\",\"name\":\"Spotify\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\",\"framerIntrinsicWidth\":\"280\"}}}}\n//# sourceMappingURL=./Spotify.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Spotify}from\"https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js\";import TopNav from\"#framer/local/canvasComponent/DiSK89Ch4/DiSK89Ch4.js\";import metadataProvider from\"#framer/local/webPageMetadata/XbzKFJocl/XbzKFJocl.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const VideoFonts=getFonts(Video);const TopNavFonts=getFonts(TopNav);const SpotifyFonts=getFonts(Spotify);const EmbedFonts=getFonts(Embed);const breakpoints={};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BkOhr\";const variantClassNames={vAmtiyxwT:\"framer-v-qmbful\"};const transition1={bounce:.2,delay:0,duration:2,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 transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const getProps=({height,id,width,...props})=>{return{...props};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"vAmtiyxwT\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-qmbful\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-63e45272-007b-437e-b2a8-9f4d1433e3e9, rgb(66, 139, 212))\"},children:\"about me\"})}),className:\"framer-1hwt5lw\",\"data-framer-appear-id\":\"1hwt5lw\",fonts:[\"FS;Public Sans-bold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+207.0000000000013),pixelHeight:1600,pixelWidth:1200,sizes:\"456px\",src:\"https://framerusercontent.com/images/E59vK9f8y4gi2eqxXJZWYSxOYQ.jpg\",srcSet:\"https://framerusercontent.com/images/E59vK9f8y4gi2eqxXJZWYSxOYQ.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E59vK9f8y4gi2eqxXJZWYSxOYQ.jpg 1200w\"},className:\"framer-1acoasi\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+712.0000000000013),pixelHeight:4632,pixelWidth:3474,sizes:\"313px\",src:\"https://framerusercontent.com/images/tu3icAafq9FpeNwRCi28lPIC7hY.jpg\",srcSet:\"https://framerusercontent.com/images/tu3icAafq9FpeNwRCi28lPIC7hY.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/tu3icAafq9FpeNwRCi28lPIC7hY.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/tu3icAafq9FpeNwRCi28lPIC7hY.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/tu3icAafq9FpeNwRCi28lPIC7hY.jpg 3474w\"},className:\"framer-k0vahp\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+630.0000000000013),pixelHeight:3474,pixelWidth:4632,sizes:\"260px\",src:\"https://framerusercontent.com/images/zY0U3cCmzDCcPnL7TmBmdoZUK2g.jpg\",srcSet:\"https://framerusercontent.com/images/zY0U3cCmzDCcPnL7TmBmdoZUK2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zY0U3cCmzDCcPnL7TmBmdoZUK2g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zY0U3cCmzDCcPnL7TmBmdoZUK2g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zY0U3cCmzDCcPnL7TmBmdoZUK2g.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zY0U3cCmzDCcPnL7TmBmdoZUK2g.jpg 4632w\"},className:\"framer-15bnl2q\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+958.0000000000014),pixelHeight:4624,pixelWidth:3472,sizes:\"352px\",src:\"https://framerusercontent.com/images/ven2QGWqn73KEsi7BXXKx8x2j38.jpg\",srcSet:\"https://framerusercontent.com/images/ven2QGWqn73KEsi7BXXKx8x2j38.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ven2QGWqn73KEsi7BXXKx8x2j38.jpg?scale-down-to=2048 1537w,https://framerusercontent.com/images/ven2QGWqn73KEsi7BXXKx8x2j38.jpg?scale-down-to=4096 3075w,https://framerusercontent.com/images/ven2QGWqn73KEsi7BXXKx8x2j38.jpg 3472w\"},className:\"framer-1vdrwr9\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1423.5000000000014),pixelHeight:1600,pixelWidth:1200,sizes:\"352px\",src:\"https://framerusercontent.com/images/LZJyUFZ44t4EUCELm9O2IYDls.jpg\",srcSet:\"https://framerusercontent.com/images/LZJyUFZ44t4EUCELm9O2IYDls.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/LZJyUFZ44t4EUCELm9O2IYDls.jpg 1200w\"},className:\"framer-t7c4ok\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1221.0000000000014),pixelHeight:1600,pixelWidth:1200,sizes:\"391px\",src:\"https://framerusercontent.com/images/3LsAu0hDNW0qWhczGcsiG0bmd3Q.jpg\",srcSet:\"https://framerusercontent.com/images/3LsAu0hDNW0qWhczGcsiG0bmd3Q.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/3LsAu0hDNW0qWhczGcsiG0bmd3Q.jpg 1200w\"},className:\"framer-e3wqkx\",whileHover:animation2}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"Hey there!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"I'm Mythili. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"Explaining where I'm from and what I do might be a little hard.\"})]}),className:\"framer-4keskb\",\"data-framer-appear-id\":\"4keskb\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"I was brought up in Mumbai. I did my undergrad in Bengaluru. I lived in France for 5 months. Now, I live in Cincinnati. I'm all over the place. \\xaf\\\\_(\u30C4)_/\\xaf\"})}),className:\"framer-adsimc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"I have a dog named Simba who I love more than anything in the world.\"})}),className:\"framer-1bv08uh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"And I'm a very passionate playlist maker on Spotify.\"})}),className:\"framer-19h6lrv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"Current obsession\"})}),className:\"framer-tda17q\",fonts:[\"Inter-LightItalic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-63e45272-007b-437e-b2a8-9f4d1433e3e9, rgb(66, 139, 212))\"},children:\"what fuels my creativity?\"})}),className:\"framer-aoskcv\",fonts:[\"Inter-SemiBoldItalic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-63e45272-007b-437e-b2a8-9f4d1433e3e9, rgb(66, 139, 212))\"},children:\"who am i outside of design?\"})}),className:\"framer-1wgzxv5\",fonts:[\"Inter-SemiBoldItalic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1syaqth-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bldJyO_CM\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,controls:false,height:\"100%\",id:\"bldJyO_CM\",isMixedBorderRadius:false,layoutId:\"bldJyO_CM\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/k9YLAgij8hc3GdLom37aiEKPWsg.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gclmt7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ggv2QPilT\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,controls:false,height:\"100%\",id:\"Ggv2QPilT\",isMixedBorderRadius:false,layoutId:\"Ggv2QPilT\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/co0lA0qUrO3xprO1X9IqxKkKh0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2500.5000000000014),pixelHeight:1600,pixelWidth:1200,sizes:\"322px\",src:\"https://framerusercontent.com/images/K1VjLeRCUPwts2MeWZz3gBgU7Y8.jpg\",srcSet:\"https://framerusercontent.com/images/K1VjLeRCUPwts2MeWZz3gBgU7Y8.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/K1VjLeRCUPwts2MeWZz3gBgU7Y8.jpg 1200w\"},className:\"framer-1vrsot5\",whileHover:animation2}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:\"Travelling\"})}),className:\"framer-1ygx1d1\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:\"I am constantly inspired by everything around me. Especially art. I absolutely love painting, digital art and animation, and absolutely everything related to creation.\"})}),className:\"framer-os4rzq\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:\"Noticing details\"})}),className:\"framer-pvcf8t\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:\"Animation (have you watched Arcane yet?)\"})}),className:\"framer-1mjr2pk\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:\"Diving headfirst into new things\"})}),className:\"framer-16ouqib\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:\"Going big or going home.\"})}),className:\"framer-wqtm7w\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQgaXRhbGlj\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(84, 80, 81))\"},children:'Never saying \"no\" to new experiences (within sane limits)'})}),className:\"framer-prvuwe\",fonts:[\"FS;Public Sans-semibold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"540px\",y:17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hfdt03-container\",layoutScroll:true,nodeId:\"K4hsj_8uF\",scopeId:\"XbzKFJocl\",children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"K4hsj_8uF\",layoutId:\"K4hsj_8uF\",OPcLfpYzw:\"Back\",owioVYE03:\"Button\",style:{width:\"100%\"},variant:\"Aqfa2nIos\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-45e7y1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IA7g9h27Y\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,controls:false,height:\"100%\",id:\"IA7g9h27Y\",isMixedBorderRadius:false,layoutId:\"IA7g9h27Y\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/qxGHQyzI6y5n4MhbtViBxDv8GoY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iz1b7d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"O0hGXjd35\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,controls:false,height:\"100%\",id:\"O0hGXjd35\",isMixedBorderRadius:false,layoutId:\"O0hGXjd35\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/TiS8xLoykc5HhSDXe0Xg2Br5Ek.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cde2p4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"b2DxZjlDw\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,controls:false,height:\"100%\",id:\"b2DxZjlDw\",isMixedBorderRadius:false,layoutId:\"b2DxZjlDw\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/55HvlXduqYXwaOpaR0mmckjYIk.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3896.000000000002),pixelHeight:3024,pixelWidth:4032,sizes:\"400px\",src:\"https://framerusercontent.com/images/oLt8jQ6PbIQJzbH38V4VomnsQc.jpg\",srcSet:\"https://framerusercontent.com/images/oLt8jQ6PbIQJzbH38V4VomnsQc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oLt8jQ6PbIQJzbH38V4VomnsQc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oLt8jQ6PbIQJzbH38V4VomnsQc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oLt8jQ6PbIQJzbH38V4VomnsQc.jpg 4032w\"},className:\"framer-5jnkgp\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4017.500000000001),pixelHeight:2341,pixelWidth:1795,sizes:\"379px\",src:\"https://framerusercontent.com/images/erC2BMusg1GcmDzX0uwLwa1ztM.jpeg\",srcSet:\"https://framerusercontent.com/images/erC2BMusg1GcmDzX0uwLwa1ztM.jpeg?scale-down-to=1024 785w,https://framerusercontent.com/images/erC2BMusg1GcmDzX0uwLwa1ztM.jpeg?scale-down-to=2048 1570w,https://framerusercontent.com/images/erC2BMusg1GcmDzX0uwLwa1ztM.jpeg 1795w\"},className:\"framer-1f2ifk3\",whileHover:animation2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4542.500000000002),pixelHeight:1152,pixelWidth:1047,sizes:\"586px\",src:\"https://framerusercontent.com/images/XiRI95X26HGeBmy2GsN4sfdo.jpg\",srcSet:\"https://framerusercontent.com/images/XiRI95X26HGeBmy2GsN4sfdo.jpg?scale-down-to=1024 930w,https://framerusercontent.com/images/XiRI95X26HGeBmy2GsN4sfdo.jpg 1047w\"},className:\"framer-aoii5\",whileHover:animation2}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-187aq7b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mrk13p07g\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"mrk13p07g\",layoutId:\"mrk13p07g\",theme:1,url:\"https://open.spotify.com/track/6l6XVeeoTe3ggya4fLY8l8?si=0f91945a2a6a41cf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\"},children:\"On-Repeat!\"})}),className:\"framer-1cp8hzs\",fonts:[\"Inter-LightItalic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s0h7ra-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uXGlyKEmU\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe style=\"border-radius:12px\" src=\"https://open.spotify.com/embed/playlist/0CZDFwoiCM1pwjOkUUWaXR?utm_source=generator\" width=\"100%\" height=\"352\" frameBorder=\"0\" allowfullscreen=\"\" allow=\"autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture\" loading=\"lazy\"></iframe>',id:\"uXGlyKEmU\",layoutId:\"uXGlyKEmU\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o6g5ml-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fKJk5eXtv\",rendersWithMotion:true,scopeId:\"XbzKFJocl\",whileHover:animation2,children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe style=\"border-radius:12px\" src=\"https://open.spotify.com/embed/playlist/37i9dQZF1EpwxuwaT7NbgJ?utm_source=generator\" width=\"100%\" height=\"352\" frameBorder=\"0\" allowfullscreen=\"\" allow=\"autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture\" loading=\"lazy\"></iframe>',id:\"fKJk5eXtv\",layoutId:\"fKJk5eXtv\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BkOhr.framer-nxm9cj, .framer-BkOhr .framer-nxm9cj { display: block; }\",\".framer-BkOhr.framer-qmbful { background-color: #ffffff; height: 5914px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-BkOhr .framer-1hwt5lw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 70px; left: calc(22.25000000000002% - 292px / 2); position: absolute; top: calc(3.956712884680442% - 70px / 2); white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1acoasi { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 296px; left: calc(68.16666666666669% - 456px / 2); position: absolute; top: calc(6.0027054447074955% - 296px / 2); width: 456px; }\",\".framer-BkOhr .framer-k0vahp { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 294px; left: calc(23.083333333333357% - 313px / 2); position: absolute; top: calc(14.524856273249936% - 294px / 2); width: 313px; }\",\".framer-BkOhr .framer-15bnl2q { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 294px; left: calc(37.33333333333336% - 260px / 2); position: absolute; top: calc(13.13831586066962% - 294px / 2); width: 260px; }\",\".framer-BkOhr .framer-1vdrwr9 { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 294px; left: calc(40.50000000000003% - 352px / 2); position: absolute; top: calc(18.68447751099089% - 294px / 2); width: 352px; }\",\".framer-BkOhr .framer-t7c4ok { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 447px; left: calc(48.33333333333336% - 352px / 2); position: absolute; top: calc(27.84917145755836% - 447px / 2); width: 352px; }\",\".framer-BkOhr .framer-e3wqkx { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 360px; left: calc(72.41666666666669% - 391px / 2); position: absolute; top: calc(23.689550219817406% - 360px / 2); width: 391px; }\",\".framer-BkOhr .framer-4keskb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 177px; left: calc(24.41666666666669% - 344px / 2); position: absolute; top: calc(7.000338180588457% - 177px / 2); white-space: pre-wrap; width: 344px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-adsimc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 224px; left: calc(72.41666666666669% - 435px / 2); position: absolute; top: calc(13.375042272573575% - 224px / 2); white-space: pre-wrap; width: 435px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1bv08uh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 109px; left: calc(36.16666666666669% - 378px / 2); position: absolute; top: calc(22.75955360162329% - 109px / 2); white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-19h6lrv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 82px; left: calc(73.00000000000001% - 378px / 2); position: absolute; top: calc(34.190057490700056% - 82px / 2); white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-tda17q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 18px; left: calc(28.75000000000002% - 378px / 2); position: absolute; top: calc(34.883327696990214% - 18px / 2); white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-aoskcv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 109px; left: calc(29.666666666666693% - 457px / 2); position: absolute; top: calc(42.27257355427801% - 109px / 2); white-space: pre-wrap; width: 457px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1wgzxv5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 109px; left: calc(34.16666666666669% - 457px / 2); position: absolute; top: calc(59.89178221170107% - 109px / 2); white-space: pre-wrap; width: 457px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1syaqth-container { flex: none; height: 541px; left: calc(45.25000000000002% - 328px / 2); position: absolute; top: calc(48.81636794048024% - 541px / 2); width: 328px; }\",\".framer-BkOhr .framer-gclmt7-container { flex: none; height: 461px; left: calc(75.91666666666669% - 322px / 2); position: absolute; top: calc(54.0581670612107% - 461px / 2); width: 322px; }\",\".framer-BkOhr .framer-1vrsot5 { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 361px; left: calc(75.91666666666669% - 322px / 2); position: absolute; top: calc(45.33310787960773% - 361px / 2); width: 322px; }\",\".framer-BkOhr .framer-1ygx1d1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 33px; left: calc(51.58333333333336% - 152px / 2); position: absolute; top: calc(54.3456205613798% - 33px / 2); white-space: pre-wrap; width: 152px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-os4rzq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 219px; left: calc(33.33333333333336% - 437px / 2); position: absolute; top: calc(63.408860331416996% - 219px / 2); white-space: pre-wrap; width: 437px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-pvcf8t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 33px; left: calc(78.00000000000003% - 237px / 2); position: absolute; top: calc(49.103821440649334% - 33px / 2); white-space: pre-wrap; width: 237px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1mjr2pk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 112px; left: calc(48.66666666666669% - 227px / 2); position: absolute; top: calc(57.01724721001017% - 112px / 2); white-space: pre-wrap; width: 227px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-16ouqib { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 71px; left: calc(24.41666666666669% - 331px / 2); position: absolute; top: calc(56.171795738924615% - 71px / 2); white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-wqtm7w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 69px; left: calc(20.083333333333357% - 226px / 2); position: absolute; top: calc(44.8258369969564% - 69px / 2); white-space: pre-wrap; width: 226px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-prvuwe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 183px; left: calc(20.083333333333357% - 226px / 2); position: absolute; top: calc(51.84308420696654% - 183px / 2); white-space: pre-wrap; width: 226px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1hfdt03-container { flex: none; height: auto; left: 48%; position: fixed; top: 17px; transform: translateX(-50%); width: 540px; z-index: 1; }\",\".framer-BkOhr .framer-45e7y1-container { flex: none; height: 392px; left: calc(73.50000000000001% - 379px / 2); position: absolute; top: calc(63.5779506256341% - 392px / 2); width: 379px; }\",\".framer-BkOhr .framer-iz1b7d-container { flex: none; height: 627px; left: calc(32.83333333333335% - 424px / 2); position: absolute; top: calc(92.98275278998987% - 627px / 2); width: 424px; }\",\".framer-BkOhr .framer-1cde2p4-container { flex: none; height: 627px; left: calc(71.25000000000003% - 433px / 2); position: absolute; top: calc(92.98275278998987% - 627px / 2); width: 433px; }\",\".framer-BkOhr .framer-5jnkgp { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 422px; left: calc(32.83333333333335% - 400px / 2); position: absolute; top: calc(69.4453838349679% - 422px / 2); width: 400px; }\",\".framer-BkOhr .framer-1f2ifk3 { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 463px; left: calc(73.50000000000001% - 379px / 2); position: absolute; top: calc(71.84646601285088% - 463px / 2); width: 379px; }\",\".framer-BkOhr .framer-aoii5 { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 581px; left: calc(39.58333333333336% - 586px / 2); position: absolute; top: calc(81.72133919513023% - 581px / 2); width: 586px; }\",\".framer-BkOhr .framer-187aq7b-container { flex: none; height: auto; left: 26%; position: absolute; top: 35%; transform: translate(-50%, -50%); width: auto; }\",\".framer-BkOhr .framer-1cp8hzs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 18px; left: calc(26.500000000000025% - 378px / 2); position: absolute; top: calc(38.87385864051406% - 18px / 2); white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-BkOhr .framer-1s0h7ra-container { flex: none; height: 354px; left: calc(63.33333333333335% - 609px / 2); position: absolute; top: calc(38.36658775786272% - 354px / 2); width: 609px; }\",\".framer-BkOhr .framer-o6g5ml-container { flex: none; height: 170px; left: calc(23.41666666666669% - 306px / 2); position: absolute; top: calc(37.284409874873205% - 170px / 2); width: 306px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5914\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerXbzKFJocl=withCSS(Component,css,\"framer-BkOhr\");export default FramerXbzKFJocl;FramerXbzKFJocl.displayName=\"Page\";FramerXbzKFJocl.defaultProps={height:5914,width:1200};addFonts(FramerXbzKFJocl,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/C4UT54A5XYGOEXZXAWM5XZNSNM3VVMLH/3U7UJWG6VPA6HDJ62L5CSBBRUCTTHG3I/HUT36TIUMR6VZ6YKKXYTFW2QSMCKUXF4.woff2\",weight:\"700\"},{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:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/YYB6GZmCWnZq3RWZOghuZIOxQY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/miJTzODdiyIr3tRo9KEoqXXk2PM.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6ZMhcggRFfEfbf7lncCpaUbA.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/8sCN6PGUr4I8q5hC5twAXfcwqV0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/aUYDUTztS7anQw5JuwCncXeLOBY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/5mDAOkC5Wpzo7NkuE9oYfqlY2u4.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/yDiPvYxioBHsicnYxpPW35WQmx8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Public Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2M6XQP44RACFWMCIXQD5AZ3IQNM227L7/BVJIS3P5UV7YPUBE4AIOBVVSFX5S3JIK/OAK7VMJV4TSK7IAG757DLJGUX2HECNAS.woff2\",weight:\"600\"}]},...VideoFonts,...TopNavFonts,...SpotifyFonts,...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXbzKFJocl\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5914\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "urlRegex", "Spotify", "props", "theme", "sourceUrl", "identifier", "te", "strippedUrl", "url", "p", "addPropertyControls", "ControlType", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "VideoFonts", "getFonts", "Video", "TopNavFonts", "DiSK89Ch4_default", "SpotifyFonts", "Spotify", "EmbedFonts", "Embed", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichTextWithOptimizedAppearEffect", "x", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "Container", "Video", "DiSK89Ch4_default", "Spotify", "Embed", "css", "FramerXbzKFJocl", "withCSS", "XbzKFJocl_default", "addFonts", "VideoFonts", "TopNavFonts", "SpotifyFonts", "EmbedFonts", "__FramerMetadata__"]
}
