{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/awJ7GONrnIslKgIQucCL/IiGNQASAJeMweEWaG2DW/TextTypewriter.js", "ssg:https://framerusercontent.com/modules/pCfTSbJnZyaoa8yKJ8ER/OEq4tSpqNaeFORNl66Lc/qAw0iDF4K.js", "ssg:https://framerusercontent.com/modules/rGSfjraDSNe0BwiuTX1v/axL9LsOwkr3ZsmM2e5Ry/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";/**\n * @copyright \u00A9framersnippets.com\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n **/export default function TextTypewriter(props){const migratedProps=migrateSpecificWords(props);const{content,specificWords,font,fontColor,cursor,effect,tag:Tag}=migratedProps;const[state,setState]=React.useState({displayedContent:\"\",wordIndex:0,isDeleting:false,isBlinking:false});const fullContent=React.useMemo(()=>{var _specificWords_state_wordIndex;return`${content} ${((_specificWords_state_wordIndex=specificWords[state.wordIndex])===null||_specificWords_state_wordIndex===void 0?void 0:_specificWords_state_wordIndex.text)||\"\"}`;},[content,specificWords,state.wordIndex]);const updateState=React.useCallback(()=>{setState(prevState=>{const{displayedContent,isDeleting,wordIndex}=prevState;if(!isDeleting&&displayedContent.length===fullContent.length){return{...prevState,isBlinking:true};}else if(isDeleting&&displayedContent.length===content.length){return{...prevState,wordIndex:(wordIndex+1)%specificWords.length,isDeleting:false,isBlinking:false};}return{...prevState,displayedContent:fullContent.substring(0,displayedContent.length+(isDeleting?-1:1))};});},[fullContent,content.length,specificWords.length]);React.useEffect(()=>{const timeoutId=setTimeout(updateState,effect.typingSpeed);return()=>clearTimeout(timeoutId);},[state.displayedContent,state.isDeleting,updateState,effect.typingSpeed]);React.useEffect(()=>{if(state.isBlinking){const timeoutId=setTimeout(()=>{setState(prevState=>({...prevState,isDeleting:true,isBlinking:false}));},effect.delay);return()=>clearTimeout(timeoutId);}},[state.isBlinking,effect.delay]);const renderContent=React.useCallback(()=>{var _specificWords_state_wordIndex;return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"span\",{children:state.displayedContent.substring(0,content.length)},\"content\"),/*#__PURE__*/_jsx(\"span\",{style:{color:(_specificWords_state_wordIndex=specificWords[state.wordIndex])===null||_specificWords_state_wordIndex===void 0?void 0:_specificWords_state_wordIndex.color},children:state.displayedContent.substring(content.length)},\"specific-word\")]});},[state.displayedContent,content.length,specificWords,state.wordIndex]);return /*#__PURE__*/_jsx(motion.div,{style:{...font,color:fontColor,whiteSpace:\"pre-wrap\",position:\"relative\",wordWrap:\"break-word\"},children:/*#__PURE__*/_jsxs(Tag,{style:{all:\"unset\",fontSize:font.fontSize},children:[renderContent(),/*#__PURE__*/_jsx(CursorComponent,{isBlinking:state.isBlinking,cursor:cursor,isMixedMargin:false},\"cursor\")]})});}TextTypewriter.defaultProps={content:\"Typewriter.\",specificWords:[{text:\"Cycle.\",color:\"#0599ff\"},{text:\"Content.\",color:\"#0599ff\"},{text:\"Color.\",color:\"#0599ff\"},{text:\"Cursor.\",color:\"#0599ff\"},{text:\"Blink.\",color:\"#0599ff\"},{text:\"Transition.\",color:\"#0599ff\"}],font:{fontSize:15,lineHeight:1,letterSpacing:0},fontColor:\"#000000\",cursor:{cursorColor:\"#0599ff\",cursorHeight:15,cursorWidth:2,verticalAlign:\"middle\",margin:0,blink:false},effect:{typingSpeed:100,delay:1500},tag:\"p\"};addPropertyControls(TextTypewriter,{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",displayTextAlignment:true,defaultFontType:\"sans-serif\",defaultValue:{fontSize:15,lineHeight:1,letterSpacing:0}},content:{type:ControlType.String,title:\"Content\",placeholder:\"Type something\u2026\",displayTextArea:true},fontColor:{type:ControlType.Color,title:\"\u200E\",defaultValue:\"#000000\"},specificWords:{type:ControlType.Array,title:\"Typewriter\",propertyControl:{type:ControlType.Object,controls:{text:{type:ControlType.String,title:\"Text\"},color:{type:ControlType.Color,title:\"Color\"}}}},cursor:{type:ControlType.Object,title:\"Cursor\",controls:{cursorColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#0599ff\"},cursorHeight:{type:ControlType.Number,title:\"Height\",displayStepper:true,defaultValue:18},cursorWidth:{type:ControlType.Number,title:\"Width\",displayStepper:true,defaultValue:2},verticalAlign:{type:ControlType.Enum,title:\"Align\",defaultValue:\"center\",options:[\"top\",\"middle\",\"bottom\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],displaySegmentedControl:true},margin:{type:ControlType.FusedNumber,title:\"Margin\",toggleKey:\"isMixedMargin\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topMargin\",\"rightMargin\",\"bottomMargin\",\"leftMargin\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},blink:{type:ControlType.Boolean,title:\"Blinking\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"}}},effect:{type:ControlType.Object,title:\"Transition\",controls:{typingSpeed:{type:ControlType.Number,title:\"Speed\",min:0,max:200,defaultValue:100,displayStepper:true,step:10},delay:{type:ControlType.Number,title:\"Delay\",min:0,max:5e3,defaultValue:2e3,displayStepper:true,step:100}}},tag:{type:ControlType.Enum,title:\"Tag\",options:[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"p\",\"span\"],optionTitles:[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"p\",\"span\"],defaultValue:\"p\"}});const CursorComponent=/*#__PURE__*/React.memo(({isBlinking,cursor,isMixedMargin=false})=>{const marginValue=isMixedMargin?`${cursor.margin}px`:`${cursor.topMargin}px ${cursor.rightMargin}px ${cursor.bottomMargin}px ${cursor.leftMargin}px`;const cursorStyle={display:\"inline-block\",width:cursor.cursorWidth,height:cursor.cursorHeight,backgroundColor:cursor.cursorColor,verticalAlign:cursor.verticalAlign,margin:marginValue,overflow:\"visible\"};return /*#__PURE__*/_jsx(motion.span,{style:cursorStyle,animate:{opacity:isBlinking&&cursor.blink?[0,1]:1},transition:{repeat:isBlinking&&cursor.blink?Infinity:0,duration:.6,repeatType:\"reverse\",type:\"spring\",delay:.2}});});function migrateSpecificWords(props){if(Array.isArray(props.specificWords)&&typeof props.specificWords[0]===\"string\"){return{...props,specificWords:props.specificWords.map(word=>({text:word,color:props.specificWordsColor||\"#0599ff\"}))};}return props;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextTypewriter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextTypewriter.map", "// Generated by Framer (47ebf4a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-8fVLr .framer-styles-preset-he8b62:not(.rich-text-wrapper), .framer-8fVLr .framer-styles-preset-he8b62.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss07\\' on; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.06em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-8fVLr .framer-styles-preset-he8b62:not(.rich-text-wrapper), .framer-8fVLr .framer-styles-preset-he8b62.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss07\\' on; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.06em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-8fVLr .framer-styles-preset-he8b62:not(.rich-text-wrapper), .framer-8fVLr .framer-styles-preset-he8b62.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss07\\' on; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.06em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-8fVLr\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TextTypewriter from\"https://framerusercontent.com/modules/awJ7GONrnIslKgIQucCL/IiGNQASAJeMweEWaG2DW/TextTypewriter.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import FooterComponent from\"#framer/local/canvasComponent/n0851LZ5O/n0851LZ5O.js\";import Button from\"#framer/local/canvasComponent/q9eGoRpLZ/q9eGoRpLZ.js\";import NavbarNavbarComponent from\"#framer/local/canvasComponent/QXsgQf2ii/QXsgQf2ii.js\";import CaseThumbnail from\"#framer/local/canvasComponent/yetnKvTBx/yetnKvTBx.js\";import*as sharedStyle1 from\"#framer/local/css/D9GfhrOk_/D9GfhrOk_.js\";import*as sharedStyle from\"#framer/local/css/qAw0iDF4K/qAw0iDF4K.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarNavbarComponentFonts=getFonts(NavbarNavbarComponent);const TextTypewriterFonts=getFonts(TextTypewriter);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const CaseThumbnailFonts=getFonts(CaseThumbnail);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const MotionSectionWithFX=withFX(motion.section);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const FooterComponentFonts=getFonts(FooterComponent);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={Jr0Nnwrk3:\"(min-width: 810px) and (max-width: 1199px)\",LLIxG055h:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6kjyX\";const variantClassNames={Jr0Nnwrk3:\"framer-v-p1p90c\",LLIxG055h:\"framer-v-72y46q\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:.1,mass:1,stiffness:139,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:180};const transition2={damping:30,delay:.3,mass:1,stiffness:139,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:.2,duration:1,ease:[.19,0,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"LLIxG055h\",Tablet:\"Jr0Nnwrk3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"Jr0Nnwrk3\",\"LLIxG055h\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"min(100vw, 1920px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rphjv-container\",layoutScroll:true,nodeId:\"wOFNTJW53\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLIxG055h:{variant:\"KFrzXyYML\"}},children:/*#__PURE__*/_jsx(NavbarNavbarComponent,{height:\"100%\",id:\"wOFNTJW53\",layoutId:\"wOFNTJW53\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"e_WVIDgWZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-16n27d8\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(MotionSectionWithOptimizedAppearEffect,{animate:animation,className:\"framer-k13w66\",\"data-framer-appear-id\":\"k13w66\",\"data-framer-name\":\"Section - Hero\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e01i53\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLIxG055h:{background:{alt:\"Portrait picture\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+180+174.8+0+0),pixelHeight:854,pixelWidth:990,sizes:\"96px\",src:\"https://framerusercontent.com/images/8xGOod2jIiZsjh2zoR7eMqbPZf4.jpg\",srcSet:\"https://framerusercontent.com/images/8xGOod2jIiZsjh2zoR7eMqbPZf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8xGOod2jIiZsjh2zoR7eMqbPZf4.jpg 990w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"Portrait picture\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+280+0+0+0),pixelHeight:854,pixelWidth:990,sizes:\"96px\",src:\"https://framerusercontent.com/images/8xGOod2jIiZsjh2zoR7eMqbPZf4.jpg\",srcSet:\"https://framerusercontent.com/images/8xGOod2jIiZsjh2zoR7eMqbPZf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8xGOod2jIiZsjh2zoR7eMqbPZf4.jpg 990w\"},className:\"framer-iu3knx\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0drz7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9p3e1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-he8b62\",\"data-styles-preset\":\"qAw0iDF4K\",children:\"Hello, I'm Adithya,   \"})}),className:\"framer-18zq8os\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vu6mol-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EfhrvxHFp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{cursor:{blink:false,bottomMargin:0,cursorColor:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",cursorHeight:56,cursorWidth:2,isMixedMargin:false,leftMargin:0,margin:0,rightMargin:0,topMargin:0,verticalAlign:\"middle\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontFeatureSettings:\"'ss07' on\",fontSize:\"38px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.06em\",lineHeight:\"1em\"}},LLIxG055h:{cursor:{blink:false,bottomMargin:0,cursorColor:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",cursorHeight:40,cursorWidth:2,isMixedMargin:false,leftMargin:0,margin:0,rightMargin:0,topMargin:0,verticalAlign:\"middle\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontFeatureSettings:\"'ss07' on\",fontSize:\"30px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.06em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(TextTypewriter,{content:\"I'm a\",cursor:{blink:false,bottomMargin:0,cursorColor:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",cursorHeight:72,cursorWidth:2,isMixedMargin:false,leftMargin:0,margin:0,rightMargin:0,topMargin:0,verticalAlign:\"middle\"},effect:{delay:500,typingSpeed:100},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontFeatureSettings:\"'ss07' on\",fontSize:\"48px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.06em\",lineHeight:\"1em\"},fontColor:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",height:\"100%\",id:\"EfhrvxHFp\",layoutId:\"EfhrvxHFp\",specificWords:[{color:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",text:\"UI/UX Designer\"},{color:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",text:\"Web Developer\"},{color:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",text:\"Graphic Designer\"}],style:{height:\"100%\"},tag:\"p\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tor0wz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-he8b62\",\"data-styles-preset\":\"qAw0iDF4K\",style:{\"--framer-text-alignment\":\"left\"},children:\"based in Sri Lanka. Welcome to my Portfolio!  \"})}),className:\"framer-1eefq4q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1j0kph4\",\"data-border\":true,\"data-framer-appear-id\":\"1j0kph4\",\"data-framer-name\":\"Section - Work\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8xzu2v\",\"data-framer-name\":\"See All Work\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vlsi7h\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jx253v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:\"Selected Work\"})})},LLIxG055h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:\"Selected Work\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:\"Selected Work\"})}),className:\"framer-y1vi8r\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2fbkv\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fKfLxJ1Dc:\"modo\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"sqhxf6MEC\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined},{href:{pathVariables:{fKfLxJ1Dc:\"modo\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"sqhxf6MEC\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined},{href:{pathVariables:{fKfLxJ1Dc:\"modo\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"sqhxf6MEC\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{height:300,y:(componentViewport?.y||0)+0+0+0+539.2+24+48+0+0},LLIxG055h:{height:300,width:`max(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+650+20+42.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 120px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+539.2+24+50.8+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hs2ai1-container\",\"data-framer-name\":\"Project Card\",name:\"Project Card\",nodeId:\"pXZcCfdlz\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{jk7hR1PkU:resolvedLinks[1]},LLIxG055h:{jk7hR1PkU:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CaseThumbnail,{belbEkdrE:addImageAlt({pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/hSUQTy7Js5lLsZuh4JUKZyk49k.png\",srcSet:\"https://framerusercontent.com/images/hSUQTy7Js5lLsZuh4JUKZyk49k.png?scale-down-to=512 512w,https://framerusercontent.com/images/hSUQTy7Js5lLsZuh4JUKZyk49k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hSUQTy7Js5lLsZuh4JUKZyk49k.png 1200w\"},\"\"),bHtugLMfW:\"MODO \",height:\"100%\",hrg12aKGt:false,id:\"pXZcCfdlz\",jk7hR1PkU:resolvedLinks[0],layoutId:\"pXZcCfdlz\",name:\"Project Card\",style:{height:\"100%\",width:\"100%\"},Ty82T0JvZ:\"MODO - Concept Landing Page\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fKfLxJ1Dc:\"weaponwatch\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"ELCZufmOG\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined},{href:{pathVariables:{fKfLxJ1Dc:\"weaponwatch\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"ELCZufmOG\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined},{href:{pathVariables:{fKfLxJ1Dc:\"weaponwatch\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"ELCZufmOG\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{height:300,y:(componentViewport?.y||0)+0+0+0+539.2+24+48+0+0},LLIxG055h:{height:300,width:`max(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+650+20+42.4+0+320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 120px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+539.2+24+50.8+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f4964f-container\",\"data-framer-name\":\"Project Card\",name:\"Project Card\",nodeId:\"KBp5uDUOl\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{jk7hR1PkU:resolvedLinks1[1]},LLIxG055h:{jk7hR1PkU:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CaseThumbnail,{belbEkdrE:addImageAlt({pixelHeight:2183,pixelWidth:4e3,src:\"https://framerusercontent.com/images/PbOXqwK4sCTEzRHNeSKQrw78Fs.webp\",srcSet:\"https://framerusercontent.com/images/PbOXqwK4sCTEzRHNeSKQrw78Fs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PbOXqwK4sCTEzRHNeSKQrw78Fs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PbOXqwK4sCTEzRHNeSKQrw78Fs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PbOXqwK4sCTEzRHNeSKQrw78Fs.webp 4000w\"},\"\"),bHtugLMfW:\"WeaponWatch\",height:\"100%\",hrg12aKGt:false,id:\"KBp5uDUOl\",jk7hR1PkU:resolvedLinks1[0],layoutId:\"KBp5uDUOl\",name:\"Project Card\",style:{height:\"100%\",width:\"100%\"},Ty82T0JvZ:\"WeaponWatch - Mobile App UI\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{height:300,y:(componentViewport?.y||0)+0+0+0+539.2+24+48+0+340},LLIxG055h:{height:300,width:`max(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+650+20+42.4+0+640}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 120px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+539.2+24+50.8+0+490,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ccimt-container\",\"data-framer-name\":\"Project Card\",name:\"Project Card\",nodeId:\"nJvQPmHdx\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CaseThumbnail,{belbEkdrE:addImageAlt({pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/zHyKKE8tHNB5Ahb0M3iyDHEY.webp\",srcSet:\"https://framerusercontent.com/images/zHyKKE8tHNB5Ahb0M3iyDHEY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zHyKKE8tHNB5Ahb0M3iyDHEY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zHyKKE8tHNB5Ahb0M3iyDHEY.webp 1200w\"},\"\"),bHtugLMfW:\"Inverloch & Kongwak\",height:\"100%\",hrg12aKGt:true,id:\"nJvQPmHdx\",jk7hR1PkU:\"https://inverlochps.vic.edu.au/\",layoutId:\"nJvQPmHdx\",name:\"Project Card\",style:{height:\"100%\",width:\"100%\"},Ty82T0JvZ:\"Inverloch & Kongwak - Website Design & Development\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fKfLxJ1Dc:\"clyne\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"rjklrzW_A\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined},{href:{pathVariables:{fKfLxJ1Dc:\"clyne\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"rjklrzW_A\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined},{href:{pathVariables:{fKfLxJ1Dc:\"clyne\"},unresolvedPathSlugs:{fKfLxJ1Dc:{collectionId:\"uR3H2Ra2C\",collectionItemId:\"rjklrzW_A\"}},webPageId:\"aHcFAyEwV\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{height:300,y:(componentViewport?.y||0)+0+0+0+539.2+24+48+0+340},LLIxG055h:{height:300,width:`max(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+650+20+42.4+0+960}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 120px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+539.2+24+50.8+0+490,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sslz68-container\",\"data-framer-name\":\"Project Card\",name:\"Project Card\",nodeId:\"lrf5Y7TW9\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{jk7hR1PkU:resolvedLinks2[1]},LLIxG055h:{jk7hR1PkU:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(CaseThumbnail,{belbEkdrE:addImageAlt({pixelHeight:832,pixelWidth:1280,src:\"https://framerusercontent.com/images/dJxGQcoutfri0HoUTqcCZJbJ0.jpg\"},\"\"),bHtugLMfW:\"Clyne\",height:\"100%\",hrg12aKGt:false,id:\"lrf5Y7TW9\",jk7hR1PkU:resolvedLinks2[0],layoutId:\"lrf5Y7TW9\",name:\"Project Card\",style:{height:\"100%\",width:\"100%\"},Ty82T0JvZ:\"Clyne - Concept Mobile App UI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfnwuk\",\"data-framer-name\":\"See All Work\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5p0njg\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LVzq4AHGI\"},implicitPathVariables:undefined},{href:{webPageId:\"LVzq4AHGI\"},implicitPathVariables:undefined},{href:{webPageId:\"LVzq4AHGI\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{y:(componentViewport?.y||0)+0+0+0+539.2+24+768+0+0},LLIxG055h:{y:(componentViewport?.y||0)+0+0+0+650+20+1332.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+539.2+24+1070.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19v9m3h-container\",nodeId:\"OSZ0hc5JR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{GYm57Z9A3:resolvedLinks3[1]},LLIxG055h:{GYm57Z9A3:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{ecurOKvnt:\"rgb(255, 255, 255)\",fik5TNYsN:\"View All Work\",GYm57Z9A3:resolvedLinks3[0],height:\"100%\",id:\"OSZ0hc5JR\",K5BbC5WvK:false,karpKTZWX:\"ArrowRight\",layoutId:\"OSZ0hc5JR\",MTtdOYVkL:\"rgb(255, 255, 255)\",paBZd9V9n:\"rgb(0, 0, 0)\",style:{height:\"100%\"},variant:\"ckoIz6duV\",width:\"100%\"})})})})})})})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-266bbj\",\"data-border\":true,\"data-framer-name\":\"Section - About Me\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vkjdmr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-434cce6a-f877-480c-a9e2-6178c2acd08c, rgb(115, 115, 115))\"},children:\"About Me\"})}),className:\"framer-le9arq\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-24ysop\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jco6rl\",\"data-styles-preset\":\"D9GfhrOk_\",children:\"I'm a designer with 3+ years of creative expertise, driven by a passion for crafting intuitive, user-centric and visually compelling experiences. My work bridges the gap between functionality and aesthetics, blending clean design with meaningful storytelling. Every project is an opportunity to transform ideas into engaging visual experiences that leave a lasting impact. Let\u2019s create something extraordinary together.\"})}),className:\"framer-i6x7zl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Rz8bJeFuh\"},implicitPathVariables:undefined},{href:{webPageId:\"Rz8bJeFuh\"},implicitPathVariables:undefined},{href:{webPageId:\"Rz8bJeFuh\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{y:(componentViewport?.y||0)+0+0+0+1479.2+24+0+0+0+174},LLIxG055h:{y:(componentViewport?.y||0)+0+0+0+2110.4+24+0+0+43.2+0+174}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+1832+24+0+0+0+174,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qeuxs-container\",nodeId:\"VmXYP4RX7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{GYm57Z9A3:resolvedLinks4[1]},LLIxG055h:{GYm57Z9A3:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{ecurOKvnt:\"rgb(255, 255, 255)\",fik5TNYsN:\"Read More\",GYm57Z9A3:resolvedLinks4[0],height:\"100%\",id:\"VmXYP4RX7\",K5BbC5WvK:false,karpKTZWX:\"ArrowRight\",layoutId:\"VmXYP4RX7\",MTtdOYVkL:\"rgb(255, 255, 255)\",paBZd9V9n:\"rgb(0, 0, 0)\",style:{height:\"100%\"},variant:\"ckoIz6duV\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1767fsd\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ozf1rs\",\"data-framer-name\":\"Full Image Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{background:{alt:\"Linear Background\",fit:\"fill\",intrinsicHeight:1470,intrinsicWidth:1818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1825.2+0+0+-69.4),pixelHeight:673,pixelWidth:1200,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/Qj9QM597WlYK9sWa9U2BmzBkPGo.jpeg\"}},LLIxG055h:{background:{alt:\"Linear Background\",fit:\"fill\",intrinsicHeight:1470,intrinsicWidth:1818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2449.6+0+0+-44),pixelHeight:673,pixelWidth:1200,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/Qj9QM597WlYK9sWa9U2BmzBkPGo.jpeg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:893,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Linear Background\",fit:\"fill\",intrinsicHeight:1470,intrinsicWidth:1818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2178+0+0+-80),pixelHeight:673,pixelWidth:1200,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/Qj9QM597WlYK9sWa9U2BmzBkPGo.jpeg\"},className:\"framer-1cqj4kd\",\"data-framer-name\":\"image\",style:{transformPerspective:1200}})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{y:(componentViewport?.y||0)+0+2222.2},LLIxG055h:{y:(componentViewport?.y||0)+0+2719.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:313,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2628,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ov9dyi-container\",nodeId:\"yVf23XF2j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jr0Nnwrk3:{variant:\"V_T5UByfG\"},LLIxG055h:{variant:\"tkYEbj_iI\"}},children:/*#__PURE__*/_jsx(FooterComponent,{height:\"100%\",id:\"yVf23XF2j\",layoutId:\"yVf23XF2j\",style:{width:\"100%\"},variant:\"ZPdajZmGQ\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dphmbu-container hidden-p1p90c hidden-72y46q\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KVIUkGPae\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"KVIUkGPae\",intensity:8,layoutId:\"KVIUkGPae\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6kjyX.framer-lux5qc, .framer-6kjyX .framer-lux5qc { display: block; }\",\".framer-6kjyX.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-6kjyX .framer-9rphjv-container { flex: none; height: auto; left: 50%; max-width: 1920px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-6kjyX .framer-16n27d8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-k13w66 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 280px 0px 24px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6kjyX .framer-e01i53 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-6kjyX .framer-iu3knx { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 96px); overflow: hidden; pointer-events: none; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6kjyX .framer-1r0drz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-b9p3e1 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-18zq8os { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 800px; position: relative; width: auto; }\",\".framer-6kjyX .framer-vu6mol-container { flex: none; height: 58px; position: relative; width: auto; }\",\".framer-6kjyX .framer-1tor0wz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-1eefq4q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: none; height: auto; max-width: 800px; position: relative; width: auto; }\",\".framer-6kjyX .framer-1j0kph4 { --border-bottom-width: 0px; --border-color: var(--token-65bd4ef3-5aa9-4f71-9c84-01b799e38f7c, rgba(0, 0, 0, 0.15)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 150px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6kjyX .framer-8xzu2v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-1vlsi7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 25px; min-width: 119px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6kjyX .framer-jx253v { 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 0px 20px 0px; position: relative; width: min-content; }\",\".framer-6kjyX .framer-y1vi8r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6kjyX .framer-y2fbkv { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; justify-content: center; min-height: 100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-1hs2ai1-container, .framer-6kjyX .framer-f4964f-container, .framer-6kjyX .framer-ccimt-container, .framer-6kjyX .framer-1sslz68-container { align-self: start; flex: none; height: 450px; justify-self: start; position: relative; width: 100%; }\",\".framer-6kjyX .framer-1vfnwuk { 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: 100%; }\",\".framer-6kjyX .framer-5p0njg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6kjyX .framer-19v9m3h-container, .framer-6kjyX .framer-1qeuxs-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-6kjyX .framer-266bbj { --border-bottom-width: 0px; --border-color: var(--token-65bd4ef3-5aa9-4f71-9c84-01b799e38f7c, rgba(0, 0, 0, 0.15)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-vkjdmr { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-le9arq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6kjyX .framer-24ysop { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 65%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6kjyX .framer-i6x7zl { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 680px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-1767fsd { 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 0px 50px 0px; position: relative; width: 100%; }\",\".framer-6kjyX .framer-ozf1rs { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 400px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6kjyX .framer-1cqj4kd { flex: none; height: 140%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 140% / 2); width: 100%; }\",\".framer-6kjyX .framer-ov9dyi-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6kjyX .framer-1dphmbu-container { flex: none; height: auto; position: relative; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-6kjyX[data-border=\"true\"]::after, .framer-6kjyX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-6kjyX.framer-72rtr7 { width: 810px; } .framer-6kjyX .framer-k13w66 { min-height: 45vh; } .framer-6kjyX .framer-18zq8os, .framer-6kjyX .framer-1eefq4q { max-width: 100%; } .framer-6kjyX .framer-1j0kph4 { padding: 24px 0px 100px 0px; } .framer-6kjyX .framer-1hs2ai1-container, .framer-6kjyX .framer-f4964f-container, .framer-6kjyX .framer-ccimt-container, .framer-6kjyX .framer-1sslz68-container { height: 300px; } .framer-6kjyX .framer-ozf1rs { height: 347px; }}\",\"@media (max-width: 809px) { .framer-6kjyX.framer-72rtr7 { width: 390px; } .framer-6kjyX .framer-16n27d8 { padding: 0px 20px 0px 20px; } .framer-6kjyX .framer-k13w66 { height: 65vh; min-height: 50vh; padding: 180px 0px 24px 0px; } .framer-6kjyX .framer-b9p3e1 { flex-direction: column; flex-wrap: wrap; gap: 0px; } .framer-6kjyX .framer-18zq8os, .framer-6kjyX .framer-1eefq4q { max-width: 100%; } .framer-6kjyX .framer-vu6mol-container { height: 36px; } .framer-6kjyX .framer-1j0kph4 { padding: 20px 0px 60px 0px; } .framer-6kjyX .framer-y2fbkv { gap: 20px; grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px 0px 30px 0px; } .framer-6kjyX .framer-1hs2ai1-container, .framer-6kjyX .framer-f4964f-container, .framer-6kjyX .framer-ccimt-container, .framer-6kjyX .framer-1sslz68-container { height: 300px; } .framer-6kjyX .framer-266bbj { padding: 24px 0px 50px 0px; } .framer-6kjyX .framer-vkjdmr { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-6kjyX .framer-24ysop { flex: none; max-width: unset; width: 100%; } .framer-6kjyX .framer-ozf1rs { height: 220px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3086.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Jr0Nnwrk3\":{\"layout\":[\"fixed\",\"auto\"]},\"LLIxG055h\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-6kjyX\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3086.5,width:1200};addFonts(FrameraugiA20Il,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...NavbarNavbarComponentFonts,...TextTypewriterFonts,...CaseThumbnailFonts,...ButtonFonts,...FooterComponentFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jr0Nnwrk3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LLIxG055h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"3086.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["TextTypewriter", "props", "migratedProps", "migrateSpecificWords", "content", "specificWords", "font", "fontColor", "cursor", "effect", "Tag", "state", "setState", "ye", "fullContent", "se", "_specificWords_state_wordIndex", "updateState", "te", "prevState", "displayedContent", "isDeleting", "wordIndex", "ue", "timeoutId", "renderContent", "u", "l", "p", "motion", "CursorComponent", "addPropertyControls", "ControlType", "X", "isBlinking", "isMixedMargin", "marginValue", "cursorStyle", "word", "fontStore", "fonts", "css", "className", "NavbarNavbarComponentFonts", "getFonts", "QXsgQf2ii_default", "TextTypewriterFonts", "TextTypewriter", "MotionSectionWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "CaseThumbnailFonts", "yetnKvTBx_default", "ContainerWithFX", "withFX", "Container", "ButtonFonts", "q9eGoRpLZ_default", "MotionSectionWithFX", "ImageWithFX", "Image2", "MotionDivWithFX", "FooterComponentFonts", "n0851LZ5O_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "addImageAlt", "image", "alt", "animation5", "animation6", "animation7", "transition4", "animation8", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
