{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/FCYp8FRx320SWq9QcLcn/qpET2t2Z0ryTCtBpcD2G/magtext.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/bg3z37QfpoeLCEM8h92h/jP4H1RpQK1JXCRYHVVIM/Y6l9fcWWH.js", "ssg:https://framerusercontent.com/modules/28Fg7dzFZli5NavG1yqQ/StIKD5IaMrNtWA6xswmC/TSNz4d82Q.js", "ssg:https://framerusercontent.com/modules/MlIUSKQMiRri1QLTix1z/t1pXSDQG60IZYdxqQ0Ig/AeLCDuTgg.js", "ssg:https://framerusercontent.com/modules/b6vTBgwaaPmvCp7meoap/knGGoEG8zivkcF1q0dPW/B38XE_7GK.js", "ssg:https://framerusercontent.com/modules/gvNCF0WBhcaLzYlITBmi/bTGbNw4Kxaf5bagCjziu/c5vdl6CHa.js", "ssg:https://framerusercontent.com/modules/3IfYQciYKtW8uGBx44bT/7akvpKiryz9p3lGML7nI/L2kMxSaJr.js", "ssg:https://framerusercontent.com/modules/lqt0y28wueSm4mR3ovSy/WimwPfaFWaysv4LTVhyh/Text_Opacity_Letters.js", "ssg:https://framerusercontent.com/modules/xP3QlQzNaHUpYmI5Yo3s/1l12bIgFrg8Gz94OH1Pf/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion,useMotionTemplate,useSpring,useTransform,useMotionValue,useMotionValueEvent,transform}from\"framer-motion\";import{useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */ export default function MagText(props){const mouseX=useMotionValue(0);return /*#__PURE__*/ _jsx(\"div\",{style:{position:\"relative\",cursor:\"default\",whiteSpace:\"pre\",fontFamily:props.font.fontFamily,color:props.color,fontSize:props.font.fontSize,fontWeight:props.font.fontWeight,letterSpacing:props.font.letterSpacing,lineHeight:props.font.lineHeight},onMouseLeave:()=>{mouseX.set(Infinity);},onMouseMove:e=>{mouseX.set(e.clientX);},children:props.text.split(\"\").map((c,idx)=>/*#__PURE__*/ _jsx(Character,{c:c,mouseX:mouseX},idx))});};function Character({c,mouseX}){const ref=useRef(null);const scaleRange=[1,1.2];const scaleX=useSpring(1,{stiffness:350,damping:40});const w=useTransform(scaleX,scaleRange,[0,.07]);const padding=useTransform(scaleX,scaleRange,[0,.05]);const scaleY=useTransform(scaleX,scaleRange,[1,.95]);useMotionValueEvent(mouseX,\"change\",mx=>{if(ref.current){const{left,width}=ref.current.getBoundingClientRect();const characterCenter=left+width/2;const distance=Math.abs(characterCenter-mx);scaleX.set(transform(distance,[70,0],scaleRange));}});return /*#__PURE__*/ _jsx(motion.span,{ref:ref,style:{display:\"inline-block\",scaleX:scaleX,scaleY:scaleY,WebkitTextStrokeColor:\"currentColor\",WebkitTextStrokeWidth:useMotionTemplate`${w}em`,paddingInline:useMotionTemplate`${padding}em`},children:c});}MagText.displayName=\"MagText\";MagText.defaultProps={text:\"Colorless green ideas sleep furiously\",color:\"black\"};addPropertyControls(MagText,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"Colorless green ideas sleep furiously\",displayTextArea:true},font:{title:\"Font\",type:\"font\",controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#000\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MagText\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./magtext.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-iiEdR .framer-styles-preset-l8oj6h:not(.rich-text-wrapper), .framer-iiEdR .framer-styles-preset-l8oj6h.rich-text-wrapper h5 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, #121212); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-iiEdR\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"rKIFSpmeW\",\"jQqzF1uk3\"];const serializationHash=\"framer-tCckp\";const variantClassNames={jQqzF1uk3:\"framer-v-15flo08\",rKIFSpmeW:\"framer-v-6zrn01\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:120,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"rKIFSpmeW\",Hover:\"jQqzF1uk3\"};const getProps=({height,id,image01,image02,image03,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,BY9HrFMsc:(_ref=image02!==null&&image02!==void 0?image02:props.BY9HrFMsc)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg 4839w\"},DqhO2ouWf:(_ref1=image03!==null&&image03!==void 0?image03:props.DqhO2ouWf)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg 3508w\"},kR5kCkWxS:(_ref2=image01!==null&&image01!==void 0?image01:props.kR5kCkWxS)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg 3600w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"rKIFSpmeW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kR5kCkWxS,BY9HrFMsc,DqhO2ouWf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rKIFSpmeW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeavepksvv4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"rKIFSpmeW\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6zrn01\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"rKIFSpmeW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jQqzF1uk3:{\"data-framer-name\":\"Hover\",\"data-highlight\":true,onMouseLeave:onMouseLeavepksvv4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2846,intrinsicWidth:2427,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||124)- -50),pixelHeight:2846,pixelWidth:2427,sizes:\"124px\",...toResponsiveImage(kR5kCkWxS)},className:\"framer-1o8td3e\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AHs_yXg58\",...addPropertyOverrides({jQqzF1uk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2846,intrinsicWidth:2427,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2846,pixelWidth:2427,sizes:\"124px\",...toResponsiveImage(kR5kCkWxS)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3744,intrinsicWidth:5616,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||124)- -116),pixelHeight:3744,pixelWidth:5616,sizes:\"124px\",...toResponsiveImage(BY9HrFMsc)},className:\"framer-9ndkm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ypUdsuKwn\",...addPropertyOverrides({jQqzF1uk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3744,intrinsicWidth:5616,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:3744,pixelWidth:5616,sizes:\"124px\",...toResponsiveImage(BY9HrFMsc)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6240,intrinsicWidth:4160,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||124)- -146),pixelHeight:6240,pixelWidth:4160,sizes:\"124px\",...toResponsiveImage(DqhO2ouWf)},className:\"framer-r2ye62\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pDaa49YzF\",...addPropertyOverrides({jQqzF1uk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6240,intrinsicWidth:4160,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:6240,pixelWidth:4160,sizes:\"124px\",...toResponsiveImage(DqhO2ouWf)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tCckp.framer-tdqmsp, .framer-tCckp .framer-tdqmsp { display: block; }\",\".framer-tCckp.framer-6zrn01 { height: 124px; overflow: hidden; position: relative; width: 404px; }\",\".framer-tCckp .framer-1o8td3e { bottom: -174px; flex: none; height: 124px; left: 0px; overflow: hidden; position: absolute; width: 124px; }\",\".framer-tCckp .framer-9ndkm { bottom: -240px; flex: none; height: 124px; left: calc(50.00000000000002% - 124px / 2); overflow: hidden; position: absolute; width: 124px; }\",\".framer-tCckp .framer-r2ye62 { bottom: -270px; flex: none; height: 124px; overflow: hidden; position: absolute; right: 0px; width: 124px; }\",\".framer-tCckp.framer-v-15flo08 .framer-1o8td3e, .framer-tCckp.framer-v-15flo08 .framer-9ndkm, .framer-tCckp.framer-v-15flo08 .framer-r2ye62 { bottom: 0px; height: unset; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 124\n * @framerIntrinsicWidth 404\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jQqzF1uk3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"kR5kCkWxS\":\"image01\",\"BY9HrFMsc\":\"image02\",\"DqhO2ouWf\":\"image03\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTSNz4d82Q=withCSS(Component,css,\"framer-tCckp\");export default FramerTSNz4d82Q;FramerTSNz4d82Q.displayName=\"Project thumbs\";FramerTSNz4d82Q.defaultProps={height:124,width:404};addPropertyControls(FramerTSNz4d82Q,{variant:{options:[\"rKIFSpmeW\",\"jQqzF1uk3\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},kR5kCkWxS:{__defaultAssetReference:\"data:framer/asset-reference,Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?originalFilename=AIR+Lab+Door.jpg&preferredSize=auto\",title:\"Image 01\",type:ControlType.ResponsiveImage},BY9HrFMsc:{__defaultAssetReference:\"data:framer/asset-reference,IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?originalFilename=Wayfinding-3.jpg&preferredSize=auto\",title:\"Image 02\",type:ControlType.ResponsiveImage},DqhO2ouWf:{__defaultAssetReference:\"data:framer/asset-reference,SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?originalFilename=Starling+Air+Shuttle_NYC.jpg&preferredSize=auto\",title:\"Image 03\",type:ControlType.ResponsiveImage}});addFonts(FramerTSNz4d82Q,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTSNz4d82Q\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"404\",\"framerIntrinsicHeight\":\"124\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jQqzF1uk3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"kR5kCkWxS\\\":\\\"image01\\\",\\\"BY9HrFMsc\\\":\\\"image02\\\",\\\"DqhO2ouWf\\\":\\\"image03\\\"}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TSNz4d82Q.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aWXljufnBVg73Jan2Lvx/H5xTOhr8TQBkxSypUAN5/QEKZ8KU_L.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bg3z37QfpoeLCEM8h92h/jP4H1RpQK1JXCRYHVVIM/Y6l9fcWWH.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/yzssj52jyzdn9PNdd7UE/zOeue0kOjUEluPqtDUke/zg1gdjdoa.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hrYHVjeTzOdAYEmuqPrS/CtyviYsxsJEf3kyp0ZqZ/ZGd6dLMl7.js\";import ProjectThumbs from\"https://framerusercontent.com/modules/28Fg7dzFZli5NavG1yqQ/StIKD5IaMrNtWA6xswmC/TSNz4d82Q.js\";const ProjectThumbsFonts=getFonts(ProjectThumbs);const enabledGestures={FARptUIAb:{hover:true},kBjpCfXAQ:{hover:true},xmTcWAE8D:{hover:true}};const cycleOrder=[\"kBjpCfXAQ\",\"xmTcWAE8D\",\"FARptUIAb\"];const serializationHash=\"framer-W53iL\";const variantClassNames={FARptUIAb:\"framer-v-a1bprz\",kBjpCfXAQ:\"framer-v-1gzkbf\",xmTcWAE8D:\"framer-v-fphw33\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"kBjpCfXAQ\",Mobile:\"FARptUIAb\",Tablet:\"xmTcWAE8D\"};const getProps=({height,id,image01,image02,image03,link,service,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,AYLlncu8l:(_ref=title!==null&&title!==void 0?title:props.AYLlncu8l)!==null&&_ref!==void 0?_ref:\"SVA BRANDING\",bxxQjGUla:link!==null&&link!==void 0?link:props.bxxQjGUla,Iuf8JZ8nG:(_ref1=image02!==null&&image02!==void 0?image02:props.Iuf8JZ8nG)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg 5616w\"},PDmcbYEEw:(_ref2=image03!==null&&image03!==void 0?image03:props.PDmcbYEEw)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg 4160w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"kBjpCfXAQ\",z0BGfgt2V:(_ref4=image01!==null&&image01!==void 0?image01:props.z0BGfgt2V)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg 2427w\"},zch0B1Ts_:(_ref5=service!==null&&service!==void 0?service:props.zch0B1Ts_)!==null&&_ref5!==void 0?_ref5:\"Website Design\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AYLlncu8l,zch0B1Ts_,z0BGfgt2V,Iuf8JZ8nG,PDmcbYEEw,bxxQjGUla,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kBjpCfXAQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1g8u5ft=activeVariantCallback(async(...args)=>{setVariant(\"FARptUIAb\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"FARptUIAb-hover\")return true;if(baseVariant===\"FARptUIAb\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"FARptUIAb-hover\")return false;if(baseVariant===\"FARptUIAb\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"xmTcWAE8D-hover\")return false;if(baseVariant===\"xmTcWAE8D\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bxxQjGUla,nodeId:\"kBjpCfXAQ\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1gzkbf\",className,classNames)} framer-1xy6n0e`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"kBjpCfXAQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"FARptUIAb-hover\":{\"data-framer-name\":undefined},\"kBjpCfXAQ-hover\":{\"data-framer-name\":undefined},\"xmTcWAE8D-hover\":{\"data-framer-name\":undefined},FARptUIAb:{\"data-framer-name\":\"Mobile\"},xmTcWAE8D:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-kt168c\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UJVKE7wAr\",onTap:onTap1g8u5ft,style:{backgroundColor:\"var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19wd655\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UJVKE7wArW9cCGd2kk\",onTap:onTap1g8u5ft,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-l8oj6h\",\"data-styles-preset\":\"Y6l9fcWWH\",children:\"SVA Branding\"})}),className:\"framer-1qgdso1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UJVKE7wArZYBdzLU7N\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sgo8ze\",\"data-styles-preset\":\"QEKZ8KU_L\",style:{\"--framer-text-alignment\":\"right\"},children:\"Website Design\"})}),className:\"framer-1vcclps\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bJ7BAfhH2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zch0B1Ts_,verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pfxs65\",layoutDependency:layoutDependency,layoutId:\"augofK8La\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wlnnrz\",\"data-styles-preset\":\"ZGd6dLMl7\",children:\"PORTO\"})}),className:\"framer-1ggg83x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eQSd0xQmc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AYLlncu8l,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ukh24\",layoutDependency:layoutDependency,layoutId:\"ABiY714vp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ivyy8i\",\"data-styles-preset\":\"zg1gdjdoa\",children:\"Design & development\"})}),className:\"framer-t5d2u6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LV6A4OKJW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zch0B1Ts_,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-30)/2)+0+38.8,...addPropertyOverrides({\"kBjpCfXAQ-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-124)/2)+0+-14210854715202004e-30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-147mqen-container\",layoutDependency:layoutDependency,layoutId:\"Fqw3tRVkc-container\",children:/*#__PURE__*/_jsx(ProjectThumbs,{BY9HrFMsc:toResponsiveImage(Iuf8JZ8nG),DqhO2ouWf:toResponsiveImage(PDmcbYEEw),height:\"100%\",id:\"Fqw3tRVkc\",kR5kCkWxS:toResponsiveImage(z0BGfgt2V),layoutId:\"Fqw3tRVkc\",variant:\"rKIFSpmeW\",width:\"100%\",...addPropertyOverrides({\"kBjpCfXAQ-hover\":{variant:\"jQqzF1uk3\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W53iL.framer-1xy6n0e, .framer-W53iL .framer-1xy6n0e { display: block; }\",\".framer-W53iL.framer-1gzkbf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: 236px; justify-content: space-between; overflow: hidden; padding: 80px 64px 80px 64px; position: relative; text-decoration: none; width: 1168px; }\",\".framer-W53iL .framer-kt168c { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: min-content; }\",\".framer-W53iL .framer-19wd655 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-W53iL .framer-1qgdso1, .framer-W53iL .framer-1ggg83x, .framer-W53iL .framer-t5d2u6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-W53iL .framer-1vcclps { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 122px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-W53iL .framer-pfxs65 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W53iL .framer-19ukh24 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-W53iL .framer-147mqen-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W53iL .framer-kt168c, .framer-W53iL .framer-19wd655, .framer-W53iL .framer-pfxs65, .framer-W53iL .framer-19ukh24 { gap: 0px; } .framer-W53iL .framer-kt168c > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-W53iL .framer-kt168c > :first-child, .framer-W53iL .framer-19wd655 > :first-child { margin-left: 0px; } .framer-W53iL .framer-kt168c > :last-child, .framer-W53iL .framer-19wd655 > :last-child { margin-right: 0px; } .framer-W53iL .framer-19wd655 > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-W53iL .framer-pfxs65 > *, .framer-W53iL .framer-19ukh24 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W53iL .framer-pfxs65 > :first-child, .framer-W53iL .framer-19ukh24 > :first-child { margin-top: 0px; } .framer-W53iL .framer-pfxs65 > :last-child, .framer-W53iL .framer-19ukh24 > :last-child { margin-bottom: 0px; } }\",\".framer-W53iL.framer-v-fphw33.framer-1gzkbf { height: min-content; padding: 32px; width: 745px; }\",\".framer-W53iL.framer-v-fphw33 .framer-pfxs65 { flex-direction: row; }\",\".framer-W53iL.framer-v-fphw33 .framer-19ukh24 { align-content: flex-start; align-items: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W53iL.framer-v-fphw33 .framer-pfxs65 { gap: 0px; } .framer-W53iL.framer-v-fphw33 .framer-pfxs65 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-W53iL.framer-v-fphw33 .framer-pfxs65 > :first-child { margin-left: 0px; } .framer-W53iL.framer-v-fphw33 .framer-pfxs65 > :last-child { margin-right: 0px; } }\",\".framer-W53iL.framer-v-a1bprz.framer-1gzkbf { height: 90px; padding: 32px 0px 32px 0px; width: 360px; }\",\".framer-W53iL.framer-v-a1bprz .framer-kt168c { order: 2; }\",\".framer-W53iL.framer-v-1gzkbf.hover .framer-19ukh24 { height: 124px; justify-content: flex-end; }\",\".framer-W53iL.framer-v-fphw33.hover .framer-pfxs65 { padding: 0px 0px 0px 32px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 236\n * @framerIntrinsicWidth 1168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xmTcWAE8D\":{\"layout\":[\"fixed\",\"auto\"]},\"FARptUIAb\":{\"layout\":[\"fixed\",\"fixed\"]},\"tNqVgEqOX\":{\"layout\":[\"fixed\",\"fixed\"]},\"zZmYZxKmQ\":{\"layout\":[\"fixed\",\"auto\"]},\"Zm1aHtDie\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AYLlncu8l\":\"title\",\"zch0B1Ts_\":\"service\",\"z0BGfgt2V\":\"image01\",\"Iuf8JZ8nG\":\"image02\",\"PDmcbYEEw\":\"image03\",\"bxxQjGUla\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAeLCDuTgg=withCSS(Component,css,\"framer-W53iL\");export default FramerAeLCDuTgg;FramerAeLCDuTgg.displayName=\"Works_SVA-Website\";FramerAeLCDuTgg.defaultProps={height:236,width:1168};addPropertyControls(FramerAeLCDuTgg,{variant:{options:[\"kBjpCfXAQ\",\"xmTcWAE8D\",\"FARptUIAb\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},AYLlncu8l:{defaultValue:\"SVA BRANDING\",displayTextArea:false,title:\"Title\",type:ControlType.String},zch0B1Ts_:{defaultValue:\"Website Design\",displayTextArea:false,title:\"Service\",type:ControlType.String},z0BGfgt2V:{__defaultAssetReference:\"data:framer/asset-reference,QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?originalFilename=photo-1541130292430-a832637ddc0d%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxlZGl0b3JpYWx8ZW58MHx8fHwxNzA5OTE4ODU1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 01\",type:ControlType.ResponsiveImage},Iuf8JZ8nG:{__defaultAssetReference:\"data:framer/asset-reference,fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?originalFilename=photo-1554302384-05e2ba3e2054%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxlZGl0b3JpYWx8ZW58MHx8fHwxNzA5OTE4ODU1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 02\",type:ControlType.ResponsiveImage},PDmcbYEEw:{__defaultAssetReference:\"data:framer/asset-reference,UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?originalFilename=photo-1639048759615-02ab82ae5fe7%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMXx8ZWRpdG9yaWFsfGVufDB8fHx8MTcwOTkxODg1NXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 03\",type:ControlType.ResponsiveImage},bxxQjGUla:{title:\"Link\",type:ControlType.Link}});addFonts(FramerAeLCDuTgg,[{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\"}]},...ProjectThumbsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAeLCDuTgg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xmTcWAE8D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FARptUIAb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tNqVgEqOX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zZmYZxKmQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zm1aHtDie\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"236\",\"framerVariables\":\"{\\\"AYLlncu8l\\\":\\\"title\\\",\\\"zch0B1Ts_\\\":\\\"service\\\",\\\"z0BGfgt2V\\\":\\\"image01\\\",\\\"Iuf8JZ8nG\\\":\\\"image02\\\",\\\"PDmcbYEEw\\\":\\\"image03\\\",\\\"bxxQjGUla\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1168\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AeLCDuTgg.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aWXljufnBVg73Jan2Lvx/H5xTOhr8TQBkxSypUAN5/QEKZ8KU_L.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bg3z37QfpoeLCEM8h92h/jP4H1RpQK1JXCRYHVVIM/Y6l9fcWWH.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/yzssj52jyzdn9PNdd7UE/zOeue0kOjUEluPqtDUke/zg1gdjdoa.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hrYHVjeTzOdAYEmuqPrS/CtyviYsxsJEf3kyp0ZqZ/ZGd6dLMl7.js\";import ProjectThumbs from\"https://framerusercontent.com/modules/28Fg7dzFZli5NavG1yqQ/StIKD5IaMrNtWA6xswmC/TSNz4d82Q.js\";const ProjectThumbsFonts=getFonts(ProjectThumbs);const enabledGestures={g_HyVPmkX:{hover:true},i6ygj7zuk:{hover:true},VyazIoUEH:{hover:true}};const cycleOrder=[\"VyazIoUEH\",\"g_HyVPmkX\",\"i6ygj7zuk\"];const serializationHash=\"framer-TCaGX\";const variantClassNames={g_HyVPmkX:\"framer-v-1sdwn0i\",i6ygj7zuk:\"framer-v-9fzmsr\",VyazIoUEH:\"framer-v-25napx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"VyazIoUEH\",Mobile:\"i6ygj7zuk\",Tablet:\"g_HyVPmkX\"};const getProps=({height,id,image01,image02,image03,link,service,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,AYLlncu8l:(_ref=title!==null&&title!==void 0?title:props.AYLlncu8l)!==null&&_ref!==void 0?_ref:\"THESIS VIDEOS\",bxxQjGUla:link!==null&&link!==void 0?link:props.bxxQjGUla,Iuf8JZ8nG:(_ref1=image02!==null&&image02!==void 0?image02:props.Iuf8JZ8nG)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg 5616w\"},PDmcbYEEw:(_ref2=image03!==null&&image03!==void 0?image03:props.PDmcbYEEw)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg 4160w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"VyazIoUEH\",z0BGfgt2V:(_ref4=image01!==null&&image01!==void 0?image01:props.z0BGfgt2V)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg 2427w\"},zch0B1Ts_:(_ref5=service!==null&&service!==void 0?service:props.zch0B1Ts_)!==null&&_ref5!==void 0?_ref5:\"Creative Direction\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AYLlncu8l,zch0B1Ts_,z0BGfgt2V,Iuf8JZ8nG,PDmcbYEEw,bxxQjGUla,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VyazIoUEH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"i6ygj7zuk-hover\")return true;if(baseVariant===\"i6ygj7zuk\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"i6ygj7zuk-hover\")return false;if(baseVariant===\"i6ygj7zuk\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"g_HyVPmkX-hover\")return false;if(baseVariant===\"g_HyVPmkX\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bxxQjGUla,nodeId:\"VyazIoUEH\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-25napx\",className,classNames)} framer-kjqtfm`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"VyazIoUEH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"g_HyVPmkX-hover\":{\"data-framer-name\":undefined},\"i6ygj7zuk-hover\":{\"data-framer-name\":undefined},\"VyazIoUEH-hover\":{\"data-framer-name\":undefined},g_HyVPmkX:{\"data-framer-name\":\"Tablet\"},i6ygj7zuk:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o0pn8v\",layoutDependency:layoutDependency,layoutId:\"mvZ88QjMoW9cCGd2kk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-l8oj6h\",\"data-styles-preset\":\"Y6l9fcWWH\",children:\"thesis videos\"})}),className:\"framer-iqhkz6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mvZ88QjMoZYBdzLU7N\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sgo8ze\",\"data-styles-preset\":\"QEKZ8KU_L\",children:\"Creative Direction\"})}),className:\"framer-1dsf3il\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mvZ88QjMoUP68j2a31\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vyctsn\",layoutDependency:layoutDependency,layoutId:\"Ode40sbm4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wlnnrz\",\"data-styles-preset\":\"ZGd6dLMl7\",children:\"PORTO\"})}),className:\"framer-1vdauuo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"felqdFQ9g\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AYLlncu8l,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p1r4bq\",layoutDependency:layoutDependency,layoutId:\"xzh1VI7v7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ivyy8i\",\"data-styles-preset\":\"zg1gdjdoa\",children:\"Design & development\"})}),className:\"framer-jjbyi4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FKW_UNAvI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zch0B1Ts_,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-30)/2)+0+38.8,...addPropertyOverrides({\"VyazIoUEH-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-124)/2)+0+-14210854715202004e-30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r8b1k6-container\",layoutDependency:layoutDependency,layoutId:\"PYxQQbJdp-container\",children:/*#__PURE__*/_jsx(ProjectThumbs,{BY9HrFMsc:toResponsiveImage(Iuf8JZ8nG),DqhO2ouWf:toResponsiveImage(PDmcbYEEw),height:\"100%\",id:\"PYxQQbJdp\",kR5kCkWxS:toResponsiveImage(z0BGfgt2V),layoutId:\"PYxQQbJdp\",variant:\"rKIFSpmeW\",width:\"100%\",...addPropertyOverrides({\"VyazIoUEH-hover\":{variant:\"jQqzF1uk3\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TCaGX.framer-kjqtfm, .framer-TCaGX .framer-kjqtfm { display: block; }\",\".framer-TCaGX.framer-25napx { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: 236px; justify-content: space-between; overflow: hidden; padding: 80px 64px 80px 64px; position: relative; text-decoration: none; width: 1168px; }\",\".framer-TCaGX .framer-o0pn8v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TCaGX .framer-iqhkz6, .framer-TCaGX .framer-1vdauuo, .framer-TCaGX .framer-jjbyi4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-TCaGX .framer-1dsf3il { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TCaGX .framer-vyctsn { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TCaGX .framer-p1r4bq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TCaGX .framer-1r8b1k6-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCaGX .framer-o0pn8v, .framer-TCaGX .framer-vyctsn, .framer-TCaGX .framer-p1r4bq { gap: 0px; } .framer-TCaGX .framer-o0pn8v > * { margin: 0px; margin-left: calc(41px / 2); margin-right: calc(41px / 2); } .framer-TCaGX .framer-o0pn8v > :first-child { margin-left: 0px; } .framer-TCaGX .framer-o0pn8v > :last-child { margin-right: 0px; } .framer-TCaGX .framer-vyctsn > *, .framer-TCaGX .framer-p1r4bq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TCaGX .framer-vyctsn > :first-child, .framer-TCaGX .framer-p1r4bq > :first-child { margin-top: 0px; } .framer-TCaGX .framer-vyctsn > :last-child, .framer-TCaGX .framer-p1r4bq > :last-child { margin-bottom: 0px; } }\",\".framer-TCaGX.framer-v-1sdwn0i.framer-25napx { height: min-content; padding: 32px; width: 810px; }\",\".framer-TCaGX.framer-v-1sdwn0i .framer-vyctsn { flex-direction: row; }\",\".framer-TCaGX.framer-v-1sdwn0i .framer-p1r4bq { align-content: flex-start; align-items: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCaGX.framer-v-1sdwn0i .framer-vyctsn { gap: 0px; } .framer-TCaGX.framer-v-1sdwn0i .framer-vyctsn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TCaGX.framer-v-1sdwn0i .framer-vyctsn > :first-child { margin-left: 0px; } .framer-TCaGX.framer-v-1sdwn0i .framer-vyctsn > :last-child { margin-right: 0px; } }\",\".framer-TCaGX.framer-v-9fzmsr.framer-25napx { height: 90px; padding: 32px 0px 32px 0px; width: 360px; }\",\".framer-TCaGX.framer-v-25napx.hover .framer-p1r4bq { height: 124px; justify-content: flex-end; }\",\".framer-TCaGX.framer-v-1sdwn0i.hover .framer-vyctsn { padding: 0px 0px 0px 32px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 236\n * @framerIntrinsicWidth 1168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"g_HyVPmkX\":{\"layout\":[\"fixed\",\"auto\"]},\"i6ygj7zuk\":{\"layout\":[\"fixed\",\"fixed\"]},\"b1VQtGFxw\":{\"layout\":[\"fixed\",\"fixed\"]},\"sBd6SlxJx\":{\"layout\":[\"fixed\",\"auto\"]},\"FwhLP1LiI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AYLlncu8l\":\"title\",\"zch0B1Ts_\":\"service\",\"z0BGfgt2V\":\"image01\",\"Iuf8JZ8nG\":\"image02\",\"PDmcbYEEw\":\"image03\",\"bxxQjGUla\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB38XE_7GK=withCSS(Component,css,\"framer-TCaGX\");export default FramerB38XE_7GK;FramerB38XE_7GK.displayName=\"Works_SVA-Thesis\";FramerB38XE_7GK.defaultProps={height:236,width:1168};addPropertyControls(FramerB38XE_7GK,{variant:{options:[\"VyazIoUEH\",\"g_HyVPmkX\",\"i6ygj7zuk\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},AYLlncu8l:{defaultValue:\"THESIS VIDEOS\",displayTextArea:false,title:\"Title\",type:ControlType.String},zch0B1Ts_:{defaultValue:\"Creative Direction\",displayTextArea:false,title:\"Service\",type:ControlType.String},z0BGfgt2V:{__defaultAssetReference:\"data:framer/asset-reference,QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?originalFilename=photo-1541130292430-a832637ddc0d%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxlZGl0b3JpYWx8ZW58MHx8fHwxNzA5OTE4ODU1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 01\",type:ControlType.ResponsiveImage},Iuf8JZ8nG:{__defaultAssetReference:\"data:framer/asset-reference,fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?originalFilename=photo-1554302384-05e2ba3e2054%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxlZGl0b3JpYWx8ZW58MHx8fHwxNzA5OTE4ODU1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 02\",type:ControlType.ResponsiveImage},PDmcbYEEw:{__defaultAssetReference:\"data:framer/asset-reference,UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?originalFilename=photo-1639048759615-02ab82ae5fe7%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMXx8ZWRpdG9yaWFsfGVufDB8fHx8MTcwOTkxODg1NXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 03\",type:ControlType.ResponsiveImage},bxxQjGUla:{title:\"Link\",type:ControlType.Link}});addFonts(FramerB38XE_7GK,[{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\"}]},...ProjectThumbsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB38XE_7GK\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1168\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"AYLlncu8l\\\":\\\"title\\\",\\\"zch0B1Ts_\\\":\\\"service\\\",\\\"z0BGfgt2V\\\":\\\"image01\\\",\\\"Iuf8JZ8nG\\\":\\\"image02\\\",\\\"PDmcbYEEw\\\":\\\"image03\\\",\\\"bxxQjGUla\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g_HyVPmkX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i6ygj7zuk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b1VQtGFxw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sBd6SlxJx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FwhLP1LiI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"236\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B38XE_7GK.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aWXljufnBVg73Jan2Lvx/H5xTOhr8TQBkxSypUAN5/QEKZ8KU_L.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bg3z37QfpoeLCEM8h92h/jP4H1RpQK1JXCRYHVVIM/Y6l9fcWWH.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/yzssj52jyzdn9PNdd7UE/zOeue0kOjUEluPqtDUke/zg1gdjdoa.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hrYHVjeTzOdAYEmuqPrS/CtyviYsxsJEf3kyp0ZqZ/ZGd6dLMl7.js\";import ProjectThumbs from\"https://framerusercontent.com/modules/28Fg7dzFZli5NavG1yqQ/StIKD5IaMrNtWA6xswmC/TSNz4d82Q.js\";const ProjectThumbsFonts=getFonts(ProjectThumbs);const enabledGestures={a9sutLmys:{hover:true},KQUtd1KgP:{hover:true},oPVcGFoEC:{hover:true}};const cycleOrder=[\"oPVcGFoEC\",\"a9sutLmys\",\"KQUtd1KgP\"];const serializationHash=\"framer-Ryysy\";const variantClassNames={a9sutLmys:\"framer-v-ei16ju\",KQUtd1KgP:\"framer-v-wz5tv9\",oPVcGFoEC:\"framer-v-1obarwq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"oPVcGFoEC\",Mobile:\"KQUtd1KgP\",Tablet:\"a9sutLmys\"};const getProps=({height,id,image01,image02,image03,link,service,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,AYLlncu8l:(_ref=title!==null&&title!==void 0?title:props.AYLlncu8l)!==null&&_ref!==void 0?_ref:\"CANNCESTRA\",bxxQjGUla:link!==null&&link!==void 0?link:props.bxxQjGUla,Iuf8JZ8nG:(_ref1=image02!==null&&image02!==void 0?image02:props.Iuf8JZ8nG)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg 5616w\"},PDmcbYEEw:(_ref2=image03!==null&&image03!==void 0?image03:props.PDmcbYEEw)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg 4160w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"oPVcGFoEC\",z0BGfgt2V:(_ref4=image01!==null&&image01!==void 0?image01:props.z0BGfgt2V)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QrMZ3JOsvRAR0cFAeUnjwqE0.jpg 2427w\"},zch0B1Ts_:(_ref5=service!==null&&service!==void 0?service:props.zch0B1Ts_)!==null&&_ref5!==void 0?_ref5:\"Branding\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AYLlncu8l,zch0B1Ts_,z0BGfgt2V,Iuf8JZ8nG,PDmcbYEEw,bxxQjGUla,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oPVcGFoEC\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"KQUtd1KgP-hover\")return true;if(baseVariant===\"KQUtd1KgP\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"KQUtd1KgP-hover\")return false;if(baseVariant===\"KQUtd1KgP\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"a9sutLmys-hover\")return false;if(baseVariant===\"a9sutLmys\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bxxQjGUla,nodeId:\"oPVcGFoEC\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1obarwq\",className,classNames)} framer-1jma4h2`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oPVcGFoEC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"a9sutLmys-hover\":{\"data-framer-name\":undefined},\"KQUtd1KgP-hover\":{\"data-framer-name\":undefined},\"oPVcGFoEC-hover\":{\"data-framer-name\":undefined},a9sutLmys:{\"data-framer-name\":\"Tablet\"},KQUtd1KgP:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x4brvv\",layoutDependency:layoutDependency,layoutId:\"MsDBxRYF4W9cCGd2kk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-l8oj6h\",\"data-styles-preset\":\"Y6l9fcWWH\",children:\"Canncestra\"})}),className:\"framer-1ubzl3m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MsDBxRYF4ZYBdzLU7N\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sgo8ze\",\"data-styles-preset\":\"QEKZ8KU_L\",children:\"Branding\"})}),className:\"framer-bbiaoi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MsDBxRYF4UP68j2a31\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-kiu7x1\",layoutDependency:layoutDependency,layoutId:\"B5NDV2veE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wlnnrz\",\"data-styles-preset\":\"ZGd6dLMl7\",children:\"PORTO\"})}),className:\"framer-1wha6bh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZE5_AFVKg\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AYLlncu8l,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zywlwd\",layoutDependency:layoutDependency,layoutId:\"G2wXIk0W5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ivyy8i\",\"data-styles-preset\":\"zg1gdjdoa\",children:\"Design & development\"})}),className:\"framer-vvhg64\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V9vcczqaJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zch0B1Ts_,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-30)/2)+0+38.8,...addPropertyOverrides({\"oPVcGFoEC-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-124)/2)+0+-14210854715202004e-30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18h3ybr-container\",layoutDependency:layoutDependency,layoutId:\"fJqMLhrn2-container\",children:/*#__PURE__*/_jsx(ProjectThumbs,{BY9HrFMsc:toResponsiveImage(Iuf8JZ8nG),DqhO2ouWf:toResponsiveImage(PDmcbYEEw),height:\"100%\",id:\"fJqMLhrn2\",kR5kCkWxS:toResponsiveImage(z0BGfgt2V),layoutId:\"fJqMLhrn2\",variant:\"rKIFSpmeW\",width:\"100%\",...addPropertyOverrides({\"oPVcGFoEC-hover\":{variant:\"jQqzF1uk3\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ryysy.framer-1jma4h2, .framer-Ryysy .framer-1jma4h2 { display: block; }\",\".framer-Ryysy.framer-1obarwq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: 236px; justify-content: space-between; overflow: hidden; padding: 80px 64px 80px 64px; position: relative; text-decoration: none; width: 1168px; }\",\".framer-Ryysy .framer-1x4brvv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 114px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ryysy .framer-1ubzl3m, .framer-Ryysy .framer-1wha6bh, .framer-Ryysy .framer-vvhg64 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-Ryysy .framer-bbiaoi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ryysy .framer-kiu7x1 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ryysy .framer-zywlwd { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Ryysy .framer-18h3ybr-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ryysy .framer-1x4brvv, .framer-Ryysy .framer-kiu7x1, .framer-Ryysy .framer-zywlwd { gap: 0px; } .framer-Ryysy .framer-1x4brvv > * { margin: 0px; margin-left: calc(114px / 2); margin-right: calc(114px / 2); } .framer-Ryysy .framer-1x4brvv > :first-child { margin-left: 0px; } .framer-Ryysy .framer-1x4brvv > :last-child { margin-right: 0px; } .framer-Ryysy .framer-kiu7x1 > *, .framer-Ryysy .framer-zywlwd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Ryysy .framer-kiu7x1 > :first-child, .framer-Ryysy .framer-zywlwd > :first-child { margin-top: 0px; } .framer-Ryysy .framer-kiu7x1 > :last-child, .framer-Ryysy .framer-zywlwd > :last-child { margin-bottom: 0px; } }\",\".framer-Ryysy.framer-v-ei16ju.framer-1obarwq { height: min-content; padding: 32px; width: 810px; }\",\".framer-Ryysy.framer-v-ei16ju .framer-kiu7x1 { flex-direction: row; }\",\".framer-Ryysy.framer-v-ei16ju .framer-zywlwd { align-content: flex-start; align-items: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ryysy.framer-v-ei16ju .framer-kiu7x1 { gap: 0px; } .framer-Ryysy.framer-v-ei16ju .framer-kiu7x1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ryysy.framer-v-ei16ju .framer-kiu7x1 > :first-child { margin-left: 0px; } .framer-Ryysy.framer-v-ei16ju .framer-kiu7x1 > :last-child { margin-right: 0px; } }\",\".framer-Ryysy.framer-v-wz5tv9.framer-1obarwq { height: 90px; padding: 32px 0px 32px 0px; width: 360px; }\",\".framer-Ryysy.framer-v-1obarwq.hover .framer-zywlwd { height: 124px; justify-content: flex-end; }\",\".framer-Ryysy.framer-v-ei16ju.hover .framer-kiu7x1 { padding: 0px 0px 0px 32px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 236\n * @framerIntrinsicWidth 1168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a9sutLmys\":{\"layout\":[\"fixed\",\"auto\"]},\"KQUtd1KgP\":{\"layout\":[\"fixed\",\"fixed\"]},\"g_rpIlHGZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"GAcsG_CC9\":{\"layout\":[\"fixed\",\"auto\"]},\"YIcogey1v\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AYLlncu8l\":\"title\",\"zch0B1Ts_\":\"service\",\"z0BGfgt2V\":\"image01\",\"Iuf8JZ8nG\":\"image02\",\"PDmcbYEEw\":\"image03\",\"bxxQjGUla\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc5vdl6CHa=withCSS(Component,css,\"framer-Ryysy\");export default Framerc5vdl6CHa;Framerc5vdl6CHa.displayName=\"Works_Canncestra\";Framerc5vdl6CHa.defaultProps={height:236,width:1168};addPropertyControls(Framerc5vdl6CHa,{variant:{options:[\"oPVcGFoEC\",\"a9sutLmys\",\"KQUtd1KgP\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},AYLlncu8l:{defaultValue:\"CANNCESTRA\",description:\"\",displayTextArea:false,title:\"Title\",type:ControlType.String},zch0B1Ts_:{defaultValue:\"Branding\",displayTextArea:false,title:\"Service\",type:ControlType.String},z0BGfgt2V:{__defaultAssetReference:\"data:framer/asset-reference,QrMZ3JOsvRAR0cFAeUnjwqE0.jpg?originalFilename=photo-1541130292430-a832637ddc0d%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxlZGl0b3JpYWx8ZW58MHx8fHwxNzA5OTE4ODU1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 01\",type:ControlType.ResponsiveImage},Iuf8JZ8nG:{__defaultAssetReference:\"data:framer/asset-reference,fZ04UAg5iRUUcAzuRBiIuIBGJo.jpg?originalFilename=photo-1554302384-05e2ba3e2054%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxlZGl0b3JpYWx8ZW58MHx8fHwxNzA5OTE4ODU1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 02\",type:ControlType.ResponsiveImage},PDmcbYEEw:{__defaultAssetReference:\"data:framer/asset-reference,UYZC4HNSoPlZu6Ah4Bl0Uutrtw.jpg?originalFilename=photo-1639048759615-02ab82ae5fe7%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMXx8ZWRpdG9yaWFsfGVufDB8fHx8MTcwOTkxODg1NXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 03\",type:ControlType.ResponsiveImage},bxxQjGUla:{title:\"Link\",type:ControlType.Link}});addFonts(Framerc5vdl6CHa,[{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\"}]},...ProjectThumbsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc5vdl6CHa\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"236\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"AYLlncu8l\\\":\\\"title\\\",\\\"zch0B1Ts_\\\":\\\"service\\\",\\\"z0BGfgt2V\\\":\\\"image01\\\",\\\"Iuf8JZ8nG\\\":\\\"image02\\\",\\\"PDmcbYEEw\\\":\\\"image03\\\",\\\"bxxQjGUla\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a9sutLmys\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KQUtd1KgP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g_rpIlHGZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GAcsG_CC9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YIcogey1v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1168\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./c5vdl6CHa.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/aWXljufnBVg73Jan2Lvx/H5xTOhr8TQBkxSypUAN5/QEKZ8KU_L.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bg3z37QfpoeLCEM8h92h/jP4H1RpQK1JXCRYHVVIM/Y6l9fcWWH.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/yzssj52jyzdn9PNdd7UE/zOeue0kOjUEluPqtDUke/zg1gdjdoa.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hrYHVjeTzOdAYEmuqPrS/CtyviYsxsJEf3kyp0ZqZ/ZGd6dLMl7.js\";import ProjectThumbs from\"https://framerusercontent.com/modules/28Fg7dzFZli5NavG1yqQ/StIKD5IaMrNtWA6xswmC/TSNz4d82Q.js\";const ProjectThumbsFonts=getFonts(ProjectThumbs);const enabledGestures={lHxZ30ase:{hover:true},PnGJ9vlGw:{hover:true},zQ6RH074O:{hover:true}};const cycleOrder=[\"lHxZ30ase\",\"zQ6RH074O\",\"PnGJ9vlGw\"];const serializationHash=\"framer-S1lkO\";const variantClassNames={lHxZ30ase:\"framer-v-4gpsqw\",PnGJ9vlGw:\"framer-v-sw2laq\",zQ6RH074O:\"framer-v-1v4lv7n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"lHxZ30ase\",Mobile:\"PnGJ9vlGw\",Tablet:\"zQ6RH074O\"};const getProps=({boeing,height,id,image01,image02,image03,link,service,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,AYLlncu8l:(_ref=boeing!==null&&boeing!==void 0?boeing:props.AYLlncu8l)!==null&&_ref!==void 0?_ref:\"BOEING\",bxxQjGUla:link!==null&&link!==void 0?link:props.bxxQjGUla,Iuf8JZ8nG:(_ref1=image02!==null&&image02!==void 0?image02:props.Iuf8JZ8nG)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IWZHdaf8qgpuxBncomTS6cCmk5s.jpg 4839w\"},PDmcbYEEw:(_ref2=image03!==null&&image03!==void 0?image03:props.PDmcbYEEw)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg 3508w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"lHxZ30ase\",z0BGfgt2V:(_ref4=image01!==null&&image01!==void 0?image01:props.z0BGfgt2V)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg 3600w\"},zch0B1Ts_:(_ref5=service!==null&&service!==void 0?service:props.zch0B1Ts_)!==null&&_ref5!==void 0?_ref5:\"Case Study\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AYLlncu8l,zch0B1Ts_,z0BGfgt2V,Iuf8JZ8nG,PDmcbYEEw,bxxQjGUla,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lHxZ30ase\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"PnGJ9vlGw-hover\")return true;if(baseVariant===\"PnGJ9vlGw\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"PnGJ9vlGw-hover\")return false;if(baseVariant===\"PnGJ9vlGw\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"zQ6RH074O-hover\")return false;if(baseVariant===\"zQ6RH074O\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bxxQjGUla,nodeId:\"lHxZ30ase\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-4gpsqw\",className,classNames)} framer-6rmr4x`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"lHxZ30ase\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"lHxZ30ase-hover\":{\"data-framer-name\":undefined},\"PnGJ9vlGw-hover\":{\"data-framer-name\":undefined},\"zQ6RH074O-hover\":{\"data-framer-name\":undefined},PnGJ9vlGw:{\"data-framer-name\":\"Mobile\"},zQ6RH074O:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10xfshh\",layoutDependency:layoutDependency,layoutId:\"W9cCGd2kk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wlnnrz\",\"data-styles-preset\":\"ZGd6dLMl7\",children:\"PORTO\"})}),className:\"framer-1wt8i8r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZYBdzLU7N\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AYLlncu8l,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PnGJ9vlGw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-l8oj6h\",\"data-styles-preset\":\"Y6l9fcWWH\",children:\"PORTO\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sgo8ze\",\"data-styles-preset\":\"QEKZ8KU_L\",children:\"Case Study\"})}),className:\"framer-n2706h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UP68j2a31\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14thmus\",layoutDependency:layoutDependency,layoutId:\"P4vqc7hbl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ivyy8i\",\"data-styles-preset\":\"zg1gdjdoa\",children:\"Design & development\"})}),className:\"framer-1o8nwwn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wc_DtABwI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zch0B1Ts_,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-30)/2)+0+38.8,...addPropertyOverrides({\"lHxZ30ase-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||236)-160-124)/2)+0+-14210854715202004e-30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-182mamf-container\",layoutDependency:layoutDependency,layoutId:\"nNISoxGwH-container\",children:/*#__PURE__*/_jsx(ProjectThumbs,{BY9HrFMsc:toResponsiveImage(Iuf8JZ8nG),DqhO2ouWf:toResponsiveImage(PDmcbYEEw),height:\"100%\",id:\"nNISoxGwH\",kR5kCkWxS:toResponsiveImage(z0BGfgt2V),layoutId:\"nNISoxGwH\",variant:\"rKIFSpmeW\",width:\"100%\",...addPropertyOverrides({\"lHxZ30ase-hover\":{variant:\"jQqzF1uk3\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-S1lkO.framer-6rmr4x, .framer-S1lkO .framer-6rmr4x { display: block; }\",\".framer-S1lkO.framer-4gpsqw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: 236px; justify-content: space-between; overflow: hidden; padding: 80px 64px 80px 64px; position: relative; text-decoration: none; width: 1168px; }\",\".framer-S1lkO .framer-10xfshh { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-S1lkO .framer-1wt8i8r, .framer-S1lkO .framer-1o8nwwn { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-S1lkO .framer-n2706h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-S1lkO .framer-14thmus { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-S1lkO .framer-182mamf-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S1lkO .framer-10xfshh, .framer-S1lkO .framer-14thmus { gap: 0px; } .framer-S1lkO .framer-10xfshh > *, .framer-S1lkO .framer-14thmus > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-S1lkO .framer-10xfshh > :first-child, .framer-S1lkO .framer-14thmus > :first-child { margin-top: 0px; } .framer-S1lkO .framer-10xfshh > :last-child, .framer-S1lkO .framer-14thmus > :last-child { margin-bottom: 0px; } }\",\".framer-S1lkO.framer-v-1v4lv7n.framer-4gpsqw { height: min-content; padding: 32px; width: 810px; }\",\".framer-S1lkO.framer-v-1v4lv7n .framer-10xfshh { flex-direction: row; }\",\".framer-S1lkO.framer-v-1v4lv7n .framer-14thmus { align-content: flex-start; align-items: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S1lkO.framer-v-1v4lv7n .framer-10xfshh { gap: 0px; } .framer-S1lkO.framer-v-1v4lv7n .framer-10xfshh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-S1lkO.framer-v-1v4lv7n .framer-10xfshh > :first-child { margin-left: 0px; } .framer-S1lkO.framer-v-1v4lv7n .framer-10xfshh > :last-child { margin-right: 0px; } }\",\".framer-S1lkO.framer-v-sw2laq.framer-4gpsqw { height: 90px; padding: 32px 0px 32px 0px; width: 360px; }\",\".framer-S1lkO.framer-v-sw2laq .framer-10xfshh { flex: 1 0 0px; flex-direction: row; gap: 182px; justify-content: flex-start; width: 1px; }\",\".framer-S1lkO.framer-v-sw2laq .framer-1wt8i8r { order: 0; }\",\".framer-S1lkO.framer-v-sw2laq .framer-n2706h { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S1lkO.framer-v-sw2laq .framer-10xfshh { gap: 0px; } .framer-S1lkO.framer-v-sw2laq .framer-10xfshh > * { margin: 0px; margin-left: calc(182px / 2); margin-right: calc(182px / 2); } .framer-S1lkO.framer-v-sw2laq .framer-10xfshh > :first-child { margin-left: 0px; } .framer-S1lkO.framer-v-sw2laq .framer-10xfshh > :last-child { margin-right: 0px; } }\",\".framer-S1lkO.framer-v-4gpsqw.hover .framer-14thmus { height: 124px; justify-content: flex-end; }\",\".framer-S1lkO.framer-v-1v4lv7n.hover .framer-10xfshh { padding: 0px 0px 0px 32px; }\",\".framer-S1lkO.framer-v-sw2laq.hover .framer-10xfshh { padding: 0px 0px 0px 16px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 236\n * @framerIntrinsicWidth 1168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zQ6RH074O\":{\"layout\":[\"fixed\",\"auto\"]},\"PnGJ9vlGw\":{\"layout\":[\"fixed\",\"fixed\"]},\"fFbKcZsAR\":{\"layout\":[\"fixed\",\"fixed\"]},\"ge8NW3qan\":{\"layout\":[\"fixed\",\"auto\"]},\"CDdbNHwPn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AYLlncu8l\":\"boeing\",\"zch0B1Ts_\":\"service\",\"z0BGfgt2V\":\"image01\",\"Iuf8JZ8nG\":\"image02\",\"PDmcbYEEw\":\"image03\",\"bxxQjGUla\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL2kMxSaJr=withCSS(Component,css,\"framer-S1lkO\");export default FramerL2kMxSaJr;FramerL2kMxSaJr.displayName=\"Works_Boeing\";FramerL2kMxSaJr.defaultProps={height:236,width:1168};addPropertyControls(FramerL2kMxSaJr,{variant:{options:[\"lHxZ30ase\",\"zQ6RH074O\",\"PnGJ9vlGw\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},AYLlncu8l:{defaultValue:\"BOEING\",displayTextArea:false,title:\"Boeing\",type:ControlType.String},zch0B1Ts_:{defaultValue:\"Case Study\",displayTextArea:false,title:\"Service\",type:ControlType.String},z0BGfgt2V:{__defaultAssetReference:\"data:framer/asset-reference,Ny1LUuktNAQ9CYhDOK3dgQKnSw.jpg?originalFilename=AIR+Lab+Door.jpg&preferredSize=auto\",title:\"Image 01\",type:ControlType.ResponsiveImage},Iuf8JZ8nG:{__defaultAssetReference:\"data:framer/asset-reference,IWZHdaf8qgpuxBncomTS6cCmk5s.jpg?originalFilename=Wayfinding-3.jpg&preferredSize=auto\",title:\"Image 02\",type:ControlType.ResponsiveImage},PDmcbYEEw:{__defaultAssetReference:\"data:framer/asset-reference,SQiE7zVtd8iwb6RxNrkpWypZ2I.jpg?originalFilename=Starling+Air+Shuttle_NYC.jpg&preferredSize=auto\",title:\"Image 03\",type:ControlType.ResponsiveImage},bxxQjGUla:{title:\"Link\",type:ControlType.Link}});addFonts(FramerL2kMxSaJr,[{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\"}]},...ProjectThumbsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL2kMxSaJr\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1168\",\"framerIntrinsicHeight\":\"236\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zQ6RH074O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PnGJ9vlGw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fFbKcZsAR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ge8NW3qan\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CDdbNHwPn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"AYLlncu8l\\\":\\\"boeing\\\",\\\"zch0B1Ts_\\\":\\\"service\\\",\\\"z0BGfgt2V\\\":\\\"image01\\\",\\\"Iuf8JZ8nG\\\":\\\"image02\\\",\\\"PDmcbYEEw\\\":\\\"image03\\\",\\\"bxxQjGUla\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L2kMxSaJr.map", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion,useScroll,useTransform}from\"framer-motion\";import{useRef}from\"react\";const EachCharacter=({char,start,end,progress})=>{const opacityProgress=useTransform(progress,[start,end],[.1,1]);return /*#__PURE__*/_jsx(motion.span,{style:{opacity:opacityProgress},children:char});};const EachWord=({word,progress,starting,ending})=>{const characters=word.split(\"\");const wordLength=word.length;const amount=ending-starting;const step=amount/wordLength;return /*#__PURE__*/_jsxs(motion.span,{children:[characters.map((char,idx)=>{const charStart=starting+step*idx;const charEnd=starting+step*(idx+1);return /*#__PURE__*/_jsx(EachCharacter,{char:char,start:charStart,end:charEnd,progress:progress});}),\"\\xa0\"]});};/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function Text_Opacity_Letters(props){const text=props.text;const words=text.split(\" \");const totalWords=words.length;const ref=useRef(null);const{scrollYProgress}=useScroll({target:ref,offset:[\"start 0.75\",\"start 0.15\"]});return /*#__PURE__*/_jsx(\"p\",{ref:ref,style:{...props.font,display:\"flex\",flexWrap:\"wrap\",color:props.textColor},children:words.map((word,idx)=>{const starting=idx/totalWords;const ending=(idx+1)/totalWords;return /*#__PURE__*/_jsx(EachWord,{word:word,progress:scrollYProgress,starting:starting,ending:ending});})});}addPropertyControls(Text_Opacity_Letters,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Hello Text\"},font:{type:\"font\",controls:\"extended\"},textColor:{type:ControlType.Color}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Text_Opacity_Letters\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Opacity_Letters.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import MagText from\"https://framerusercontent.com/modules/FCYp8FRx320SWq9QcLcn/qpET2t2Z0ryTCtBpcD2G/magtext.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CdOdky5gzve8F7s2ESkN/SmoothScroll_Prod.js\";import Works_SVAWebsite from\"#framer/local/canvasComponent/AeLCDuTgg/AeLCDuTgg.js\";import Works_SVAThesis from\"#framer/local/canvasComponent/B38XE_7GK/B38XE_7GK.js\";import Works_Canncestra from\"#framer/local/canvasComponent/c5vdl6CHa/c5vdl6CHa.js\";import Footer from\"#framer/local/canvasComponent/h4ZSIeXfJ/h4ZSIeXfJ.js\";import AwwardsList from\"#framer/local/canvasComponent/Ifd09k8gl/Ifd09k8gl.js\";import Works_Boeing from\"#framer/local/canvasComponent/L2kMxSaJr/L2kMxSaJr.js\";import Link from\"#framer/local/canvasComponent/x0CXMpv8K/x0CXMpv8K.js\";import Navbar from\"#framer/local/canvasComponent/XJkO5tDkf/XJkO5tDkf.js\";import CustomCursor from\"#framer/local/canvasComponent/YIresyRp2/YIresyRp2.js\";import Text_Opacity_Letters from\"#framer/local/codeFile/YqYf3Lp/Text_Opacity_Letters.js\";import*as sharedStyle2 from\"#framer/local/css/pRzYjSNP1/pRzYjSNP1.js\";import*as sharedStyle from\"#framer/local/css/QEKZ8KU_L/QEKZ8KU_L.js\";import*as sharedStyle1 from\"#framer/local/css/xgvp2_1Bq/xgvp2_1Bq.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavbarFonts=getFonts(Navbar);const MagTextFonts=getFonts(MagText);const LinkFonts=getFonts(Link);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const Text_Opacity_LettersFonts=getFonts(Text_Opacity_Letters);const Works_SVAWebsiteFonts=getFonts(Works_SVAWebsite);const Works_BoeingFonts=getFonts(Works_Boeing);const Works_CanncestraFonts=getFonts(Works_Canncestra);const Works_SVAThesisFonts=getFonts(Works_SVAThesis);const AwwardsListFonts=getFonts(AwwardsList);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const CustomCursorFonts=getFonts(CustomCursor);const breakpoints={EUY2WHWms:\"(max-width: 809px)\",fuQqbIqTV:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6Ojsb\";const variantClassNames={EUY2WHWms:\"framer-v-1afjmuc\",fuQqbIqTV:\"framer-v-8ks4cr\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"EUY2WHWms\",Tablet:\"fuQqbIqTV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const cursor={component:CustomCursor,transition:transition2,variant:\"RN4LWk6hP\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-6Ojsb`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-6Ojsb`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"UPzCp3GEL\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"EUY2WHWms\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({\"1f63pbj\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-foun8u-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IvmHhEgzx\",intensity:12,layoutId:\"IvmHhEgzx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eizeiv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{variant:\"P2J35vNCR\"},fuQqbIqTV:{variant:\"eWSDBhpxR\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Ie9HJa85O\",layoutId:\"Ie9HJa85O\",style:{width:\"100%\"},variant:\"i65jKQY5U\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lbekoy\",\"data-framer-name\":\"Hero\",id:elementId,name:\"Hero\",ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wmtz1y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"54px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.2px\",lineHeight:\"1.2em\"}},fuQqbIqTV:{font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"84px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.02em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(MagText,{color:\"var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, rgb(227, 60, 18))\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"124px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.02em\",lineHeight:\"1em\"},height:\"100%\",id:\"MpE3pl2si\",layoutId:\"MpE3pl2si\",style:{width:\"100%\"},text:\"Hello, there!\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txstef\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bit5kd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1sgo8ze\",\"data-styles-preset\":\"QEKZ8KU_L\",style:{\"--framer-text-color\":\"var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, rgb(18, 18, 18))\"},children:[\"Award-winning designer. Branding and design consultant. Strategist. Creative Director. \",/*#__PURE__*/_jsx(\"br\",{}),\"Based in New York, NY.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sgo8ze\",\"data-styles-preset\":\"QEKZ8KU_L\",style:{\"--framer-text-color\":\"var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, rgb(18, 18, 18))\"},children:\"Award-winning designer. Branding and design consultant. Strategist. Creative Director. Based in New York, NY.\"})}),className:\"framer-18gbbc9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a2air6\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QpX821pCY\"},implicitPathVariables:undefined},{href:{webPageId:\"QpX821pCY\"},implicitPathVariables:undefined},{href:{webPageId:\"QpX821pCY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{y:620},fuQqbIqTV:{y:516}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:490,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ixrsob-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{kMvPJqXXP:12,tBmyGN0bx:resolvedLinks[2]},fuQqbIqTV:{kMvPJqXXP:12,tBmyGN0bx:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Link,{CQeJoPczS:\"About Me\",height:\"100%\",id:\"B2Y_sVabj\",kMvPJqXXP:14,layoutId:\"B2Y_sVabj\",tBmyGN0bx:resolvedLinks[0],width:\"100%\",Ye1XLFXDA:\"var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, rgb(227, 60, 18))\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iSuXRqEPa\"},implicitPathVariables:undefined},{href:{webPageId:\"iSuXRqEPa\"},implicitPathVariables:undefined},{href:{webPageId:\"iSuXRqEPa\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{y:620},fuQqbIqTV:{y:516}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:490,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r8uxp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{kMvPJqXXP:12,tBmyGN0bx:resolvedLinks1[2]},fuQqbIqTV:{kMvPJqXXP:12,tBmyGN0bx:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Link,{CQeJoPczS:\"WORK\",height:\"100%\",id:\"LkIBDOTLj\",kMvPJqXXP:14,layoutId:\"LkIBDOTLj\",tBmyGN0bx:resolvedLinks1[0],width:\"100%\",Ye1XLFXDA:\"var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, rgb(227, 60, 18))\"})})})})})})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pphz6y\",\"data-framer-name\":\"Showreel\",name:\"Showreel\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ujl2br\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-did23r-container\",\"data-framer-cursor\":\"1f63pbj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{style:{width:\"100%\"}},fuQqbIqTV:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-2ad1aa5c-2f1e-40be-8997-078e547e51b7, rgb(235, 235, 235))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FzElLlIEY\",isMixedBorderRadius:false,layoutId:\"FzElLlIEY\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Dd87DDX862PKrR9r5stDsxTmjGQ.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d12i4g\",\"data-framer-name\":\"About\",name:\"About\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p0ih05-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"left\"}},fuQqbIqTV:{font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(Text_Opacity_Letters,{font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"48px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.4em\",textAlign:\"left\"},height:\"100%\",id:\"lM3wAY8xL\",layoutId:\"lM3wAY8xL\",style:{width:\"100%\"},text:\"I AM A BRAND STRATEGIST, CREATIVE DIRECTOR AND GRAPHIC DESIGNER WITH OVER 12 YEARS OF EXPERIENCE, CURRENTLY CALLING NEW YORK HOME. I AM PASSIONATE ABOUT CREATIVE CROSS-POLLINATION; COLLABORATING ON INVENTIVE IDEAS TO SHAPE MEANINGFUL, SUSTAINABLE BRAND EXPERIENCES WITH PURPOSE AT THEIR CORE.\",textColor:\"var(--token-0819bdfd-ecdd-45ae-a012-dd02dc1d17eb, rgb(227, 60, 18))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13ll6o2\",\"data-framer-name\":\"Featured Works\",name:\"Featured Works\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sbcwsi\",\"data-styles-preset\":\"xgvp2_1Bq\",children:\"featured projects\"})}),className:\"framer-nj4mly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tNwNMboMU\"},implicitPathVariables:undefined},{href:{webPageId:\"tNwNMboMU\"},implicitPathVariables:undefined},{href:{webPageId:\"tNwNMboMU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{width:\"374px\",y:1153.4},fuQqbIqTV:{height:135,y:1327.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:\"calc(100vw - 64px)\",y:1594.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b78x7w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{bxxQjGUla:resolvedLinks2[2],style:{width:\"100%\"},variant:\"FARptUIAb\"},fuQqbIqTV:{bxxQjGUla:resolvedLinks2[1],variant:\"xmTcWAE8D\"}},children:/*#__PURE__*/_jsx(Works_SVAWebsite,{AYLlncu8l:\"SVA BRANDING\",bxxQjGUla:resolvedLinks2[0],height:\"100%\",id:\"mrCsNrIS1\",Iuf8JZ8nG:addImageAlt({src:\"https://framerusercontent.com/images/TaZZBFT6h7kazJJt3zVjVzni28.jpg\",srcSet:\"https://framerusercontent.com/images/TaZZBFT6h7kazJJt3zVjVzni28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TaZZBFT6h7kazJJt3zVjVzni28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TaZZBFT6h7kazJJt3zVjVzni28.jpg 1920w\"},\"\"),layoutId:\"mrCsNrIS1\",PDmcbYEEw:addImageAlt({src:\"https://framerusercontent.com/images/UZEODYZdeM2yGkL9OuhXUTsl00E.jpg\",srcSet:\"https://framerusercontent.com/images/UZEODYZdeM2yGkL9OuhXUTsl00E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UZEODYZdeM2yGkL9OuhXUTsl00E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UZEODYZdeM2yGkL9OuhXUTsl00E.jpg 1920w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"kBjpCfXAQ\",width:\"100%\",z0BGfgt2V:addImageAlt({src:\"https://framerusercontent.com/images/tj8Y2k83LTCS0nR9VRECNru8w.jpg\",srcSet:\"https://framerusercontent.com/images/tj8Y2k83LTCS0nR9VRECNru8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tj8Y2k83LTCS0nR9VRECNru8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tj8Y2k83LTCS0nR9VRECNru8w.jpg 1080w\"},\"\"),zch0B1Ts_:\"Website Design\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LZ6ScoiHE\"},implicitPathVariables:undefined},{href:{webPageId:\"LZ6ScoiHE\"},implicitPathVariables:undefined},{href:{webPageId:\"LZ6ScoiHE\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{width:\"374px\",y:1389.4},fuQqbIqTV:{height:135,y:1462.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:\"calc(100vw - 64px)\",y:1830.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8656w9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{bxxQjGUla:resolvedLinks3[2],style:{width:\"100%\"},variant:\"PnGJ9vlGw\"},fuQqbIqTV:{bxxQjGUla:resolvedLinks3[1],variant:\"zQ6RH074O\"}},children:/*#__PURE__*/_jsx(Works_Boeing,{AYLlncu8l:\"BOEING\",bxxQjGUla:resolvedLinks3[0],height:\"100%\",id:\"GecjRfLDh\",layoutId:\"GecjRfLDh\",style:{height:\"100%\",width:\"100%\"},variant:\"lHxZ30ase\",width:\"100%\",zch0B1Ts_:\"Case Study\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Y4bkR4OQy\"},implicitPathVariables:undefined},{href:{webPageId:\"Y4bkR4OQy\"},implicitPathVariables:undefined},{href:{webPageId:\"Y4bkR4OQy\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{width:\"374px\",y:1625.4},fuQqbIqTV:{height:135,y:1597.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:\"calc(100vw - 64px)\",y:2066.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1as20yx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{bxxQjGUla:resolvedLinks4[2],style:{width:\"100%\"},variant:\"KQUtd1KgP\"},fuQqbIqTV:{bxxQjGUla:resolvedLinks4[1],variant:\"a9sutLmys\"}},children:/*#__PURE__*/_jsx(Works_Canncestra,{AYLlncu8l:\"CANNCESTRA\",bxxQjGUla:resolvedLinks4[0],height:\"100%\",id:\"Bo1Py4DY6\",Iuf8JZ8nG:addImageAlt({src:\"https://framerusercontent.com/images/0bgRXvGRbv7JOEOsrKs2S00JQ.jpg\",srcSet:\"https://framerusercontent.com/images/0bgRXvGRbv7JOEOsrKs2S00JQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0bgRXvGRbv7JOEOsrKs2S00JQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0bgRXvGRbv7JOEOsrKs2S00JQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0bgRXvGRbv7JOEOsrKs2S00JQ.jpg 3000w\"},\"\"),layoutId:\"Bo1Py4DY6\",PDmcbYEEw:addImageAlt({src:\"https://framerusercontent.com/images/I5eV8T1WhMdVOszXf27uUa4jfM.jpg\",srcSet:\"https://framerusercontent.com/images/I5eV8T1WhMdVOszXf27uUa4jfM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I5eV8T1WhMdVOszXf27uUa4jfM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I5eV8T1WhMdVOszXf27uUa4jfM.jpg 1600w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"oPVcGFoEC\",width:\"100%\",z0BGfgt2V:addImageAlt({src:\"https://framerusercontent.com/images/rm9M2AqkFVt7FolLSm6F8tH2pY.jpg\",srcSet:\"https://framerusercontent.com/images/rm9M2AqkFVt7FolLSm6F8tH2pY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rm9M2AqkFVt7FolLSm6F8tH2pY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rm9M2AqkFVt7FolLSm6F8tH2pY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rm9M2AqkFVt7FolLSm6F8tH2pY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/rm9M2AqkFVt7FolLSm6F8tH2pY.jpg 6000w\"},\"\"),zch0B1Ts_:\"Branding\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AMLNVCaD8\"},implicitPathVariables:undefined},{href:{webPageId:\"AMLNVCaD8\"},implicitPathVariables:undefined},{href:{webPageId:\"AMLNVCaD8\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{width:\"374px\",y:1861.4},fuQqbIqTV:{height:135,y:1732.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:\"calc(100vw - 64px)\",y:2302.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d3vf6d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{bxxQjGUla:resolvedLinks5[2],style:{width:\"100%\"},variant:\"i6ygj7zuk\"},fuQqbIqTV:{bxxQjGUla:resolvedLinks5[1],variant:\"g_HyVPmkX\"}},children:/*#__PURE__*/_jsx(Works_SVAThesis,{AYLlncu8l:\"THESIS VIDEOS\",bxxQjGUla:resolvedLinks5[0],height:\"100%\",id:\"XmypF55KK\",Iuf8JZ8nG:addImageAlt({src:\"https://framerusercontent.com/images/tBaGqSDUEWfNn5pvZAYzkjPRj1c.png\",srcSet:\"https://framerusercontent.com/images/tBaGqSDUEWfNn5pvZAYzkjPRj1c.png?scale-down-to=512 512w,https://framerusercontent.com/images/tBaGqSDUEWfNn5pvZAYzkjPRj1c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tBaGqSDUEWfNn5pvZAYzkjPRj1c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tBaGqSDUEWfNn5pvZAYzkjPRj1c.png 2586w\"},\"\"),layoutId:\"XmypF55KK\",PDmcbYEEw:addImageAlt({src:\"https://framerusercontent.com/images/GzN4km9BfKskLKUtTDbGGe11Ni0.png\",srcSet:\"https://framerusercontent.com/images/GzN4km9BfKskLKUtTDbGGe11Ni0.png?scale-down-to=512 512w,https://framerusercontent.com/images/GzN4km9BfKskLKUtTDbGGe11Ni0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GzN4km9BfKskLKUtTDbGGe11Ni0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GzN4km9BfKskLKUtTDbGGe11Ni0.png 2696w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"VyazIoUEH\",width:\"100%\",z0BGfgt2V:addImageAlt({src:\"https://framerusercontent.com/images/1OjY2Tc8p9XirU3WnMf3CVxdQ.png\",srcSet:\"https://framerusercontent.com/images/1OjY2Tc8p9XirU3WnMf3CVxdQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1OjY2Tc8p9XirU3WnMf3CVxdQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1OjY2Tc8p9XirU3WnMf3CVxdQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1OjY2Tc8p9XirU3WnMf3CVxdQ.png 2550w\"},\"\"),zch0B1Ts_:\"Creative Direction\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-173yc6i hidden-1afjmuc\",\"data-framer-name\":\"Skills\",name:\"Skills\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-135p3gh\",\"data-framer-name\":\"Services\",name:\"Services\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dv2efe\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sbcwsi\",\"data-styles-preset\":\"xgvp2_1Bq\",children:\"WHAT I CAN DO\"})}),className:\"framer-1cyj3jv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5juyh\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9y3z25\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ujqy3\",\"data-styles-preset\":\"pRzYjSNP1\",children:\"I approach every project with curiosity and a strong knowledge of strategy and design. From hands-on print projects to the creative direction of digital animations, I seek to solve problems through creative cross-pollination and sustainable brand strategy.\"})}),className:\"framer-1eu9cvv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t5ldh9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mpycd5\",\"data-framer-name\":\"Awards\",name:\"Awards\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vvfapf\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-883ftb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{sCN1stLRx:\"GRAPHIC DESIGN\",variant:\"j5JYjbggO\"}},children:/*#__PURE__*/_jsx(AwwardsList,{height:\"100%\",id:\"zJ1l0IpAZ\",layoutId:\"zJ1l0IpAZ\",sCN1stLRx:\"Graphic Design\",style:{width:\"100%\"},variant:\"WnKxGDL1F\",width:\"100%\",x1M1Qniio:\"\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-55n8wo\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1agcs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{sCN1stLRx:\"BRAND IDENTITIES\",variant:\"j5JYjbggO\"}},children:/*#__PURE__*/_jsx(AwwardsList,{height:\"100%\",id:\"DhtvDjbgR\",layoutId:\"DhtvDjbgR\",sCN1stLRx:\"Brand Identities\",style:{width:\"100%\"},variant:\"WnKxGDL1F\",width:\"100%\",x1M1Qniio:\"\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j9g9wz\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c9pkzk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{sCN1stLRx:\"CREATIVE DIRECTION\",variant:\"j5JYjbggO\"}},children:/*#__PURE__*/_jsx(AwwardsList,{height:\"100%\",id:\"GNHT4s3uD\",layoutId:\"GNHT4s3uD\",sCN1stLRx:\"Creative Direction\",style:{width:\"100%\"},variant:\"WnKxGDL1F\",width:\"100%\",x1M1Qniio:\"\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wsaeq7\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1134lez-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{sCN1stLRx:\"BRAND & DESIGN CONSULTING\",variant:\"j5JYjbggO\"}},children:/*#__PURE__*/_jsx(AwwardsList,{height:\"100%\",id:\"s1mRgOOJm\",layoutId:\"s1mRgOOJm\",sCN1stLRx:\"Brand & Design Consulting\",style:{width:\"100%\"},variant:\"WnKxGDL1F\",width:\"100%\",x1M1Qniio:\"\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-41nais\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19977a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{sCN1stLRx:\"PROJECT MANAGEMENT\",variant:\"j5JYjbggO\"}},children:/*#__PURE__*/_jsx(AwwardsList,{height:\"100%\",id:\"T9k8dlVCJ\",layoutId:\"T9k8dlVCJ\",sCN1stLRx:\"Project Management\",style:{width:\"100%\"},variant:\"WnKxGDL1F\",width:\"100%\",x1M1Qniio:\"\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4fexle\",\"data-framer-name\":\"Divider\",name:\"Divider\"})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9vhjrk\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sbcwsi\",\"data-styles-preset\":\"xgvp2_1Bq\",children:\"MORE VISUAL GOODIES\"})}),className:\"framer-1et0kez\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10wwh05-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"B2THpyGQJ\",layoutId:\"B2THpyGQJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1595,intrinsicWidth:1921,pixelHeight:958,pixelWidth:1072,sizes:\"364px\",src:\"https://framerusercontent.com/images/3g9MEFM0IOPVKHpEt3I9l0RqM.png\",srcSet:\"https://framerusercontent.com/images/3g9MEFM0IOPVKHpEt3I9l0RqM.png?scale-down-to=512 512w,https://framerusercontent.com/images/3g9MEFM0IOPVKHpEt3I9l0RqM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3g9MEFM0IOPVKHpEt3I9l0RqM.png 1072w\"},className:\"framer-zmcueg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1596,intrinsicWidth:1921,pixelHeight:1600,pixelWidth:1200,sizes:\"364px\",src:\"https://framerusercontent.com/images/wmOQwWgtstotkrDo2OlYzvDlp0.jpg\",srcSet:\"https://framerusercontent.com/images/wmOQwWgtstotkrDo2OlYzvDlp0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/wmOQwWgtstotkrDo2OlYzvDlp0.jpg 1200w\"},className:\"framer-uar4e8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2500,intrinsicWidth:2500,pixelHeight:1105,pixelWidth:2e3,sizes:\"364px\",src:\"https://framerusercontent.com/images/QC1jFA3dLg4VaxlHAcI4Jxu2z0.jpg\",srcSet:\"https://framerusercontent.com/images/QC1jFA3dLg4VaxlHAcI4Jxu2z0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QC1jFA3dLg4VaxlHAcI4Jxu2z0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QC1jFA3dLg4VaxlHAcI4Jxu2z0.jpg 2000w\"},className:\"framer-1y6jq5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:3639,pixelWidth:3639,sizes:\"364px\",src:\"https://framerusercontent.com/images/n41l8aJpSGltB1IKKYaucvHqo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/n41l8aJpSGltB1IKKYaucvHqo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n41l8aJpSGltB1IKKYaucvHqo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n41l8aJpSGltB1IKKYaucvHqo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n41l8aJpSGltB1IKKYaucvHqo.jpg 3639w\"},className:\"framer-14vr3k6\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{y:3133.8},fuQqbIqTV:{y:2979.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:774,width:\"100vw\",y:3674.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fs9t28-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EUY2WHWms:{variant:\"gX9bLpNTv\"},fuQqbIqTV:{variant:\"XvEjiYx4u\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"oXVqUGQgC\",layoutId:\"oXVqUGQgC\",style:{width:\"100%\"},variant:\"dpLEy4nVV\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-6Ojsb { background: var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255)) /* {\"name\":\"BGcolor\"} */; }`,\".framer-6Ojsb.framer-lux5qc, .framer-6Ojsb .framer-lux5qc { display: block; }\",\".framer-6Ojsb.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, #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-6Ojsb .framer-foun8u-container, .framer-6Ojsb .framer-1ixrsob-container, .framer-6Ojsb .framer-r8uxp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6Ojsb .framer-eizeiv-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-6Ojsb .framer-lbekoy { 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: center; overflow: hidden; padding: 80px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-1wmtz1y-container, .framer-6Ojsb .framer-883ftb-container, .framer-6Ojsb .framer-1p1agcs-container, .framer-6Ojsb .framer-1c9pkzk-container, .framer-6Ojsb .framer-1134lez-container, .framer-6Ojsb .framer-19977a-container, .framer-6Ojsb .framer-fs9t28-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-1txstef { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-1bit5kd { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6Ojsb .framer-18gbbc9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6Ojsb .framer-a2air6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6Ojsb .framer-pphz6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 748px; justify-content: center; overflow: hidden; padding: 24px 32px 39px 32px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-ujl2br { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-6Ojsb .framer-did23r-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-6Ojsb .framer-d12i4g { 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 32px 0px 32px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-p0ih05-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-6Ojsb .framer-13ll6o2 { 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: 120px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-nj4mly, .framer-6Ojsb .framer-1et0kez { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-6Ojsb .framer-b78x7w-container, .framer-6Ojsb .framer-8656w9-container, .framer-6Ojsb .framer-1as20yx-container, .framer-6Ojsb .framer-1d3vf6d-container { flex: none; height: 236px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-173yc6i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 17px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-135p3gh { 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: 50px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-dv2efe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6Ojsb .framer-1cyj3jv, .framer-6Ojsb .framer-1eu9cvv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-6Ojsb .framer-g5juyh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6Ojsb .framer-9y3z25 { 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-6Ojsb .framer-t5ldh9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 266px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-1mpycd5 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-1vvfapf, .framer-6Ojsb .framer-55n8wo, .framer-6Ojsb .framer-j9g9wz, .framer-6Ojsb .framer-1wsaeq7, .framer-6Ojsb .framer-41nais, .framer-6Ojsb .framer-4fexle { background-color: var(--token-2ad1aa5c-2f1e-40be-8997-078e547e51b7, #ebebeb); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-9vhjrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-10wwh05-container { flex: none; height: 364px; position: relative; width: 100%; }\",\".framer-6Ojsb .framer-zmcueg, .framer-6Ojsb .framer-uar4e8, .framer-6Ojsb .framer-1y6jq5, .framer-6Ojsb .framer-14vr3k6 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 364px); overflow: hidden; position: relative; width: 364px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6Ojsb.framer-72rtr7, .framer-6Ojsb .framer-lbekoy, .framer-6Ojsb .framer-1txstef, .framer-6Ojsb .framer-1bit5kd, .framer-6Ojsb .framer-a2air6, .framer-6Ojsb .framer-pphz6y, .framer-6Ojsb .framer-d12i4g, .framer-6Ojsb .framer-13ll6o2, .framer-6Ojsb .framer-173yc6i, .framer-6Ojsb .framer-dv2efe, .framer-6Ojsb .framer-g5juyh, .framer-6Ojsb .framer-9y3z25, .framer-6Ojsb .framer-1mpycd5, .framer-6Ojsb .framer-9vhjrk { gap: 0px; } .framer-6Ojsb.framer-72rtr7 > *, .framer-6Ojsb .framer-13ll6o2 > *, .framer-6Ojsb .framer-1mpycd5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6Ojsb.framer-72rtr7 > :first-child, .framer-6Ojsb .framer-lbekoy > :first-child, .framer-6Ojsb .framer-13ll6o2 > :first-child, .framer-6Ojsb .framer-173yc6i > :first-child, .framer-6Ojsb .framer-g5juyh > :first-child, .framer-6Ojsb .framer-1mpycd5 > :first-child, .framer-6Ojsb .framer-9vhjrk > :first-child { margin-top: 0px; } .framer-6Ojsb.framer-72rtr7 > :last-child, .framer-6Ojsb .framer-lbekoy > :last-child, .framer-6Ojsb .framer-13ll6o2 > :last-child, .framer-6Ojsb .framer-173yc6i > :last-child, .framer-6Ojsb .framer-g5juyh > :last-child, .framer-6Ojsb .framer-1mpycd5 > :last-child, .framer-6Ojsb .framer-9vhjrk > :last-child { margin-bottom: 0px; } .framer-6Ojsb .framer-lbekoy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6Ojsb .framer-1txstef > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-6Ojsb .framer-1txstef > :first-child, .framer-6Ojsb .framer-1bit5kd > :first-child, .framer-6Ojsb .framer-a2air6 > :first-child, .framer-6Ojsb .framer-pphz6y > :first-child, .framer-6Ojsb .framer-d12i4g > :first-child, .framer-6Ojsb .framer-dv2efe > :first-child, .framer-6Ojsb .framer-9y3z25 > :first-child { margin-left: 0px; } .framer-6Ojsb .framer-1txstef > :last-child, .framer-6Ojsb .framer-1bit5kd > :last-child, .framer-6Ojsb .framer-a2air6 > :last-child, .framer-6Ojsb .framer-pphz6y > :last-child, .framer-6Ojsb .framer-d12i4g > :last-child, .framer-6Ojsb .framer-dv2efe > :last-child, .framer-6Ojsb .framer-9y3z25 > :last-child { margin-right: 0px; } .framer-6Ojsb .framer-1bit5kd > *, .framer-6Ojsb .framer-a2air6 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-6Ojsb .framer-pphz6y > *, .framer-6Ojsb .framer-d12i4g > *, .framer-6Ojsb .framer-dv2efe > *, .framer-6Ojsb .framer-9y3z25 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6Ojsb .framer-173yc6i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6Ojsb .framer-g5juyh > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-6Ojsb .framer-9vhjrk > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-6Ojsb { background: var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255)) /* {\"name\":\"BGcolor\"} */; } .framer-6Ojsb.framer-72rtr7 { width: 810px; } .framer-6Ojsb .framer-1txstef { gap: 16px; } .framer-6Ojsb .framer-18gbbc9 { flex: 2 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-6Ojsb .framer-a2air6 { align-content: flex-start; align-items: flex-start; padding: 0px 0px 10px 0px; } .framer-6Ojsb .framer-pphz6y { height: 459px; padding: 24px 32px 24px 32px; } .framer-6Ojsb .framer-ujl2br { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-6Ojsb .framer-did23r-container { height: auto; left: unset; position: relative; top: unset; } .framer-6Ojsb .framer-13ll6o2 { padding: 80px 32px 0px 32px; } .framer-6Ojsb .framer-b78x7w-container, .framer-6Ojsb .framer-8656w9-container, .framer-6Ojsb .framer-1as20yx-container, .framer-6Ojsb .framer-1d3vf6d-container { height: 135px; } .framer-6Ojsb .framer-g5juyh { gap: 24px; } .framer-6Ojsb .framer-t5ldh9 { gap: 0px; justify-content: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6Ojsb .framer-1txstef, .framer-6Ojsb .framer-ujl2br, .framer-6Ojsb .framer-g5juyh, .framer-6Ojsb .framer-t5ldh9 { gap: 0px; } .framer-6Ojsb .framer-1txstef > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6Ojsb .framer-1txstef > :first-child { margin-left: 0px; } .framer-6Ojsb .framer-1txstef > :last-child { margin-right: 0px; } .framer-6Ojsb .framer-ujl2br > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6Ojsb .framer-ujl2br > :first-child, .framer-6Ojsb .framer-g5juyh > :first-child, .framer-6Ojsb .framer-t5ldh9 > :first-child { margin-top: 0px; } .framer-6Ojsb .framer-ujl2br > :last-child, .framer-6Ojsb .framer-g5juyh > :last-child, .framer-6Ojsb .framer-t5ldh9 > :last-child { margin-bottom: 0px; } .framer-6Ojsb .framer-g5juyh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6Ojsb .framer-t5ldh9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-6Ojsb { background: var(--token-7e4e2cf7-0195-4492-a4a7-92ee0fc89362, rgb(255, 255, 255)) /* {\"name\":\"BGcolor\"} */; } .framer-6Ojsb.framer-72rtr7 { width: 390px; } .framer-6Ojsb .framer-lbekoy { gap: 24px; padding: 80px 16px 16px 16px; } .framer-6Ojsb .framer-1txstef { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; } .framer-6Ojsb .framer-1bit5kd { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 16px; justify-content: center; width: 100%; } .framer-6Ojsb .framer-18gbbc9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-6Ojsb .framer-a2air6 { flex: none; gap: 24px; justify-content: flex-start; width: 100%; } .framer-6Ojsb .framer-pphz6y { flex-direction: column; height: 233px; padding: 0px 16px 0px 16px; } .framer-6Ojsb .framer-ujl2br { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px; width: 100%; } .framer-6Ojsb .framer-did23r-container { height: auto; left: unset; order: 0; position: relative; top: unset; } .framer-6Ojsb .framer-d12i4g { flex-direction: column; padding: 16px 16px 0px 16px; } .framer-6Ojsb .framer-p0ih05-container, .framer-6Ojsb .framer-dv2efe { flex: none; width: 100%; } .framer-6Ojsb .framer-13ll6o2 { gap: unset; justify-content: space-evenly; padding: 32px 16px 0px 16px; } .framer-6Ojsb .framer-nj4mly { order: 0; } .framer-6Ojsb .framer-b78x7w-container { height: auto; order: 1; width: 374px; } .framer-6Ojsb .framer-8656w9-container { height: auto; order: 2; width: 374px; z-index: 1; } .framer-6Ojsb .framer-1as20yx-container { height: auto; order: 3; width: 374px; } .framer-6Ojsb .framer-1d3vf6d-container { height: auto; order: 4; width: 374px; } .framer-6Ojsb .framer-135p3gh { flex-direction: column; gap: 24px; justify-content: flex-start; padding: 32px 16px 0px 16px; } .framer-6Ojsb .framer-g5juyh { flex: none; gap: 24px; width: 100%; } .framer-6Ojsb .framer-t5ldh9 { gap: 0px; justify-content: flex-start; } .framer-6Ojsb .framer-9vhjrk { gap: 32px; padding: 32px 16px 32px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6Ojsb .framer-lbekoy, .framer-6Ojsb .framer-1txstef, .framer-6Ojsb .framer-1bit5kd, .framer-6Ojsb .framer-a2air6, .framer-6Ojsb .framer-pphz6y, .framer-6Ojsb .framer-ujl2br, .framer-6Ojsb .framer-d12i4g, .framer-6Ojsb .framer-13ll6o2, .framer-6Ojsb .framer-135p3gh, .framer-6Ojsb .framer-g5juyh, .framer-6Ojsb .framer-t5ldh9, .framer-6Ojsb .framer-9vhjrk { gap: 0px; } .framer-6Ojsb .framer-lbekoy > *, .framer-6Ojsb .framer-135p3gh > *, .framer-6Ojsb .framer-g5juyh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6Ojsb .framer-lbekoy > :first-child, .framer-6Ojsb .framer-1txstef > :first-child, .framer-6Ojsb .framer-1bit5kd > :first-child, .framer-6Ojsb .framer-pphz6y > :first-child, .framer-6Ojsb .framer-ujl2br > :first-child, .framer-6Ojsb .framer-d12i4g > :first-child, .framer-6Ojsb .framer-135p3gh > :first-child, .framer-6Ojsb .framer-g5juyh > :first-child, .framer-6Ojsb .framer-t5ldh9 > :first-child, .framer-6Ojsb .framer-9vhjrk > :first-child { margin-top: 0px; } .framer-6Ojsb .framer-lbekoy > :last-child, .framer-6Ojsb .framer-1txstef > :last-child, .framer-6Ojsb .framer-1bit5kd > :last-child, .framer-6Ojsb .framer-pphz6y > :last-child, .framer-6Ojsb .framer-ujl2br > :last-child, .framer-6Ojsb .framer-d12i4g > :last-child, .framer-6Ojsb .framer-135p3gh > :last-child, .framer-6Ojsb .framer-g5juyh > :last-child, .framer-6Ojsb .framer-t5ldh9 > :last-child, .framer-6Ojsb .framer-9vhjrk > :last-child { margin-bottom: 0px; } .framer-6Ojsb .framer-1txstef > *, .framer-6Ojsb .framer-9vhjrk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6Ojsb .framer-1bit5kd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6Ojsb .framer-a2air6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-6Ojsb .framer-a2air6 > :first-child { margin-left: 0px; } .framer-6Ojsb .framer-a2air6 > :last-child { margin-right: 0px; } .framer-6Ojsb .framer-pphz6y > *, .framer-6Ojsb .framer-ujl2br > *, .framer-6Ojsb .framer-d12i4g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6Ojsb .framer-13ll6o2 > *, .framer-6Ojsb .framer-13ll6o2 > :first-child, .framer-6Ojsb .framer-13ll6o2 > :last-child { margin: 0px; } .framer-6Ojsb .framer-t5ldh9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4653\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fuQqbIqTV\":{\"layout\":[\"fixed\",\"auto\"]},\"EUY2WHWms\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-6Ojsb\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4653,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/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/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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...SmoothScrollFonts,...NavbarFonts,...MagTextFonts,...LinkFonts,...VideoFonts,...Text_Opacity_LettersFonts,...Works_SVAWebsiteFonts,...Works_BoeingFonts,...Works_CanncestraFonts,...Works_SVAThesisFonts,...AwwardsListFonts,...TickerFonts,...FooterFonts,...CustomCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fuQqbIqTV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EUY2WHWms\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4653\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MagText", "props", "mouseX", "useMotionValue", "p", "e", "c", "idx", "Character", "ref", "pe", "scaleRange", "scaleX", "useSpring", "w", "useTransform", "padding", "scaleY", "useMotionValueEvent", "mx", "left", "width", "characterCenter", "distance", "transform", "motion", "useMotionTemplate", "addPropertyControls", "ControlType", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image01", "image02", "image03", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kR5kCkWxS", "BY9HrFMsc", "DqhO2ouWf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeavepksvv4", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerTSNz4d82Q", "withCSS", "TSNz4d82Q_default", "addPropertyControls", "ControlType", "addFonts", "ProjectThumbsFonts", "getFonts", "TSNz4d82Q_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image01", "image02", "image03", "link", "service", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AYLlncu8l", "zch0B1Ts_", "z0BGfgt2V", "Iuf8JZ8nG", "PDmcbYEEw", "bxxQjGUla", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1g8u5ft", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerAeLCDuTgg", "withCSS", "AeLCDuTgg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ProjectThumbsFonts", "getFonts", "TSNz4d82Q_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image01", "image02", "image03", "link", "service", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AYLlncu8l", "zch0B1Ts_", "z0BGfgt2V", "Iuf8JZ8nG", "PDmcbYEEw", "bxxQjGUla", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerB38XE_7GK", "withCSS", "B38XE_7GK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ProjectThumbsFonts", "getFonts", "TSNz4d82Q_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image01", "image02", "image03", "link", "service", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AYLlncu8l", "zch0B1Ts_", "z0BGfgt2V", "Iuf8JZ8nG", "PDmcbYEEw", "bxxQjGUla", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerc5vdl6CHa", "withCSS", "c5vdl6CHa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ProjectThumbsFonts", "getFonts", "TSNz4d82Q_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "boeing", "height", "id", "image01", "image02", "image03", "link", "service", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AYLlncu8l", "zch0B1Ts_", "z0BGfgt2V", "Iuf8JZ8nG", "PDmcbYEEw", "bxxQjGUla", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerL2kMxSaJr", "withCSS", "L2kMxSaJr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "EachCharacter", "char", "start", "end", "progress", "opacityProgress", "useTransform", "p", "motion", "EachWord", "word", "starting", "ending", "characters", "wordLength", "step", "u", "idx", "charStart", "charEnd", "Text_Opacity_Letters", "props", "words", "totalWords", "ref", "pe", "scrollYProgress", "useScroll", "addPropertyControls", "ControlType", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavbarFonts", "XJkO5tDkf_default", "MagTextFonts", "MagText", "LinkFonts", "x0CXMpv8K_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "Text_Opacity_LettersFonts", "Text_Opacity_Letters", "Works_SVAWebsiteFonts", "AeLCDuTgg_default", "Works_BoeingFonts", "L2kMxSaJr_default", "Works_CanncestraFonts", "c5vdl6CHa_default", "Works_SVAThesisFonts", "B38XE_7GK_default", "AwwardsListFonts", "Ifd09k8gl_default", "TickerFonts", "Ticker", "FooterFonts", "h4ZSIeXfJ_default", "CustomCursorFonts", "YIresyRp2_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
