{"version":3,"file":"9ElESgB7KXBtz_fxM88L6q5G5CnfRiHH0qjqMrarf1U.BAIqtTDN.mjs","names":["isBrowser","Component","Dot","dotStyle","addPropertyOverrides","enabledGestures","serializationHash","variantClassNames","transition1","toResponsiveImage","Transition","Variants","getProps","createLayoutDependency","Component","className","Image","css","serializationHash","variantClassNames","transition1","toResponsiveImage","transformTemplate1","getProps","Component","className","Image","css","fonts","css","className","SecondaryButton","PrimaryButton","CollectionCard","ProcessCard","metadata","className","PropertyOverrides","Image","Collections","_Fragment","FPafaQWCFJNDVRHncZ","idJNDVRHncZ","jcovQAyN9JNDVRHncZ","RswEEpZVlJNDVRHncZ","yPiyJVzcgJNDVRHncZ","css"],"sources":["https:/framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js","https:/framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js","https:/framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js","https:/framerusercontent.com/modules/D2Lz5CmnNVPZFFiZXalt/QaCzPbriZBfXWZIIycFI/colorFromToken.js","https:/framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js","https:/framerusercontent.com/modules/xDiQsqBGXzmMsv7AlEVy/uhunpMiNsbXxzjlXsg1y/useUniqueClassName.js","https:/framerusercontent.com/modules/ETACN5BJyFTSo0VVDJfu/NHRqowOiXkF9UwOzczF7/variantUtils.js","https:/framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js","https:/framerusercontent.com/modules/v9AWX2URmiYsHf7GbctE/XxKAZ9KlhWqf5x1JMyyF/useOnChange.js","https:/framerusercontent.com/modules/kNDwabfjDEb3vUxkQlZS/fSIr3AOAYbGlfSPgXpYu/useAutoMotionValue.js","https:/framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js","https:/framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js","https:/framerusercontent.com/modules/zGkoP8tPDCkoBzMdt5uq/0zFSjxIYliHxrQQnryFX/useControlledState.js","https:/framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js","https:/framer.com/m/framer/default-utils.js","https:/framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js","https:/framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js","https:/framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js","https:/framerusercontent.com/modules/eHJqeTX7KAQ4oK9WfANb/7u7bAqtzWTeKfj3FSnhU/ICMV999pc.js","https:/framerusercontent.com/modules/n6OeXIZ2eYS1r0kkQjUA/xxKH7peydgKhgbeWLC7B/W23szoBzp.js","https:/framerusercontent.com/modules/xe4YtL66QsKRB5KyK7M5/Ok9fzqheaxm2P8Zo7RBp/A8vbOK0xh.js","https:/framerusercontent.com/modules/2r6cTzJZ9s18I5VwYQ38/RlQJeai7N6fBzWx271eE/augiA20Il.js"],"sourcesContent":["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 — 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 { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map","import { Color } from \"framer\";\nexport function colorFromToken(color) {\n    if (color.startsWith(\"var(--token-\")) return \"rgb\" + color.split(\") /*\")[0].split(\", rgb\")[1];\n    return color;\n}\nexport function colorTokentoValue(color) {\n    return Color(colorFromToken(color)).toValue();\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"colorFromToken\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorTokentoValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./colorFromToken.map","import { MotionValue } from \"framer\";\nexport const isMotionValue = (v)=>v instanceof MotionValue\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isMotionValue.map","import * as React from \"react\";\nconst letters = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\nconst l = ()=>letters[Math.floor(Math.random() * letters.length)]\n;\nexport const randomID = ()=>l() + l() + l() + l() + l() + l() + l() + l() + l()\n;\nfunction createUniqueClass(suffix) {\n    return `framer-${suffix}-${randomID()}`;\n}\nexport function useUniqueClassName(suffix, deps) {\n    const [className, setClassName] = React.useState(createUniqueClass(suffix));\n    React.useEffect(()=>{\n        setClassName(createUniqueClass(suffix));\n    }, [\n        suffix,\n        ...deps\n    ]);\n    return className;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useUniqueClassName\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useUniqueClassName.map","import { ControlType } from \"framer\";\n// I realize this only applies to select right now\n// but we can work on it in here\nexport function getVariantControls(Component, variant, additionalControls = {\n}) {\n    return {\n        [`${variant}TextColor`]: {\n            type: ControlType.Color,\n            title: \"Text Color\",\n            defaultValue: Component.defaultProps[`${variant}TextColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}IconColor`]: {\n            type: ControlType.Color,\n            title: \"Icon Color\",\n            defaultValue: Component.defaultProps[`${variant}IconColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}BackgroundColor`]: {\n            type: ControlType.Color,\n            title: \"Bg Color\",\n            defaultValue: Component.defaultProps[`${variant}BackgroundColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}BorderColor`]: {\n            type: ControlType.Color,\n            title: \"Border Color\",\n            defaultValue: Component.defaultProps[`${variant}BorderColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}BorderWidth`]: {\n            type: ControlType.Number,\n            title: \" \",\n            min: 0,\n            max: 5,\n            displayStepper: true,\n            defaultValue: Component.defaultProps[`${variant}BorderWidth`],\n            hidden: (props)=>props.variant !== variant\n        },\n        ...additionalControls\n    };\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"getVariantControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./variantUtils.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 { useEffect } from \"react\";\n//@ts-ignore\nimport { isMotionValue } from \"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";\nexport function useOnChange(value, callback) {\n    useEffect(()=>// @ts-ignore this should be detected as a MV :shrug:\n        isMotionValue(value) ? value.onChange(callback) : undefined\n    );\n}\nexport function useMultiOnChange(values, handler) {\n    useEffect(()=>{\n        const subscriptions = values.map((value)=>value.onChange(handler)\n        );\n        return ()=>subscriptions.forEach((unsubscribe)=>unsubscribe()\n            )\n        ;\n    });\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"Subscriber\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnChange\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiOnChange\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnChange.map","import { useCallback, useEffect, useRef } from \"react\";\nimport { motionValue, animate, RenderTarget } from \"framer\";\n// @ts-ignore\nimport { isMotionValue } from \"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";\n// @ts-ignore\nimport { useConstant } from \"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";\nexport function useAutoMotionValue(inputValue, options) {\n    var ref;\n    // Put options on a local ref\n    // Might wanna just memo instead but it works for now\n    const optionsRef = useRef(options);\n    const animation = useRef();\n    const didInitialMount = useRef(false);\n    const isOnCanvas = RenderTarget.current() === RenderTarget.canvas;\n    // in-progress - trying to figure out effect hooks\n    const onChangeDeps = (options === null || options === void 0 ? void 0 : options.onChangeDeps) ? options.onChangeDeps : [];\n    // Memoize the onChange handler\n    const onChange = useCallback(options === null || options === void 0 ? void 0 : options.onChange, [\n        ...onChangeDeps, \n    ]);\n    // Optionally scale the value from props\n    const transformer = useCallback((value)=>((ref = optionsRef.current) === null || ref === void 0 ? void 0 : ref.transform) ? optionsRef.current.transform(value) : value\n    , []);\n    // Create new MotionValue from inputValue\n    const value = useConstant(()=>isMotionValue(inputValue) ? inputValue : motionValue(transformer(inputValue))\n    );\n    // Setting value from prop change\n    useEffect(()=>{\n        if (!isMotionValue(inputValue) && didInitialMount.current) {\n            var ref1, ref2;\n            const newValue = transformer(inputValue);\n            (ref1 = animation.current) === null || ref1 === void 0 ? void 0 : ref1.stop();\n            // Call change callback\n            if (onChange) onChange(newValue, value);\n            // Trigger animation to new value\n            if (((ref2 = optionsRef.current) === null || ref2 === void 0 ? void 0 : ref2.animate) && !isOnCanvas) {\n                var ref3;\n                // @ts-ignore\n                animation.current = animate(value, newValue, (ref3 = optionsRef.current) === null || ref3 === void 0 ? void 0 : ref3.transition);\n            } else {\n                value.set(newValue);\n            }\n        }\n        didInitialMount.current = true;\n    }, [\n        inputValue,\n        ...onChangeDeps\n    ]);\n    return value;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}","// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.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 * as React from \"react\";\nexport function useControlledState(value) {\n    const [controlledValue, setValue] = React.useState(value);\n    React.useEffect(()=>{\n        setValue(value);\n    }, [\n        value\n    ]);\n    return [\n        controlledValue,\n        setValue\n    ];\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useControlledState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useControlledState.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{defaultEvents,localeOptions,fontControls,fontSizeOptions,emptyStateStyle,containerStyles,fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";import{useOnEnter,useOnExit}from\"https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";import{colorTokentoValue,colorFromToken}from\"https://framerusercontent.com/modules/D2Lz5CmnNVPZFFiZXalt/QaCzPbriZBfXWZIIycFI/colorFromToken.js\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";import{useUniqueClassName,randomID}from\"https://framerusercontent.com/modules/xDiQsqBGXzmMsv7AlEVy/uhunpMiNsbXxzjlXsg1y/useUniqueClassName.js\";import{getVariantControls}from\"https://framerusercontent.com/modules/ETACN5BJyFTSo0VVDJfu/NHRqowOiXkF9UwOzczF7/variantUtils.js\";import{useIsBrowserSafari}from\"https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js\";import{useMultiOnChange,useOnChange}from\"https://framerusercontent.com/modules/v9AWX2URmiYsHf7GbctE/XxKAZ9KlhWqf5x1JMyyF/useOnChange.js\";import{mstoMinAndSec,secondsToMinutes}from\"https://framerusercontent.com/modules/4zHZnO5JojN1PrIbu2jm/revv9QCWpkh8lPzi2jje/time.js\";import{useAutoMotionValue}from\"https://framerusercontent.com/modules/kNDwabfjDEb3vUxkQlZS/fSIr3AOAYbGlfSPgXpYu/useAutoMotionValue.js\";import{useFontControls}from\"https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js\";import{useRenderTarget,useIsInPreview,useIsOnCanvas}from\"https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js\";import{useControlledState}from\"https://framerusercontent.com/modules/zGkoP8tPDCkoBzMdt5uq/0zFSjxIYliHxrQQnryFX/useControlledState.js\";import{usePadding,useRadius,paddingControl,borderRadiusControl}from\"https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js\";import{detectAutoSizingAxis}from\"https://framerusercontent.com/modules/8CkHAZatUz1UR8jNTcfD/HwbnIAZlUmQ2oTpcLkaH/detectAutoSizingAxis.js\";export{useOnEnter,useOnExit,defaultEvents,isMotionValue,colorFromToken,colorTokentoValue,localeOptions,fontControls,fontSizeOptions,emptyStateStyle,containerStyles,fontStack,useUniqueClassName,getVariantControls,useIsBrowserSafari,randomID,useConstant,useMultiOnChange,useOnChange,usePadding,useRadius,paddingControl,borderRadiusControl,mstoMinAndSec,useFontControls,secondsToMinutes,useAutoMotionValue,useRenderTarget,useIsInPreview,useControlledState,detectAutoSizingAxis,useIsOnCanvas,};\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useUniqueClassName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiOnChange\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnChange\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorTokentoValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getVariantControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorFromToken\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useControlledState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useAutoMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsInPreview\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"detectAutoSizingAxis\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"mstoMinAndSec\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnEnter\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"secondsToMinutes\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don’t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can’t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can’t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading…\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map","import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"⭐️\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0—1—2—3—4—5—0 */let isSelected=wrappedIndex===index;/* Go 0—5—4—3—2—1—0—5 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map","// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gybfIKwYpfZDJVqgsx3R/mqtW9OWqZ7xmhgGe1Da8/hIEIH6UA5.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fWT9qLtWdk7PmcbCxrij/ePDD1dNfTsO1ULcppXFt/I1USk4ukl.js\";const enabledGestures={s1a0e_DH_:{hover:true}};const serializationHash=\"framer-KMwmL\";const variantClassNames={s1a0e_DH_:\"framer-v-3sg4i6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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??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 getProps=({desc,height,id,image,preTitle,title,width,...props})=>{return{...props,hLy2FkV4x:title??props.hLy2FkV4x??\"Explore Premium Our Line‑Up\",IcfmRFEiX:preTitle??props.IcfmRFEiX??\"Step 1 — Dream It\",JCIDf7Qup:image??props.JCIDf7Qup??{alt:\"\",pixelHeight:1128,pixelWidth:1564,src:\"https://framerusercontent.com/images/EYrbb2VgJHquBBbvFrhkV7PGxU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EYrbb2VgJHquBBbvFrhkV7PGxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/EYrbb2VgJHquBBbvFrhkV7PGxU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EYrbb2VgJHquBBbvFrhkV7PGxU.png 1564w\"},PwHwz7yd5:desc??props.PwHwz7yd5??\"Explore our Premium and curated range of cabinets, from space-saving bartops to full-size showpieces.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,JCIDf7Qup,IcfmRFEiX,hLy2FkV4x,PwHwz7yd5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"s1a0e_DH_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({\"s1a0e_DH_-hover\":{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3sg4i6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"s1a0e_DH_\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04) 100%)\",backgroundColor:\"rgba(255, 255, 255, 0.04)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"s1a0e_DH_-hover\":{\"--border-color\":\"rgba(197, 36, 36, 0.2)\",background:\"radial-gradient(170.34314017573456% 118.1784670109002% at 0% 0%, rgb(255, 255, 255) 0%, rgb(197, 36, 36) 20.999997854232788%, rgb(10, 2, 2) 71.00000381469727%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"s1a0e_DH_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(JCIDf7Qup)},className:\"framer-4wllw5\",\"data-framer-name\":\"Frame 10\",layoutDependency:layoutDependency,layoutId:\"cWyMSs8EB\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hkccr1\",\"data-framer-name\":\"Frame 12\",layoutDependency:layoutDependency,layoutId:\"kVurPZAGJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nfx6qa\",\"data-framer-name\":\"Frame 11\",layoutDependency:layoutDependency,layoutId:\"uIZTvIlxA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RGVsYSBHb3RoaWMgT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Dela Gothic One\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 103, 119))\",\"--framer-text-transform\":\"uppercase\"},children:\"Step 1 — Dream It\"})}),className:\"framer-1fhjpi\",\"data-framer-name\":\"Step 1 — Dream It\",fonts:[\"GF;Dela Gothic One-regular\"],layoutDependency:layoutDependency,layoutId:\"JQdr2_vNP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 103, 119)\",\"--framer-paragraph-spacing\":\"0px\"},text:IcfmRFEiX,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-q1zlym\",\"data-styles-preset\":\"hIEIH6UA5\",children:\"Explore Premium Our Line‑Up\"})}),className:\"framer-nh0m68\",\"data-framer-name\":\"Explore Premium Our Line‑Up\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ifFT0K71g\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:hLy2FkV4x,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Explore our Premium and curated range of cabinets, from space-saving bartops to full-size showpieces.\"})}),className:\"framer-ej49vd\",\"data-framer-name\":\"Explore our Premium and curated range of cabinets, from space-saving bartops to full-size showpieces.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pJHn9YzHU\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:PwHwz7yd5,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KMwmL.framer-1wcomzg, .framer-KMwmL .framer-1wcomzg { display: block; }\",\".framer-KMwmL.framer-3sg4i6 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 373px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KMwmL .framer-4wllw5 { aspect-ratio: 1.322695035460993 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 282px); overflow: hidden; position: relative; width: 100%; }\",\".framer-KMwmL .framer-1hkccr1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-KMwmL .framer-1nfx6qa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KMwmL .framer-1fhjpi { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KMwmL .framer-nh0m68, .framer-KMwmL .framer-ej49vd { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-KMwmL[data-border=\"true\"]::after, .framer-KMwmL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 536\n * @framerIntrinsicWidth 373\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TKTdIvw2Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JCIDf7Qup\":\"image\",\"IcfmRFEiX\":\"preTitle\",\"hLy2FkV4x\":\"title\",\"PwHwz7yd5\":\"desc\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerICMV999pc=withCSS(Component,css,\"framer-KMwmL\");export default FramerICMV999pc;FramerICMV999pc.displayName=\"process card\";FramerICMV999pc.defaultProps={height:536,width:373};addPropertyControls(FramerICMV999pc,{JCIDf7Qup:{__defaultAssetReference:\"data:framer/asset-reference,EYrbb2VgJHquBBbvFrhkV7PGxU.png?originalFilename=Frame+10.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,EYrbb2VgJHquBBbvFrhkV7PGxU.png?originalFilename=Frame+10.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},IcfmRFEiX:{defaultValue:\"Step 1 — Dream It\",displayTextArea:false,title:\"Pre title\",type:ControlType.String},hLy2FkV4x:{defaultValue:\"Explore Premium Our Line‑Up\",displayTextArea:false,title:\"Title\",type:ControlType.String},PwHwz7yd5:{defaultValue:\"Explore our Premium and curated range of cabinets, from space-saving bartops to full-size showpieces.\",displayTextArea:false,title:\"Desc\",type:ControlType.String}});addFonts(FramerICMV999pc,[{explicitInter:true,fonts:[{family:\"Dela Gothic One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/delagothicone/v18/hESp6XxvMDRA-2eD0lXpDa6QkBAGQEsJQAlbUA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerICMV999pc\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"JCIDf7Qup\\\":\\\"image\\\",\\\"IcfmRFEiX\\\":\\\"preTitle\\\",\\\"hLy2FkV4x\\\":\\\"title\\\",\\\"PwHwz7yd5\\\":\\\"desc\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"536\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TKTdIvw2Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"373\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ICMV999pc.map","// Generated by Framer (0784c89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gybfIKwYpfZDJVqgsx3R/mqtW9OWqZ7xmhgGe1Da8/hIEIH6UA5.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fWT9qLtWdk7PmcbCxrij/ePDD1dNfTsO1ULcppXFt/I1USk4ukl.js\";const enabledGestures={jP9Y0Z1HW:{hover:true}};const serializationHash=\"framer-vUSbL\";const variantClassNames={jP9Y0Z1HW:\"framer-v-1x49dg7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 getProps=({height,id,image,link,subtitle,title,width,...props})=>{return{...props,eV2H6FcaT:title??props.eV2H6FcaT??\"Virtual Pinball\",JN73TL3T0:image??props.JN73TL3T0??{alt:\"\",pixelHeight:2522,pixelWidth:2522,src:\"https://framerusercontent.com/images/LMB1PP138PhLrtDHjD7kgTZXUY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LMB1PP138PhLrtDHjD7kgTZXUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/LMB1PP138PhLrtDHjD7kgTZXUY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LMB1PP138PhLrtDHjD7kgTZXUY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LMB1PP138PhLrtDHjD7kgTZXUY.png 2522w\"},Kqxuls4Jp:link??props.Kqxuls4Jp,o_hfGsgov:subtitle??props.o_hfGsgov??\"More then 1300+ games in one amazing machine\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eV2H6FcaT,o_hfGsgov,JN73TL3T0,Kqxuls4Jp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jP9Y0Z1HW\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Kqxuls4Jp,motionChild:true,nodeId:\"jP9Y0Z1HW\",openInNewTab:true,scopeId:\"W23szoBzp\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1x49dg7\",className,classNames)} framer-c02mct`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jP9Y0Z1HW\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04) 100%)\",backgroundColor:\"rgba(255, 255, 255, 0.04)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"jP9Y0Z1HW-hover\":{\"--border-color\":\"rgba(197, 36, 36, 0.3)\",background:\"radial-gradient(170.34314017573456% 118.1784670109002% at 0% 0%, rgb(255, 255, 255) 0%, rgb(197, 36, 36) 20.999997854232788%, rgb(10, 2, 2) 71.00000381469727%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"jP9Y0Z1HW-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-adowlj\",\"data-border\":true,\"data-framer-name\":\"Frame 10\",layoutDependency:layoutDependency,layoutId:\"gcQmZqnRN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.04)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+.4651),sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) / 1.003)`,...toResponsiveImage(JN73TL3T0),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-dtbrzr\",\"data-border\":true,\"data-framer-name\":\"Frame 13\",layoutDependency:layoutDependency,layoutId:\"t0S_6uGze\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},transformTemplate:transformTemplate1,variants:{\"jP9Y0Z1HW-hover\":{\"--border-color\":\"rgba(197, 36, 36, 0.08)\"}}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qk7j8p\",\"data-framer-name\":\"Frame 12\",layoutDependency:layoutDependency,layoutId:\"ZPaeyR1Mz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cey2s3\",\"data-framer-name\":\"Frame 11\",layoutDependency:layoutDependency,layoutId:\"aXiZLRahe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.7px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\",\"--framer-text-transform\":\"uppercase\"},children:\"Collection\"})}),className:\"framer-1h3smp0\",\"data-framer-name\":\"Collection\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"oUFOV2oU1\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-q1zlym\",\"data-styles-preset\":\"hIEIH6UA5\",children:\"Virtual Pinball\"})}),className:\"framer-1m4yzpz\",\"data-framer-name\":\"Virtual Pinball\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RY7MF9DQS\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:eV2H6FcaT,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"More then 1300+ games in one amazing machine\"})}),className:\"framer-1gaa2o2\",\"data-framer-name\":\"More then 1300+ games in one amazing machine\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jLDY9H68C\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:o_hfGsgov,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vUSbL.framer-c02mct, .framer-vUSbL .framer-c02mct { display: block; }\",\".framer-vUSbL.framer-1x49dg7 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; text-decoration: none; width: 387px; }\",\".framer-vUSbL .framer-adowlj { aspect-ratio: 1.202127659574468 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 282px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vUSbL .framer-dtbrzr { aspect-ratio: 1.198581560283688 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 282px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vUSbL .framer-qk7j8p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vUSbL .framer-cey2s3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vUSbL .framer-1h3smp0 { flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 339px; word-break: break-word; word-wrap: break-word; }\",\".framer-vUSbL .framer-1m4yzpz, .framer-vUSbL .framer-1gaa2o2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-vUSbL[data-border=\"true\"]::after, .framer-vUSbL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 486\n * @framerIntrinsicWidth 387\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Pw2BJEwi9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eV2H6FcaT\":\"title\",\"o_hfGsgov\":\"subtitle\",\"JN73TL3T0\":\"image\",\"Kqxuls4Jp\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW23szoBzp=withCSS(Component,css,\"framer-vUSbL\");export default FramerW23szoBzp;FramerW23szoBzp.displayName=\"Collection Card\";FramerW23szoBzp.defaultProps={height:486,width:387};addPropertyControls(FramerW23szoBzp,{eV2H6FcaT:{defaultValue:\"Virtual Pinball\",displayTextArea:false,title:\"Title\",type:ControlType.String},o_hfGsgov:{defaultValue:\"More then 1300+ games in one amazing machine\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},JN73TL3T0:{__defaultAssetReference:\"data:framer/asset-reference,LMB1PP138PhLrtDHjD7kgTZXUY.png?originalFilename=Frame+13.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,LMB1PP138PhLrtDHjD7kgTZXUY.png?originalFilename=Frame+13.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},Kqxuls4Jp:{title:\"Link\",type:ControlType.Link}});addFonts(FramerW23szoBzp,[{explicitInter:true,fonts:[{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v24/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp9R1oJ0vyVQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW23szoBzp\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"eV2H6FcaT\\\":\\\"title\\\",\\\"o_hfGsgov\\\":\\\"subtitle\\\",\\\"JN73TL3T0\\\":\\\"image\\\",\\\"Kqxuls4Jp\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"486\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pw2BJEwi9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"387\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (bf2ee14)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Archivo-medium\",\"FS;Archivo-bold\",\"FS;Archivo-bold italic\",\"FS;Archivo-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ISYWGR43XD57J2U5VEYATNUZO57OCPH/UIED7ZBTCD42AJ7GJT5NWKWHCOVDRNAP/EPHSF4UBJRLGUILEFJVCMY7ET4W5HPUF.woff2\",weight:\"500\"},{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/RJX4LSNI55LNZ6QWGQALARVRCFUYJDBE/HQPW4MP6HXPYZKXF6CFWGJ6ZOJBHKM3X/UHPKREF72UMVMQSKHPDQ42AVOZPICLOJ.woff2\",weight:\"700\"},{family:\"Archivo\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KQRPW26V7MQVOVIROFMASPZA32ATHS6D/IXS7QF2ZEPITRFFHZVK6DY26UIO5JY5W/3N3HRVZHDNQLKFXB3E335N7AXAKKO7QL.woff2\",weight:\"700\"},{family:\"Archivo\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LI7A4SRW3BDRDSU6O6XU25VZ4OLHFNPS/NYVLAUHN4U2SSDS6DXNULP3ABEKGCHY4/T7LX6PNCPANWSGBNSTIYL3B4LD7QGPID.woff2\",weight:\"500\"}]}];export const css=['.framer-S2JB7 .framer-styles-preset-3r7zay:not(.rich-text-wrapper), .framer-S2JB7 .framer-styles-preset-3r7zay.rich-text-wrapper p { --framer-font-family: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-bold: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-italic: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-0f670151-38b2-4ba2-8b10-7ebf41c83bdf, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-S2JB7 .framer-styles-preset-3r7zay:not(.rich-text-wrapper), .framer-S2JB7 .framer-styles-preset-3r7zay.rich-text-wrapper p { --framer-font-family: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-bold: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-italic: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-0f670151-38b2-4ba2-8b10-7ebf41c83bdf, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-S2JB7 .framer-styles-preset-3r7zay:not(.rich-text-wrapper), .framer-S2JB7 .framer-styles-preset-3r7zay.rich-text-wrapper p { --framer-font-family: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-bold: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-family-italic: \"Archivo\", \"Archivo Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-0f670151-38b2-4ba2-8b10-7ebf41c83bdf, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-S2JB7\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (6c2a425)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import PrimaryButton from\"#framer/local/canvasComponent/c6QqU0dba/c6QqU0dba.js\";import ProcessCard from\"#framer/local/canvasComponent/ICMV999pc/ICMV999pc.js\";import SecondaryButton from\"#framer/local/canvasComponent/TSnvFKCxX/TSnvFKCxX.js\";import CollectionCard from\"#framer/local/canvasComponent/W23szoBzp/W23szoBzp.js\";import Collections from\"#framer/local/collection/SuYZ40R2o/SuYZ40R2o.js\";import*as sharedStyle2 from\"#framer/local/css/A8vbOK0xh/A8vbOK0xh.js\";import*as sharedStyle1 from\"#framer/local/css/FRMAPkPdA/FRMAPkPdA.js\";import*as sharedStyle from\"#framer/local/css/h2fGU4Nnl/h2fGU4Nnl.js\";import*as sharedStyle6 from\"#framer/local/css/I1USk4ukl/I1USk4ukl.js\";import*as sharedStyle3 from\"#framer/local/css/KHHc7RdjW/KHHc7RdjW.js\";import*as sharedStyle4 from\"#framer/local/css/lvFPcbF69/lvFPcbF69.js\";import*as sharedStyle7 from\"#framer/local/css/qhevn0cHS/qhevn0cHS.js\";import*as sharedStyle5 from\"#framer/local/css/Wk6Yo2mVD/Wk6Yo2mVD.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SecondaryButtonFonts=getFonts(SecondaryButton);const PrimaryButtonFonts=getFonts(PrimaryButton);const MotionDivWithFX=withFX(motion.div);const CollectionCardFonts=getFonts(CollectionCard);const SlideshowFonts=getFonts(Slideshow);const ProcessCardFonts=getFonts(ProcessCard);const EmbedFonts=getFonts(Embed);const breakpoints={bY09OnNjP:\"(max-width: 809px)\",h2UtPtfIz:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HOhsY\";const variantClassNames={bY09OnNjP:\"framer-v-p70dvl\",h2UtPtfIz:\"framer-v-xndt5\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2,skewX:0,skewY:0,x:0,y:-460};const transition1={delay:.3,duration:1.5,ease:[.68,0,0,.99],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:1.9,duration:1.2,ease:[.68,0,0,1],type:\"tween\"};const animation2={filter:\"blur(6px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={damping:100,delay:.05,mass:3,stiffness:500,type:\"spring\"};const textEffect={effect:animation2,repeat:false,startDelay:2.2,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation2,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"bY09OnNjP\",Tablet:\"h2UtPtfIz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,FPafaQWCFJNDVRHncZ,yPiyJVzcgJNDVRHncZ,jcovQAyN9JNDVRHncZ,RswEEpZVlJNDVRHncZ,idJNDVRHncZ,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"CYUiNEbhe\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"xII0FRd2d\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"MFH4SMTwJ\");const dynamicRef=useDynamicRefs();const isDisplayed=()=>{if(!isBrowser())return true;if([\"h2UtPtfIz\",\"bY09OnNjP\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"bY09OnNjP\")return false;return true;};const elementId3=useRouteElementId(\"jApkZ3w1f\");const ref3=React.useRef(null);const elementId4=useRouteElementId(\"KdbXDIVbk\");const ref4=React.useRef(null);const elementId5=useRouteElementId(\"DEqDfYkLh\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-8mpuj3\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-smi6k7\",\"data-framer-name\":\"Wapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ttk9w5\",\"data-framer-name\":\"Ellipse 1\",style:{rotate:-180},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+-71),pixelHeight:1351,pixelWidth:1351,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 21px)`,src:\"https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif\",srcSet:\"https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif 1351w\"},transformTemplate:undefined},h2UtPtfIz:{background:{alt:\"\",fit:\"fill\",pixelHeight:1351,pixelWidth:1351,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 107px)`,src:\"https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif\",srcSet:\"https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif 1351w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+-75),pixelHeight:1351,pixelWidth:1351,sizes:\"968px\",src:\"https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif\",srcSet:\"https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8yLdQYeAZn5yrdNCCQ7M2rxk.gif 1351w\"},className:\"framer-1xzx7i5\",\"data-framer-name\":\"image 3\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-spkq4w\",\"data-framer-name\":\"Frame 4\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xhzi4j\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gkq7yc\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lt5bqe\",\"data-border\":true,\"data-framer-name\":\"Border\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vh98k8\",\"data-border\":true,\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-okl0o6\",\"data-styles-preset\":\"h2fGU4Nnl\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(197, 36, 36) 0%, rgb(237, 206, 206) 42.3828%, rgb(255, 255, 255) 100%)\"},children:\"Premium Arcade Experiences\"})})}),className:\"framer-1xrmp9o\",\"data-framer-name\":\"Premium Arcade Experiences\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1owuadt\",\"data-styles-preset\":\"FRMAPkPdA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Build the arcade of your dreams. \"})}),className:\"framer-2qbxe8\",\"data-framer-name\":\"Build the arcade of your dreams.\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3r7zay\",\"data-styles-preset\":\"A8vbOK0xh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Bring retro gaming to life with fully customizable machines - tailored to your space, your games, and your style. \"})}),className:\"framer-1tshyux\",\"data-framer-name\":\"Bring retro gaming to life with fully customisable machines - tailored to your space, your games, and your style.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jspsy\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+120+0+619-557.1+0+59.81+10+312.8766+0+0},h2UtPtfIz:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+120+0+909-818.1+0+311.2234+40+312.8766+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1urkjqt-container\",nodeId:\"NufXW3BSN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{JjKCxcdZy:resolvedLinks[2],style:{width:\"100%\"}},h2UtPtfIz:{JjKCxcdZy:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",HnhrEJOZU:false,id:\"NufXW3BSN\",JjKCxcdZy:resolvedLinks[0],layoutId:\"NufXW3BSN\",PuXSnXL2M:\"View Gallery\",variant:\"DljhopUlq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+120+0+619-557.1+0+59.81+10+312.8766+0+70.4134},h2UtPtfIz:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+120+0+909-818.1+0+311.2234+40+312.8766+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fxm1av-container\",nodeId:\"bWQSUmPOH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(PrimaryButton,{AbruKF3hF:\"Browse Collections\",height:\"100%\",id:\"bWQSUmPOH\",KJdbVZ0fL:false,layoutId:\"bWQSUmPOH\",width:\"100%\",wRIofF74E:false})})})})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wulqsu\",\"data-framer-name\":\"Collections\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t19bw4\",\"data-framer-name\":\"Sticky\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wv4ll3\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fd76ba\",\"data-styles-preset\":\"KHHc7RdjW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Collections\"})}),className:\"framer-vxxymr\",\"data-framer-name\":\"Seamless Activity Planning with Voice-Activated AI\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1io4t39\",\"data-styles-preset\":\"lvFPcbF69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Explore our range of premium arcade machines and gaming equipment\"})}),className:\"framer-65aem4\",\"data-framer-name\":\"Our pre recorded sessions contain all the essentials to help you fix your mood in few sessions\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvj9g3\",\"data-framer-name\":\"Wraper\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{__framer__styleTransformEffectEnabled:undefined,style:{}},h2UtPtfIz:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:.3,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hb7csb\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{query:{from:{alias:\"JNDVRHncZ\",data:Collections,type:\"Collection\"},orderBy:[{collection:\"JNDVRHncZ\",name:\"jcovQAyN9\",type:\"Identifier\"}],select:[{collection:\"JNDVRHncZ\",name:\"FPafaQWCF\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"yPiyJVzcg\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"jcovQAyN9\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"RswEEpZVl\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JNDVRHncZ\",data:Collections,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{collection:\"JNDVRHncZ\",name:\"jcovQAyN9\",type:\"Identifier\"}],select:[{collection:\"JNDVRHncZ\",name:\"FPafaQWCF\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"yPiyJVzcg\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"jcovQAyN9\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"RswEEpZVl\",type:\"Identifier\"},{collection:\"JNDVRHncZ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({FPafaQWCF:FPafaQWCFJNDVRHncZ,id:idJNDVRHncZ,jcovQAyN9:jcovQAyN9JNDVRHncZ,RswEEpZVl:RswEEpZVlJNDVRHncZ,yPiyJVzcg:yPiyJVzcgJNDVRHncZ},index)=>{FPafaQWCFJNDVRHncZ??=\"\";yPiyJVzcgJNDVRHncZ??=\"\";jcovQAyN9JNDVRHncZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JNDVRHncZ-${idJNDVRHncZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FPafaQWCF:FPafaQWCFJNDVRHncZ},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dhbmor\",id:`${FPafaQWCFJNDVRHncZ}-${elementId2}`,ref:dynamicRef(`${FPafaQWCFJNDVRHncZ}-${elementId2}`),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{y:(componentViewport?.y||0)+0+739+0+0+100+266+0+0+0+0},h2UtPtfIz:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"350px\",y:(componentViewport?.y||0)+0+1029+0+0+100+270+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k3pl1z-container\",nodeId:\"ldC60daO4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CollectionCard,{eV2H6FcaT:yPiyJVzcgJNDVRHncZ,height:\"100%\",id:\"ldC60daO4\",JN73TL3T0:toResponsiveImage(RswEEpZVlJNDVRHncZ),layoutId:\"ldC60daO4\",o_hfGsgov:jcovQAyN9JNDVRHncZ,style:{width:\"100%\"},width:\"100%\"})})})})})})},idJNDVRHncZ);})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpwyfn hidden-xndt5 hidden-p70dvl\",\"data-framer-name\":\"fade lef\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-116r09n hidden-xndt5 hidden-p70dvl\",\"data-framer-name\":\"fade rgt\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1anyf4q\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8923)`,y:(componentViewport?.y||0)+0+739+0+0+100+820+0+0},h2UtPtfIz:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1029+0+0+100+824+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kn449u-container\",nodeId:\"jYNeuvn1R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{JjKCxcdZy:resolvedLinks1[2],style:{width:\"100%\"}},h2UtPtfIz:{JjKCxcdZy:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",HnhrEJOZU:false,id:\"jYNeuvn1R\",JjKCxcdZy:resolvedLinks1[0],layoutId:\"jYNeuvn1R\",PuXSnXL2M:\"View Gallery\",variant:\"DljhopUlq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8923)`,y:(componentViewport?.y||0)+0+739+0+0+100+820+0+70.4134},h2UtPtfIz:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1029+0+0+100+824+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6r4lhv-container\",nodeId:\"QkAgBDqsm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(PrimaryButton,{AbruKF3hF:\"Browse Collections\",height:\"100%\",id:\"QkAgBDqsm\",KJdbVZ0fL:false,layoutId:\"QkAgBDqsm\",width:\"100%\",wRIofF74E:false})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3n7ki\",\"data-framer-name\":\"CONTENT 1\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ni4fui hidden-p70dvl\",\"data-border\":true,\"data-framer-name\":\"Background+Border\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h2UtPtfIz:{background:{alt:\"\",fit:\"fill\",pixelHeight:753,pixelWidth:960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 144px)`,src:\"https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png\",srcSet:\"https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3029+80+32+0),pixelHeight:753,pixelWidth:960,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 120px) * 0.4118, 1px) - 64px)`,src:\"https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png\",srcSet:\"https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png 960w\"},className:\"framer-12h1tdf\",\"data-framer-name\":\"Process Image 01\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12501el\",\"data-framer-name\":\"Frame 9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x3apkg\",\"data-styles-preset\":\"Wk6Yo2mVD\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(237, 206, 206) 0%, rgb(255, 255, 255) 48%)\"},children:\"About Custom  Multicades\"})})}),className:\"framer-1o6ybl1\",\"data-framer-name\":\"Heading 1 → Designed Around Your Workflow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Custom Multicades is owned by Chris and Linda Stewart and operated out of Louisville, KY. With over 20 years in the amusement business, we're dedicated to creating the highest quality arcade machines with the finest parts and workmanship.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Since taking over the business in Spring 2019, we've created hundreds of machines, each custom-built to our clients' specifications. Our passion is your arcade, your design.\"})]}),className:\"framer-cmkyyi\",\"data-framer-name\":\"Custom Multicades is owned by Chris and Linda Stewart and operated out of Louisville, KY. With over 20 years in the amusement business, we're dedicated to creating the highest quality arcade machines with the finest parts and workmanship. Since taking over the business in Spring 2019, we've created hundreds of machines, each custom-built to our clients' specifications. Our passion is your arcade, your design.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oy769b\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+0+1843.4134+20+0+0+422.4+0+0},h2UtPtfIz:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96.4134px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3029+90.5033+0+422.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-46rkl7-container\",nodeId:\"UiJOZ7bcx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{JjKCxcdZy:resolvedLinks2[2],style:{width:\"100%\"}},h2UtPtfIz:{JjKCxcdZy:resolvedLinks2[1],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",HnhrEJOZU:false,id:\"UiJOZ7bcx\",JjKCxcdZy:resolvedLinks2[0],layoutId:\"UiJOZ7bcx\",PuXSnXL2M:\"View Gallery\",variant:\"DljhopUlq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+0+1843.4134+20+0+0+422.4+0+70.4134},h2UtPtfIz:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96.4134px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3029+90.5033+0+422.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w2lahs-container\",nodeId:\"ou0Dby3QG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{style:{width:\"100%\"}},h2UtPtfIz:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(PrimaryButton,{AbruKF3hF:\"Browse Collections\",height:\"100%\",id:\"ou0Dby3QG\",KJdbVZ0fL:false,layoutId:\"ou0Dby3QG\",width:\"100%\",wRIofF74E:false})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8qa7p\",\"data-framer-name\":\"CONTENT 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kg0zk\",\"data-framer-name\":\"Frame 9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x3apkg\",\"data-styles-preset\":\"Wk6Yo2mVD\",children:\"Custom Built to Your Specifications\"})}),className:\"framer-1fmjsd1\",\"data-framer-name\":\"Heading 1 → Designed Around Your Workflow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o11eor\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"At Custom Multicades, we believe that your arcade should reflect your unique style and gaming preferences. That's why we offer a wide range of customization options for every machine we build.\"})}),className:\"framer-3f4vd5\",\"data-framer-name\":\"Custom Multicades is owned by Chris and Linda Stewart and operated out of Louisville, KY. With over 20 years in the amusement business, we're dedicated to creating the highest quality arcade machines with the finest parts and workmanship. Since taking over the business in Spring 2019, we've created hundreds of machines, each custom-built to our clients' specifications. Our passion is your arcade, your design.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10jn2c7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rk0k5o\",\"data-styles-preset\":\"qhevn0cHS\",children:\"Personalized Design\"})}),className:\"framer-5ifkg8\",\"data-framer-name\":\"Heading 1 → Designed Around Your Workflow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Choose your cabinet colors, T-molding, joysticks, and buttons to create a unique look\"})}),className:\"framer-nyjenu\",\"data-framer-name\":\"Custom Multicades is owned by Chris and Linda Stewart and operated out of Louisville, KY. With over 20 years in the amusement business, we're dedicated to creating the highest quality arcade machines with the finest parts and workmanship. Since taking over the business in Spring 2019, we've created hundreds of machines, each custom-built to our clients' specifications. Our passion is your arcade, your design.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2d8x3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rk0k5o\",\"data-styles-preset\":\"qhevn0cHS\",children:\"Game Selection\"})}),className:\"framer-8xuas\",\"data-framer-name\":\"Heading 1 → Designed Around Your Workflow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Pick from various game packs with up to 3000 classic titles\"})}),className:\"framer-83vd5h\",\"data-framer-name\":\"Custom Multicades is owned by Chris and Linda Stewart and operated out of Louisville, KY. With over 20 years in the amusement business, we're dedicated to creating the highest quality arcade machines with the finest parts and workmanship. Since taking over the business in Spring 2019, we've created hundreds of machines, each custom-built to our clients' specifications. Our passion is your arcade, your design.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5x06j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rk0k5o\",\"data-styles-preset\":\"qhevn0cHS\",children:\"Cabinet Styles\"})}),className:\"framer-12zspw8\",\"data-framer-name\":\"Heading 1 → Designed Around Your Workflow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d051ao\",\"data-styles-preset\":\"I1USk4ukl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Choose from upright, cocktail, countertop, or specialty cabinets like our Bourbon Barrel\"})}),className:\"framer-1xycran\",\"data-framer-name\":\"Custom Multicades is owned by Chris and Linda Stewart and operated out of Louisville, KY. With over 20 years in the amusement business, we're dedicated to creating the highest quality arcade machines with the finest parts and workmanship. Since taking over the business in Spring 2019, we've created hundreds of machines, each custom-built to our clients' specifications. Our passion is your arcade, your design.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kmt433\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KdbXDIVbk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+0+2490.2268+20+0+0+856+0+0},h2UtPtfIz:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96.4134px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3686.4066+80+0+856+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8pzt2-container\",nodeId:\"kKfpvJFU_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{JjKCxcdZy:resolvedLinks3[2],style:{width:\"100%\"}},h2UtPtfIz:{JjKCxcdZy:resolvedLinks3[1],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",HnhrEJOZU:false,id:\"kKfpvJFU_\",JjKCxcdZy:resolvedLinks3[0],layoutId:\"kKfpvJFU_\",PuXSnXL2M:\"View Gallery\",variant:\"DljhopUlq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+0+2490.2268+20+0+0+856+0+70.4134},h2UtPtfIz:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96.4134px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3686.4066+80+0+856+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qpxyhw-container\",nodeId:\"fDg4tidm4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{style:{width:\"100%\"}},h2UtPtfIz:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(PrimaryButton,{AbruKF3hF:\"Browse Collections\",height:\"100%\",id:\"fDg4tidm4\",KJdbVZ0fL:false,layoutId:\"fDg4tidm4\",width:\"100%\",wRIofF74E:false})})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ipqm3y hidden-p70dvl\",\"data-border\":true,\"data-framer-name\":\"Background+Border\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h2UtPtfIz:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1736,pixelWidth:1856,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 144px)`,src:\"https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png\",srcSet:\"https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png 1856w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3686.4066+286.2967+32+0),pixelHeight:1736,pixelWidth:1856,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 120px) / 2.25, 1px) - 64px)`,src:\"https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png\",srcSet:\"https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6kny0mOZjOM9io2B1ur6r2J0H4Q.png 1856w\"},className:\"framer-ytcttb\",\"data-framer-name\":\"Process Image 01\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vahlzf\",\"data-framer-name\":\"Work\",id:elementId3,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-elbrnj\",\"data-framer-name\":\"Sticky\",id:elementId4,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tv1hqx\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fd76ba\",\"data-styles-preset\":\"KHHc7RdjW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Work in Action\"})}),className:\"framer-75kuhm\",\"data-framer-name\":\"Seamless Activity Planning with Voice-Activated AI\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1io4t39\",\"data-styles-preset\":\"lvFPcbF69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"See examples of our custom-built arcade machines and installations\"})}),className:\"framer-g5b2m1\",\"data-framer-name\":\"Our pre recorded sessions contain all the essentials to help you fix your mood in few sessions\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3weebw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RKK1EahVQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.73)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},itemAmount:2},h2UtPtfIz:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.73)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},itemAmount:4}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.73)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:11,height:\"100%\",id:\"RKK1EahVQ\",intervalControl:1.5,itemAmount:6,layoutId:\"RKK1EahVQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-suz9ou\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2016,intrinsicWidth:980,pixelHeight:2016,pixelWidth:980,sizes:\"199.7917px\",src:\"https://framerusercontent.com/images/fMLeiXtkX4WfjuhhZEidozhmhlE.png\",srcSet:\"https://framerusercontent.com/images/fMLeiXtkX4WfjuhhZEidozhmhlE.png 980w\"},className:\"framer-rta55c\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1re6w3r\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:\"186px\",src:\"https://framerusercontent.com/images/rLswOazJoxAz8rlVZRzLKEQUeU.png\",srcSet:\"https://framerusercontent.com/images/rLswOazJoxAz8rlVZRzLKEQUeU.png?scale-down-to=1024 768w,https://framerusercontent.com/images/rLswOazJoxAz8rlVZRzLKEQUeU.png 1536w\"},className:\"framer-1e2kbg0\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1129,intrinsicWidth:1440,pixelHeight:1129,pixelWidth:1440,sizes:\"186px\",src:\"https://framerusercontent.com/images/k7eTjIzbuH6J4PbEMR9xgexwX0.png\",srcSet:\"https://framerusercontent.com/images/k7eTjIzbuH6J4PbEMR9xgexwX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/k7eTjIzbuH6J4PbEMR9xgexwX0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k7eTjIzbuH6J4PbEMR9xgexwX0.png 1440w\"},className:\"framer-u6c1wl\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wa4bas\",\"data-framer-name\":\"3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1392,intrinsicWidth:640,pixelHeight:1392,pixelWidth:640,sizes:\"188.9655px\",src:\"https://framerusercontent.com/images/n5NmQNlTKAwyYobV4fkTgbIK6k.png\",srcSet:\"https://framerusercontent.com/images/n5NmQNlTKAwyYobV4fkTgbIK6k.png 640w\"},className:\"framer-uqmq5w\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-egpk2m\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:2048,pixelHeight:1152,pixelWidth:2048,sizes:\"288px\",src:\"https://framerusercontent.com/images/5JlXvB8FkGH5LPO4gwM21LBkFd4.png\",srcSet:\"https://framerusercontent.com/images/5JlXvB8FkGH5LPO4gwM21LBkFd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JlXvB8FkGH5LPO4gwM21LBkFd4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5JlXvB8FkGH5LPO4gwM21LBkFd4.png 2048w\"},className:\"framer-11d8omz\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:753,intrinsicWidth:960,pixelHeight:753,pixelWidth:960,sizes:\"288px\",src:\"https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png\",srcSet:\"https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MTvvR5J5V5yeuI1KpmXdjM0rkw.png 960w\"},className:\"framer-hlmwg2\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hfuqsr\",\"data-framer-name\":\"5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:720,pixelHeight:960,pixelWidth:720,sizes:\"307px\",src:\"https://framerusercontent.com/images/iEfTj0RB0olwSl0mdlQvmua2nI.png\",srcSet:\"https://framerusercontent.com/images/iEfTj0RB0olwSl0mdlQvmua2nI.png 720w\"},className:\"framer-1u06vge\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-142ab3r\",\"data-framer-name\":\"6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1474,intrinsicWidth:625,pixelHeight:1474,pixelWidth:625,sizes:\"174.2707px\",src:\"https://framerusercontent.com/images/qieIobgyDj0j8nu8dvOg3q7tJEY.png\",srcSet:\"https://framerusercontent.com/images/qieIobgyDj0j8nu8dvOg3q7tJEY.png 625w\"},className:\"framer-czxxq5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1or1f2g\",\"data-framer-name\":\"7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:1512,pixelWidth:2016,sizes:\"222px\",src:\"https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png\",srcSet:\"https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png 2016w\"},className:\"framer-1eqcsyn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1280,pixelHeight:1280,pixelWidth:1280,sizes:\"222px\",src:\"https://framerusercontent.com/images/1wyULy1pZtLUqGOdnc21NnZEN8.png\",srcSet:\"https://framerusercontent.com/images/1wyULy1pZtLUqGOdnc21NnZEN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/1wyULy1pZtLUqGOdnc21NnZEN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1wyULy1pZtLUqGOdnc21NnZEN8.png 1280w\"},className:\"framer-wfij4w\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zu1kk8\",\"data-framer-name\":\"8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2016,intrinsicWidth:1504,pixelHeight:2016,pixelWidth:1504,sizes:\"190px\",src:\"https://framerusercontent.com/images/rX29kySdyKPrpB6xAroQjeSE7s.png\",srcSet:\"https://framerusercontent.com/images/rX29kySdyKPrpB6xAroQjeSE7s.png?scale-down-to=1024 763w,https://framerusercontent.com/images/rX29kySdyKPrpB6xAroQjeSE7s.png 1504w\"},className:\"framer-phka0z\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:1512,pixelWidth:2016,sizes:\"190px\",src:\"https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png\",srcSet:\"https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h5U1gVtE1tlxXEs4Bn6r8mPwOBE.png 2016w\"},className:\"framer-a0tfcw\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j8hymn\",\"data-framer-name\":\"9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1316,intrinsicWidth:640,pixelHeight:1316,pixelWidth:640,sizes:\"199.8784px\",src:\"https://framerusercontent.com/images/jqPQJQBWI5D2bc7AAsorjpcMY.png\",srcSet:\"https://framerusercontent.com/images/jqPQJQBWI5D2bc7AAsorjpcMY.png 640w\"},className:\"framer-1bi0jld\",\"data-framer-name\":\"Image\"})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8jecr3\",\"data-framer-name\":\"tesimonails\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lcs1l\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fd76ba\",\"data-styles-preset\":\"KHHc7RdjW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Custom Process\"})}),className:\"framer-rtktfc\",\"data-framer-name\":\"Seamless Activity Planning with Voice-Activated AI\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1io4t39\",\"data-styles-preset\":\"lvFPcbF69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Creating your dream arcade is easy with our simple 3-step process\"})}),className:\"framer-poy6w0\",\"data-framer-name\":\"Our pre recorded sessions contain all the essentials to help you fix your mood in few sessions\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a7y2vq\",\"data-framer-name\":\"Frame 21\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{y:(componentViewport?.y||0)+0+4395.6402+650+0+0+-564},h2UtPtfIz:{width:`max(min(357px, min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px), 300px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"357px\",y:(componentViewport?.y||0)+0+5637.4066+80+274+-6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u6pjds-container\",nodeId:\"rKqep0KS9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessCard,{height:\"100%\",hLy2FkV4x:\"Explore Premium Our Line‑Up\",IcfmRFEiX:\"Step 1 — Dream It\",id:\"rKqep0KS9\",layoutId:\"rKqep0KS9\",PwHwz7yd5:\"Explore our Premium and curated range of cabinets, from space-saving bartops to full-size showpieces.\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{y:(componentViewport?.y||0)+0+4395.6402+650+0+0+-6},h2UtPtfIz:{width:`max(min(358px, min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px), 300px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"358px\",y:(componentViewport?.y||0)+0+5637.4066+80+274+-6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qa37ic-container\",nodeId:\"JBz26A4fQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessCard,{height:\"100%\",hLy2FkV4x:\"Make It Yours & Checkout\",IcfmRFEiX:\"Step 2 — Design & Secure It\",id:\"JBz26A4fQ\",JCIDf7Qup:addImageAlt({pixelHeight:534,pixelWidth:782,src:\"https://framerusercontent.com/images/ivlHzr1ifFbKEptVLcXZ8t74uw.png\",srcSet:\"https://framerusercontent.com/images/ivlHzr1ifFbKEptVLcXZ8t74uw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ivlHzr1ifFbKEptVLcXZ8t74uw.png 782w\"},\"\"),layoutId:\"JBz26A4fQ\",PwHwz7yd5:\"Customize your machine with our live 3D builder, select options, and complete your secure checkout with tracking.\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY09OnNjP:{y:(componentViewport?.y||0)+0+4395.6402+650+0+0+552},h2UtPtfIz:{width:`max(min(357px, min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px), 300px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"357px\",y:(componentViewport?.y||0)+0+5637.4066+80+274+-6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lapk5j-container\",nodeId:\"BODk0BrWp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessCard,{height:\"100%\",hLy2FkV4x:\"Delivered and Ready To Go\",IcfmRFEiX:\"Step 3 — Play It\",id:\"BODk0BrWp\",JCIDf7Qup:addImageAlt({pixelHeight:564,pixelWidth:654,src:\"https://framerusercontent.com/images/qje6SdAQZNd7u1ufkXNfF7FITI.jpg\",srcSet:\"https://framerusercontent.com/images/qje6SdAQZNd7u1ufkXNfF7FITI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qje6SdAQZNd7u1ufkXNfF7FITI.jpg 654w\"},\"\"),layoutId:\"BODk0BrWp\",PwHwz7yd5:\"We assemble, test, and carefully pack your machine for safe worldwide shipping and delivery.\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1etansg\",\"data-framer-name\":\"quote\",id:elementId5,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yzuurz\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fd76ba\",\"data-styles-preset\":\"KHHc7RdjW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Request Your Quote\"})}),className:\"framer-1d5hm5y\",\"data-framer-name\":\"Seamless Activity Planning with Voice-Activated AI\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ejmaz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kk35oR9uC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe \\n  src=\"https://api.leadconnectorhq.com/widget/form/yCRL1juShu7Ovn1lwTFr?transparent=1\" \\n  style=\"width: 100%; border: none; min-height: 580px;\" \\n  id=\"inline-yCRL1juShu7Ovn1lwTFr\"\\n  title=\"Main Contact Us Form\">\\n</iframe>\\n\\n\\n<script src=\"https://link.msgsndr.com/js/form_embed.js\"></script>\\n',id:\"kk35oR9uC\",layoutId:\"kk35oR9uC\",radius:\"0px\",style:{width:\"100%\"},type:\"html\",url:\"https://api.leadconnectorhq.com/widget/form/yCRL1juShu7Ovn1lwTFr\",width:\"100%\",zoom:1})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HOhsY.framer-lux5qc, .framer-HOhsY .framer-lux5qc { display: block; }\",\".framer-HOhsY.framer-72rtr7 { align-content: center; align-items: center; background-color: #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-HOhsY .framer-8mpuj3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 120px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-smi6k7 { flex: none; gap: 0px; height: 909px; overflow: hidden; position: relative; width: 100%; }\",\".framer-HOhsY .framer-1ttk9w5 { -webkit-filter: blur(150px); aspect-ratio: 1 / 1; background: radial-gradient(109.03658381479111% 168.79296924007318% at 50.00000324954343% -50.00000503042248%, rgba(10, 2, 2, 0) 1.9230769947171211%, rgba(10, 2, 2, 0.2) 52.40384340286255%, rgb(197, 36, 36) 79.00000214576721%, rgb(255, 226, 226) 93.99999976158142%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(150px); flex: none; height: var(--framer-aspect-ratio-supported, 627px); left: 50%; position: absolute; top: 55%; transform: translate(-50%, -50%); width: 627px; }\",\".framer-HOhsY .framer-1xzx7i5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 968px); left: 50%; position: absolute; top: -75px; transform: translateX(-50%); width: 968px; }\",\".framer-HOhsY .framer-spkq4w { align-content: center; align-items: center; background: radial-gradient(109.03658381479111% 168.79296924007318% at 50.00000324954343% -50.00000503042248%, rgba(10, 2, 2, 0) 1.9230769947171211%, rgba(10, 2, 2, 0.2) 52.40384340286255%, rgb(197, 36, 36) 79.00000214576721%, rgb(255, 226, 226) 93.99999976158142%); border-bottom-left-radius: 66px; border-bottom-right-radius: 66px; border-top-left-radius: 66px; border-top-right-radius: 66px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 90%; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px 0px 40px 0px; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HOhsY .framer-xhzi4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-1gkq7yc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21.884498596191406px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-HOhsY .framer-1lt5bqe { --border-bottom-width: 1.0942249298095703px; --border-color: #000000; --border-left-width: 1.0942249298095703px; --border-right-width: 1.0942249298095703px; --border-style: solid; --border-top-width: 1.0942249298095703px; -webkit-backdrop-filter: blur(2.1884498596191406px); align-content: center; align-items: center; backdrop-filter: blur(2.1884498596191406px); background-color: rgba(10, 2, 2, 0.5); border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10.942249298095703px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8.753799438476562px 17.507598876953125px 8.753799438476562px 17.507598876953125px; position: relative; width: min-content; }\",\".framer-HOhsY .framer-vh98k8 { --border-bottom-width: 1.0942249298095703px; --border-color: #000000; --border-left-width: 1.0942249298095703px; --border-right-width: 1.0942249298095703px; --border-style: solid; --border-top-width: 1.0942249298095703px; background: radial-gradient(169.8818548020447% 104.63466277163218% at 50% 0%, #ffffff 28.999999165534973%, rgb(197, 36, 36) 79.00000214576721%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 11px; position: relative; width: 11px; }\",\".framer-HOhsY .framer-1xrmp9o { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HOhsY .framer-2qbxe8, .framer-HOhsY .framer-vxxymr, .framer-HOhsY .framer-1o6ybl1, .framer-HOhsY .framer-cmkyyi, .framer-HOhsY .framer-3f4vd5, .framer-HOhsY .framer-5ifkg8, .framer-HOhsY .framer-8xuas, .framer-HOhsY .framer-12zspw8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HOhsY .framer-1tshyux, .framer-HOhsY .framer-65aem4, .framer-HOhsY .framer-1fmjsd1, .framer-HOhsY .framer-nyjenu, .framer-HOhsY .framer-83vd5h, .framer-HOhsY .framer-1xycran, .framer-HOhsY .framer-75kuhm, .framer-HOhsY .framer-g5b2m1, .framer-HOhsY .framer-rtktfc, .framer-HOhsY .framer-poy6w0, .framer-HOhsY .framer-1d5hm5y { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HOhsY .framer-15jspsy, .framer-HOhsY .framer-1anyf4q, .framer-HOhsY .framer-oy769b, .framer-HOhsY .framer-1kmt433 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16.413373947143555px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HOhsY .framer-1urkjqt-container, .framer-HOhsY .framer-1fxm1av-container, .framer-HOhsY .framer-1kn449u-container, .framer-HOhsY .framer-6r4lhv-container, .framer-HOhsY .framer-46rkl7-container, .framer-HOhsY .framer-1w2lahs-container, .framer-HOhsY .framer-u8pzt2-container, .framer-HOhsY .framer-qpxyhw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HOhsY .framer-wulqsu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 200vh; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-1t19bw4, .framer-HOhsY .framer-elbrnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-HOhsY .framer-wv4ll3, .framer-HOhsY .framer-1tv1hqx, .framer-HOhsY .framer-lcs1l, .framer-HOhsY .framer-yzuurz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-yvj9g3 { 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-HOhsY .framer-1hb7csb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 20px 0px 60px; position: relative; width: 1px; }\",\".framer-HOhsY .framer-1dhbmor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-HOhsY .framer-1k3pl1z-container { flex: none; height: auto; position: relative; width: 350px; }\",\".framer-HOhsY .framer-1lpwyfn { background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0) 68.06200731981981%); flex: none; height: 463px; left: 0px; overflow: hidden; position: absolute; top: calc(50.05393743257823% - 462.5px / 2); width: 128px; z-index: 2; }\",\".framer-HOhsY .framer-116r09n { background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0) 74.02871621621621%); flex: none; height: 463px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 128px; z-index: 2; }\",\".framer-HOhsY .framer-x3n7ki, .framer-HOhsY .framer-1e8qa7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-HOhsY .framer-ni4fui { --border-bottom-width: 1px; --border-color: rgba(197, 36, 36, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: radial-gradient(170.34314017573456% 118.1784670109002% at 0% 0%, #ffffff 0%, rgb(197, 36, 36) 20.999997854232788%, rgb(10, 2, 2) 71.00000381469727%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-HOhsY .framer-12h1tdf { aspect-ratio: 1.0705882543471221 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 391px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HOhsY .framer-12501el, .framer-HOhsY .framer-5kg0zk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HOhsY .framer-o11eor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-10jn2c7, .framer-HOhsY .framer-b2d8x3, .framer-HOhsY .framer-1w5x06j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-ipqm3y { --border-bottom-width: 1px; --border-color: rgba(197, 36, 36, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: radial-gradient(170.34314017573456% 118.1784670109002% at 0% 0%, #ffffff 0%, rgb(197, 36, 36) 20.999997854232788%, rgb(10, 2, 2) 71.00000381469727%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-HOhsY .framer-ytcttb { aspect-ratio: 1.0705882543471221 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 422px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HOhsY .framer-vahlzf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-3weebw-container { flex: none; height: 411px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-suz9ou, .framer-HOhsY .framer-1wa4bas, .framer-HOhsY .framer-142ab3r, .framer-HOhsY .framer-j8hymn { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 411px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HOhsY .framer-rta55c { aspect-ratio: 0.4861111111111111 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-HOhsY .framer-1re6w3r, .framer-HOhsY .framer-egpk2m, .framer-HOhsY .framer-1or1f2g, .framer-HOhsY .framer-zu1kk8 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; height: 411px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HOhsY .framer-1e2kbg0 { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 248px); overflow: visible; position: relative; width: 186px; }\",\".framer-HOhsY .framer-u6c1wl { aspect-ratio: 1.2754650132860939 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 146px); overflow: visible; position: relative; width: 186px; }\",\".framer-HOhsY .framer-uqmq5w { aspect-ratio: 0.45977011494252873 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 189px); }\",\".framer-HOhsY .framer-11d8omz { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 162px); overflow: visible; position: relative; width: 288px; }\",\".framer-HOhsY .framer-hlmwg2 { aspect-ratio: 1.2749003984063745 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 226px); overflow: visible; position: relative; width: 288px; }\",\".framer-HOhsY .framer-1hfuqsr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 411px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HOhsY .framer-1u06vge { aspect-ratio: 0.7469586374695864 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 307px); }\",\".framer-HOhsY .framer-czxxq5 { aspect-ratio: 0.42401628222523746 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 174px); }\",\".framer-HOhsY .framer-1eqcsyn { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 167px); overflow: visible; position: relative; width: 222px; }\",\".framer-HOhsY .framer-wfij4w { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 222px); overflow: visible; position: relative; width: 222px; }\",\".framer-HOhsY .framer-phka0z { aspect-ratio: 0.746031746031746 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 255px); overflow: visible; position: relative; width: 190px; }\",\".framer-HOhsY .framer-a0tfcw { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); overflow: visible; position: relative; width: 190px; }\",\".framer-HOhsY .framer-1bi0jld { aspect-ratio: 0.48632218844984804 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-HOhsY .framer-8jecr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-HOhsY .framer-1a7y2vq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: 524px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HOhsY .framer-1u6pjds-container, .framer-HOhsY .framer-1lapk5j-container { flex: none; height: auto; max-width: 360px; position: relative; width: 357px; }\",\".framer-HOhsY .framer-qa37ic-container { flex: none; height: auto; max-width: 360px; position: relative; width: 358px; }\",\".framer-HOhsY .framer-1etansg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-HOhsY .framer-13ejmaz-container { flex: none; height: auto; min-height: 90vh; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-HOhsY[data-border=\"true\"]::after, .framer-HOhsY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }','.framer-HOhsY[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-HOhsY [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-HOhsY[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-HOhsY [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-HOhsY[data-hide-scrollbars=\"true\"], .framer-HOhsY [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-HOhsY.framer-72rtr7 { width: 810px; } .framer-HOhsY .framer-smi6k7 { height: 729px; overflow: visible; } .framer-HOhsY .framer-1xzx7i5 { height: var(--framer-aspect-ratio-supported, 703px); left: 14px; right: 13px; transform: unset; width: unset; } .framer-HOhsY .framer-spkq4w { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; } .framer-HOhsY .framer-1gkq7yc { width: 100%; } .framer-HOhsY .framer-wulqsu { height: min-content; max-width: unset; } .framer-HOhsY .framer-yvj9g3 { overflow-x: auto; } .framer-HOhsY .framer-1hb7csb { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; justify-content: center; padding: 0px 20px 0px 20px; } .framer-HOhsY .framer-1anyf4q, .framer-HOhsY .framer-oy769b, .framer-HOhsY .framer-1kmt433 { justify-content: center; width: 100%; } .framer-HOhsY .framer-x3n7ki, .framer-HOhsY .framer-1e8qa7p { flex-direction: column; gap: 80px; } .framer-HOhsY .framer-ni4fui { flex: none; order: 1; width: 100%; } .framer-HOhsY .framer-12h1tdf, .framer-HOhsY .framer-ytcttb { height: var(--framer-aspect-ratio-supported, 622px); } .framer-HOhsY .framer-12501el { flex: none; order: 0; width: 100%; } .framer-HOhsY .framer-46rkl7-container, .framer-HOhsY .framer-1w2lahs-container, .framer-HOhsY .framer-u8pzt2-container, .framer-HOhsY .framer-qpxyhw-container { flex: 1 0 0px; width: 1px; } .framer-HOhsY .framer-5kg0zk, .framer-HOhsY .framer-ipqm3y { flex: none; width: 100%; } .framer-HOhsY .framer-8jecr3 { padding: 700px 40px 80px 40px; } .framer-HOhsY .framer-lcs1l { left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 730px; z-index: 1; } .framer-HOhsY .framer-1a7y2vq { flex-wrap: wrap; } .framer-HOhsY .framer-1u6pjds-container, .framer-HOhsY .framer-qa37ic-container, .framer-HOhsY .framer-1lapk5j-container { max-width: 100%; min-width: 300px; } .framer-HOhsY .framer-1etansg { padding: 500px 40px 0px 40px; } .framer-HOhsY .framer-13ejmaz-container { min-height: 70vh; }}\",\"@media (max-width: 809px) { .framer-HOhsY.framer-72rtr7 { width: 390px; } .framer-HOhsY .framer-8mpuj3 { padding: 120px 10px 0px 10px; } .framer-HOhsY .framer-smi6k7 { height: 619px; overflow: visible; } .framer-HOhsY .framer-1ttk9w5 { height: var(--framer-aspect-ratio-supported, 300px); top: 76px; transform: translateX(-50%); width: 300px; } .framer-HOhsY .framer-1xzx7i5 { height: var(--framer-aspect-ratio-supported, 369px); left: 1px; right: 0px; top: -71px; transform: unset; width: unset; } .framer-HOhsY .framer-spkq4w { background: radial-gradient(109.03658381479111% 168.79296924007318% at 50.00000324954343% -50.00000503042248%, rgba(10, 2, 2, 0) 23.706714527027025%, rgba(10, 2, 2, 0.2) 52.40384340286255%, rgb(197, 36, 36) 79.00000214576721%, rgb(255, 226, 226) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; } .framer-HOhsY .framer-xhzi4j { padding: 10px; } .framer-HOhsY .framer-1gkq7yc, .framer-HOhsY .framer-1urkjqt-container, .framer-HOhsY .framer-1fxm1av-container, .framer-HOhsY .framer-46rkl7-container, .framer-HOhsY .framer-1w2lahs-container, .framer-HOhsY .framer-u8pzt2-container, .framer-HOhsY .framer-qpxyhw-container { width: 100%; } .framer-HOhsY .framer-15jspsy, .framer-HOhsY .framer-1anyf4q, .framer-HOhsY .framer-oy769b, .framer-HOhsY .framer-1kmt433 { flex-direction: column; width: 100%; } .framer-HOhsY .framer-wulqsu { height: min-content; max-width: unset; } .framer-HOhsY .framer-1t19bw4 { padding: 100px 0px 60px 0px; } .framer-HOhsY .framer-wv4ll3 { gap: 8px; } .framer-HOhsY .framer-yvj9g3 { overflow-x: auto; } .framer-HOhsY .framer-1hb7csb { flex-direction: column; max-width: unset; padding: 0px 20px 0px 20px; } .framer-HOhsY .framer-1kn449u-container, .framer-HOhsY .framer-6r4lhv-container { width: 89%; } .framer-HOhsY .framer-x3n7ki, .framer-HOhsY .framer-1e8qa7p { flex-direction: column; padding: 20px 40px 80px 40px; } .framer-HOhsY .framer-12501el, .framer-HOhsY .framer-5kg0zk { flex: none; order: 0; width: 100%; } .framer-HOhsY .framer-elbrnj { padding: 40px 0px 100px 0px; } .framer-HOhsY .framer-1tv1hqx, .framer-HOhsY .framer-yzuurz { gap: 16px; } .framer-HOhsY .framer-8jecr3 { padding: 650px 40px 80px 40px; } .framer-HOhsY .framer-lcs1l { gap: 16px; left: 50%; position: absolute; top: -66px; transform: translateX(-50%); width: 310px; z-index: 1; } .framer-HOhsY .framer-1a7y2vq { flex-direction: column; } .framer-HOhsY .framer-1etansg { padding: 500px 40px 0px 40px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8560\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"h2UtPtfIz\":{\"layout\":[\"fixed\",\"auto\"]},\"bY09OnNjP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"CYUiNEbhe\":{\"pattern\":\":CYUiNEbhe\",\"name\":\"hero-section\"},\"xII0FRd2d\":{\"pattern\":\":xII0FRd2d\",\"name\":\"scroll\"},\"MFH4SMTwJ\":{\"pattern\":\":FPafaQWCF-:MFH4SMTwJ\",\"name\":\"s1\",\"slugs\":{\"FPafaQWCF\":{\"identifier\":\"local-module:collection/SuYZ40R2o:default\",\"provider\":\"JNDVRHncZ\"}}},\"jApkZ3w1f\":{\"pattern\":\":jApkZ3w1f\",\"name\":\"scroll\"},\"KdbXDIVbk\":{\"pattern\":\":KdbXDIVbk\",\"name\":\"gallery\"},\"DEqDfYkLh\":{\"pattern\":\":DEqDfYkLh\",\"name\":\"quote\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-HOhsY\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8560,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SecondaryButtonFonts,...PrimaryButtonFonts,...CollectionCardFonts,...SlideshowFonts,...ProcessCardFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"CYUiNEbhe\\\":{\\\"pattern\\\":\\\":CYUiNEbhe\\\",\\\"name\\\":\\\"hero-section\\\"},\\\"xII0FRd2d\\\":{\\\"pattern\\\":\\\":xII0FRd2d\\\",\\\"name\\\":\\\"scroll\\\"},\\\"MFH4SMTwJ\\\":{\\\"pattern\\\":\\\":FPafaQWCF-:MFH4SMTwJ\\\",\\\"name\\\":\\\"s1\\\",\\\"slugs\\\":{\\\"FPafaQWCF\\\":{\\\"identifier\\\":\\\"local-module:collection/SuYZ40R2o:default\\\",\\\"provider\\\":\\\"JNDVRHncZ\\\"}}},\\\"jApkZ3w1f\\\":{\\\"pattern\\\":\\\":jApkZ3w1f\\\",\\\"name\\\":\\\"scroll\\\"},\\\"KdbXDIVbk\\\":{\\\"pattern\\\":\\\":KdbXDIVbk\\\",\\\"name\\\":\\\"gallery\\\"},\\\"DEqDfYkLh\\\":{\\\"pattern\\\":\\\":DEqDfYkLh\\\",\\\"name\\\":\\\"quote\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8560\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h2UtPtfIz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bY09OnNjP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}