{"version":3,"file":"EhNvTpNSo.CWoQ3xY1.mjs","names":["localizedValues","cycleOrder","variantClassNames","humanReadableVariantMap","Component","className","Image1","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","OmrCapterra","Memoji","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","CarouselCard","className","css"],"sources":["https:/framerusercontent.com/modules/U8KmHlS8jmOtQTBXxUOH/d8Pqt4URCNwAhoH0XnHq/EhNvTpNSo-0.js","https:/framerusercontent.com/modules/U8KmHlS8jmOtQTBXxUOH/d8Pqt4URCNwAhoH0XnHq/EhNvTpNSo.js","https:/framer.com/m/framer/useConstant.js@^1.0.0","https:/framer.com/m/framer/randomID.js@^2.0.0","https:/framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js","https:/framerusercontent.com/modules/ZXdu6HtXxN4BeI3wYs0Y/HSZ4gv7aRH1ktC9m92PG/f6Axk98rN.js","https:/framerusercontent.com/modules/auAPiQeGBtUcHe8F8nMA/Y7Fz6krm9ASCTnPK5Lna/DFENmS4yE.js","https:/framerusercontent.com/modules/lAz6Kvoe5hY1z9ph0MeV/aCVAaWSsnosSL1spp4Oo/EhNvTpNSo.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fmlsat\",\"data-styles-preset\":\"nz9jiqsXd\",children:\"Feedback unserer Kunden auf OMR & Capterra\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fmlsat\",\"data-styles-preset\":\"nz9jiqsXd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Feedback unserer Kunden auf OMR & Capterra\"})});export const v2=\"Das optimale Desk Sharing App zur Arbeitsplatzplanung\";export const v3=\"Sehr hilfreiches und einfaches Tool \";export const v4=\"Intuitiv, sch\\xf6n und Zeitgem\\xe4\\xdf!\";export const v5=\"\\xdcbersichtlich, Funktional --> Top\";export const v6=\"Fantastisches Tool - wir und unsere Untermieter sind sehr happy\";export const v7=\"Die M\\xf6glichkeiten von yoffix sind einzigartig\";export const v8=\"Eine elegante L\\xf6sung f\\xfcr die Digitalisierung von Arbeitspl\\xe4tzen\";export const v9=\"Ein effektives System zur Produktivit\\xe4tssteigerung\";\nexport const __FramerMetadata__ = {\"exports\":{\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f74aab7)\nimport*as localizedValues from\"./EhNvTpNSo-0.js\";const valuesByLocaleId={usBv4Wx5A:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","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.\n * By using `useConstant` 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 { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map","import{jsx as _jsx}from\"react/jsx-runtime\";// Generated by Framer (12cfc32)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{Image as Image1,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,Stack}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"];const variantClassNames={\"AD1uRb789\":\"framer-v-rqhbs3\",\"t6uYX0tBZ\":\"framer-v-ina8tq\",\"AnI2DvQZf\":\"framer-v-lwbc2o\",\"JG7MxGgTY\":\"framer-v-vqryag\",\"snFARdAmz\":\"framer-v-kwp1i3\",\"Nz_Z2NTH0\":\"framer-v-1h8ejmh\",\"cHv8JY9g7\":\"framer-v-c75qsa\",\"tR7FlThNE\":\"framer-v-1ftwjq5\",\"bg0lLngd2\":\"framer-v-osfy8l\",\"FKNQjSL73\":\"framer-v-5qhg5s\",\"UozSdcuUY\":\"framer-v-5ats54\",\"EgLxQrxHD\":\"framer-v-z5mnn6\",\"vol5AdrV3\":\"framer-v-6xnqop\",\"rbMcqs1eA\":\"framer-v-xmx6ye\",\"OY_j7HdJV\":\"framer-v-a1v8wx\",\"mcvPgNUgN\":\"framer-v-1oj0oue\",\"Jj_gJ6raO\":\"framer-v-19e1lqz\",\"UYFenO8zH\":\"framer-v-16en86l\",\"RpMB9X2cU\":\"framer-v-1vzsblg\",\"tExww8aRk\":\"framer-v-1kgllbw\",\"anaA6RL0b\":\"framer-v-zia1yx\",\"y8osi5SA0\":\"framer-v-9mi1m7\",\"v2n6jd8d8\":\"framer-v-zgdwlg\",\"vrPxXX3Sq\":\"framer-v-1dgnypb\",\"YC5psLXzO\":\"framer-v-rum36c\",\"wQ9whLvFH\":\"framer-v-1u5c2u8\",\"hUi9TraZo\":\"framer-v-1dt8e1w\",\"ji0e3Gqv5\":\"framer-v-1rkl824\",\"nMHdUM1t6\":\"framer-v-17d51pb\",\"Stnp3oRU4\":\"framer-v-158neyh\",\"TxmZTsvXB\":\"framer-v-1atb71u\",\"bNhqIdQoj\":\"framer-v-1x8h963\",\"OYkCSZPL0\":\"framer-v-hblyuj\",\"bOMpuyzc_\":\"framer-v-cra8ie\",\"NqCoJY2pH\":\"framer-v-1sz721s\"};const humanReadableVariantMap={\"Jason\":\"AD1uRb789\",\"Jess\":\"t6uYX0tBZ\",\"Olli\":\"AnI2DvQZf\",\"Myah\":\"JG7MxGgTY\",\"Ammaar\":\"snFARdAmz\",\"Siena\":\"Nz_Z2NTH0\",\"Cheryl\":\"cHv8JY9g7\",\"Aleeza\":\"tR7FlThNE\",\"Elli\":\"bg0lLngd2\",\"Piotr\":\"FKNQjSL73\",\"Ayisha\":\"UozSdcuUY\",\"Nataniel\":\"EgLxQrxHD\",\"Nikita\":\"vol5AdrV3\",\"Tim\":\"rbMcqs1eA\",\"Carley\":\"OY_j7HdJV\",\"Arda\":\"mcvPgNUgN\",\"Lacey-Mae\":\"Jj_gJ6raO\",\"Bo\":\"UYFenO8zH\",\"Shelbie\":\"RpMB9X2cU\",\"Dillon\":\"tExww8aRk\",\"Selin\":\"OYkCSZPL0\",\"Rhian\":\"y8osi5SA0\",\"Ada\":\"v2n6jd8d8\",\"Lois\":\"vrPxXX3Sq\",\"Maisie\":\"YC5psLXzO\",\"Lori\":\"wQ9whLvFH\",\"Jardel\":\"hUi9TraZo\",\"Jethro\":\"ji0e3Gqv5\",\"Carmen\":\"nMHdUM1t6\",\"Patrik\":\"Stnp3oRU4\",\"Barry\":\"TxmZTsvXB\",\"Alejandro\":\"bNhqIdQoj\",\"Denny\":\"bOMpuyzc_\",\"Becca\":\"NqCoJY2pH\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style,className,layoutId,width,height,variant:outerVariant=\"AD1uRb789\",background:VurELiPqN=\"rgb(255, 219, 222)\",radius:Z2NuoQS1k=60,rotation:tc_6nmlts=0,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"AD1uRb789\",variant,transitions,variantClassNames,cycleOrder});const variantProps=React.useMemo(()=>({\"t6uYX0tBZ\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jess\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/XfjXHJ2H7SzzlzPr1bGFm1T9BpI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"AnI2DvQZf\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Olli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/qCpU7HJtiveCC9wTFuh7L4wc8YM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"JG7MxGgTY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Myah\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Q8IGGb6PvVKrjNuovM2HijDWFU.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"snFARdAmz\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ammaar\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/iGk4x1NJSVgWzFvuQQADJp9I.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Nz_Z2NTH0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Siena\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ikD34vgzaLM6N50MKdcR9HVBnk.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"cHv8JY9g7\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Cheryl\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mUVPNgOqhd1MFYjLtFtiBwvxfY.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tR7FlThNE\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Aleeza\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/62fnqd1V6QN3j0vPr4hlpB3HnQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bg0lLngd2\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Elli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Vu8TxX7VMCMZDjoliFK7D0nOyX0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"FKNQjSL73\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Piotr\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ofIUD8MCjke7Xz8jkh29AWqajJo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UozSdcuUY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ayisha\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/5nnqp2inSINDktAAWpI7gxJei0w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"EgLxQrxHD\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nataniel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/lKaaStgbmdIe8TfrIkFlKzHazV0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vol5AdrV3\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nikita\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/bpeWvtoxuajqEtlukZhUFt9KM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"rbMcqs1eA\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Tim\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GoWNvgKZvVTzmZQKHoh2Ccnk4E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OY_j7HdJV\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carley\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/40ioqcNOrsoBIVnpfGVsXh9jpM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"mcvPgNUgN\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Arda\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/U8RU6HcYtcK32VUY2uTSF9QTqo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Jj_gJ6raO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lacey-Mae\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/1OwzdZHx9ElDw1ZAavs6WGWBSw.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UYFenO8zH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Bo\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Tlwk5hINm0ferm6DGDyUoqL6pc.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"RpMB9X2cU\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Shelbie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Pm9TTOkN341IYtePLdPGmhG0E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tExww8aRk\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Dillon\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GOsVbTpzcPHfZ9EMcOSPddNS6go.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"anaA6RL0b\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GaxkgrTkzKlxI7B3EJtZp4dabI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"y8osi5SA0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Rhian\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/LEd8c4Zf28fU29XZ4c04ImOzs.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"v2n6jd8d8\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ada\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/3oPVBjvZEnTN9DZf7tUMW54TS2k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vrPxXX3Sq\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lois\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/99qcDQP7xzsxlgXsq47uID7sAm4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"YC5psLXzO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Maisie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BRu6MhHhp9NjldqU9TTCEAEoGKg.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"wQ9whLvFH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lori\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ebCaegtDakUaQGRtXSYmPR43Q.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"hUi9TraZo\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jardel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/B8580pOtLEBrg7wIFp62oXfFQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"ji0e3Gqv5\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jethro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/szTmT1K4f8nn5CutvLWFlBdt8k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"nMHdUM1t6\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carmen\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/e6GZhp0s96FXaIiLYSRyZYZYypo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Stnp3oRU4\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Patrik\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/6xGPl1j87mG8XoUzCwRYzEohM8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"TxmZTsvXB\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Barry\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mhC7dhzvLcqmUofPcC2BW8vh4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bNhqIdQoj\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Alejandro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/YynUn6LSLWVQia4pOtIxhY77SSA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OYkCSZPL0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/u2K6WSbQVKHiOUvOF3auFya79y8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bOMpuyzc_\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Denny\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BJytCbStiWSy9rxpQ0wU6I3SNiI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"NqCoJY2pH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Becca\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/xyIaIR0LhPm1PVVUVrQ7TDGTyA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}}}),[]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,className:cx(\"framer-47hmZ\",classNames),style:{\"display\":\"contents\"},onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),children:/*#__PURE__*/ _jsx(Stack,{...restProps,layoutId:\"AD1uRb789\",className:cx(\"framer-rqhbs3\",className),style:{\"borderBottomLeftRadius\":Z2NuoQS1k,\"borderBottomRightRadius\":Z2NuoQS1k,\"borderTopRightRadius\":Z2NuoQS1k,\"borderTopLeftRadius\":Z2NuoQS1k,\"backgroundColor\":VurELiPqN,...style},direction:\"horizontal\",distribution:\"center\",alignment:\"center\",gap:10,__fromCanvasComponent:true,__contentWrapperStyle:{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"},center:false,\"data-framer-name\":\"Jason\",transition:transition,ref:ref,...addVariantProps(\"AD1uRb789\"),children:/*#__PURE__*/ _jsx(Image1,{layoutId:\"XGgsiaAin\",className:\"framer-kj56m6\",style:{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60,\"rotate\":tc_6nmlts},background:{\"src\":new URL(\"assets/CPGgYEBeFy4gDXe5dDzh1qjQG1w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"data-framer-name\":\"Avatar\",variants:{\"t6uYX0tBZ\":{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60}},transition:transition,...addVariantProps(\"XGgsiaAin\")})})})}));});const css=[\".framer-47hmZ [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-47hmZ .framer-rqhbs3 { position: relative; overflow: hidden; width: 100px; height: 100px; }\",\".framer-47hmZ .framer-kj56m6 { position: relative; overflow: visible; width: 1px; height: 100%; flex: 1 0 0px; }\",\".framer-47hmZ.framer-v-ina8tq .framer-rqhbs3, .framer-47hmZ.framer-v-lwbc2o .framer-rqhbs3, .framer-47hmZ.framer-v-vqryag .framer-rqhbs3, .framer-47hmZ.framer-v-kwp1i3 .framer-rqhbs3, .framer-47hmZ.framer-v-1h8ejmh .framer-rqhbs3, .framer-47hmZ.framer-v-c75qsa .framer-rqhbs3, .framer-47hmZ.framer-v-1ftwjq5 .framer-rqhbs3, .framer-47hmZ.framer-v-osfy8l .framer-rqhbs3, .framer-47hmZ.framer-v-5qhg5s .framer-rqhbs3, .framer-47hmZ.framer-v-5ats54 .framer-rqhbs3, .framer-47hmZ.framer-v-z5mnn6 .framer-rqhbs3, .framer-47hmZ.framer-v-6xnqop .framer-rqhbs3, .framer-47hmZ.framer-v-xmx6ye .framer-rqhbs3, .framer-47hmZ.framer-v-a1v8wx .framer-rqhbs3, .framer-47hmZ.framer-v-1oj0oue .framer-rqhbs3, .framer-47hmZ.framer-v-19e1lqz .framer-rqhbs3, .framer-47hmZ.framer-v-16en86l .framer-rqhbs3, .framer-47hmZ.framer-v-1vzsblg .framer-rqhbs3, .framer-47hmZ.framer-v-1kgllbw .framer-rqhbs3, .framer-47hmZ.framer-v-zia1yx .framer-rqhbs3, .framer-47hmZ.framer-v-9mi1m7 .framer-rqhbs3, .framer-47hmZ.framer-v-zgdwlg .framer-rqhbs3, .framer-47hmZ.framer-v-1dgnypb .framer-rqhbs3, .framer-47hmZ.framer-v-rum36c .framer-rqhbs3, .framer-47hmZ.framer-v-1u5c2u8 .framer-rqhbs3, .framer-47hmZ.framer-v-1dt8e1w .framer-rqhbs3, .framer-47hmZ.framer-v-1rkl824 .framer-rqhbs3, .framer-47hmZ.framer-v-17d51pb .framer-rqhbs3, .framer-47hmZ.framer-v-158neyh .framer-rqhbs3, .framer-47hmZ.framer-v-1atb71u .framer-rqhbs3, .framer-47hmZ.framer-v-1x8h963 .framer-rqhbs3, .framer-47hmZ.framer-v-hblyuj .framer-rqhbs3, .framer-47hmZ.framer-v-cra8ie .framer-rqhbs3, .framer-47hmZ.framer-v-1sz721s .framer-rqhbs3 { width: 100px; height: 100px; }\",\".framer-47hmZ.framer-v-1ftwjq5 .framer-kj56m6, .framer-47hmZ.framer-v-osfy8l .framer-kj56m6 { width: 1px; height: 100%; right: auto; bottom: auto; left: auto; top: auto; flex: 1 0 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"t6uYX0tBZ\": {\"layout\": [\"fixed\", \"fixed\"]}, \"AnI2DvQZf\": {\"layout\": [\"fixed\", \"fixed\"]}, \"JG7MxGgTY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"snFARdAmz\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Nz_Z2NTH0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"cHv8JY9g7\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tR7FlThNE\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bg0lLngd2\": {\"layout\": [\"fixed\", \"fixed\"]}, \"FKNQjSL73\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UozSdcuUY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"EgLxQrxHD\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vol5AdrV3\": {\"layout\": [\"fixed\", \"fixed\"]}, \"rbMcqs1eA\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OY_j7HdJV\": {\"layout\": [\"fixed\", \"fixed\"]}, \"mcvPgNUgN\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Jj_gJ6raO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UYFenO8zH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"RpMB9X2cU\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tExww8aRk\": {\"layout\": [\"fixed\", \"fixed\"]}, \"anaA6RL0b\": {\"layout\": [\"fixed\", \"fixed\"]}, \"y8osi5SA0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"v2n6jd8d8\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vrPxXX3Sq\": {\"layout\": [\"fixed\", \"fixed\"]}, \"YC5psLXzO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wQ9whLvFH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"hUi9TraZo\": {\"layout\": [\"fixed\", \"fixed\"]}, \"ji0e3Gqv5\": {\"layout\": [\"fixed\", \"fixed\"]}, \"nMHdUM1t6\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Stnp3oRU4\": {\"layout\": [\"fixed\", \"fixed\"]}, \"TxmZTsvXB\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bNhqIdQoj\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OYkCSZPL0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bOMpuyzc_\": {\"layout\": [\"fixed\", \"fixed\"]}, \"NqCoJY2pH\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"VurELiPqN\": \"background\", \"Z2NuoQS1k\": \"radius\", \"tc_6nmlts\": \"rotation\"}\n */ const FramerdkRfXNUhM=withCSS(Component,css);export default FramerdkRfXNUhM;FramerdkRfXNUhM.displayName=\"Memoji\";FramerdkRfXNUhM.defaultProps={\"width\":100,\"height\":100};addPropertyControls(FramerdkRfXNUhM,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"],\"optionTitles\":[\"Jason\",\"Jess\",\"Olli\",\"Myah\",\"Ammaar\",\"Siena\",\"Cheryl\",\"Aleeza\",\"Elli\",\"Piotr\",\"Ayisha\",\"Nataniel\",\"Nikita\",\"Tim\",\"Carley\",\"Arda\",\"Lacey-Mae\",\"Bo\",\"Shelbie\",\"Dillon\",\"Selin\",\"Rhian\",\"Ada\",\"Lois\",\"Maisie\",\"Lori\",\"Jardel\",\"Jethro\",\"Carmen\",\"Patrik\",\"Barry\",\"Alejandro\",\"Selin\",\"Denny\",\"Becca\"]},\"VurELiPqN\":{\"type\":ControlType.Color,\"title\":\"Background\",\"defaultValue\":\"rgb(255, 219, 222)\"},\"Z2NuoQS1k\":{\"type\":ControlType.Number,\"title\":\"Radius\",\"defaultValue\":60,\"min\":0},\"tc_6nmlts\":{\"type\":ControlType.Number,\"title\":\"Rotation\",\"defaultValue\":0,\"min\":-180,\"max\":180,\"unit\":\"°\"}});addFonts(FramerdkRfXNUhM,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdkRfXNUhM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"t6uYX0tBZ\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"AnI2DvQZf\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"JG7MxGgTY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"snFARdAmz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Nz_Z2NTH0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"cHv8JY9g7\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tR7FlThNE\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bg0lLngd2\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"FKNQjSL73\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UozSdcuUY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"EgLxQrxHD\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vol5AdrV3\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"rbMcqs1eA\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OY_j7HdJV\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"mcvPgNUgN\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Jj_gJ6raO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UYFenO8zH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"RpMB9X2cU\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tExww8aRk\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"anaA6RL0b\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"y8osi5SA0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"v2n6jd8d8\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vrPxXX3Sq\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"YC5psLXzO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wQ9whLvFH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"hUi9TraZo\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"ji0e3Gqv5\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"nMHdUM1t6\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Stnp3oRU4\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"TxmZTsvXB\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bNhqIdQoj\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OYkCSZPL0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bOMpuyzc_\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"NqCoJY2pH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\",\"framerIntrinsicHeight\":\"100\",\"framerVariables\":\"{\\\"VurELiPqN\\\": \\\"background\\\", \\\"Z2NuoQS1k\\\": \\\"radius\\\", \\\"tc_6nmlts\\\": \\\"rotation\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./dkRfXNUhM.map","// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./f6Axk98rN-0.js\";import*as localizedValues1 from\"./f6Axk98rN-1.js\";const cycleOrder=[\"skwLgO4MS\",\"Vr2sQ06wl\"];const serializationHash=\"framer-698EG\";const variantClassNames={skwLgO4MS:\"framer-v-qvgied\",Vr2sQ06wl:\"framer-v-yrovkc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={usBv4Wx5A:localizedValues,xfBvePwvR:localizedValues1};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={capterra:\"skwLgO4MS\",omr:\"Vr2sQ06wl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"skwLgO4MS\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"skwLgO4MS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Vr2sQ06wl\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Vr2sQ06wl\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qvgied\",className,classNames),\"data-framer-name\":\"capterra\",layoutDependency:layoutDependency,layoutId:\"skwLgO4MS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Vr2sQ06wl:{\"data-framer-name\":\"omr\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-b783ho\",\"data-framer-name\":\"capterra\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"gFXq_yGwa\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.5981 9.56885L9.68982 9.56787L15.5981 24.0032V9.56885Z\" fill=\"#1D5483\"/>\\n<path d=\"M8.83629 9.61787L8.81573 9.56759L0.230713 9.56592L10.1544 12.8402L8.83629 9.61787Z\" fill=\"#DE4C4A\"/>\\n<path d=\"M15.5981 3.06641V8.76078L0 8.75793L15.5981 3.06641Z\" fill=\"#F89F32\"/>\\n<path d=\"M16.407 2.77145L23.9999 0L16.407 23.4928V8.76093L16.407 2.77145Z\" fill=\"#78C8EE\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-s2cizc\",\"data-framer-name\":\"omr\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:51,layoutDependency:layoutDependency,layoutId:\"taLo1BM9e\",svg:'<svg width=\"51\" height=\"16\" viewBox=\"0 0 51 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.0478 7.99437C13.0575 8.62634 12.9342 9.25347 12.6857 9.83671C12.4372 10.4199 12.0688 10.9468 11.6035 11.3844C11.1561 11.8351 10.6198 12.192 10.0272 12.4332C9.43468 12.6745 8.79827 12.7952 8.15666 12.788C6.86049 12.7864 5.61795 12.2807 4.70199 11.3819C3.78603 10.4831 3.27154 9.26469 3.27154 7.99437C3.26299 7.36451 3.38558 6.73955 3.63182 6.15769C3.87806 5.57584 4.24279 5.04931 4.7037 4.61028C5.15533 4.16162 5.69341 3.80538 6.28669 3.56223C6.87997 3.31908 7.51662 3.19387 8.15969 3.19387C8.80276 3.19387 9.43942 3.31908 10.0327 3.56223C10.626 3.80538 11.1641 4.16162 11.6157 4.61028C12.0794 5.04786 12.4467 5.57386 12.6951 6.15586C12.9435 6.73786 13.0677 7.36355 13.06 7.99437M13.9096 13.6206C14.6879 12.8923 15.305 12.0149 15.7226 11.0429C16.1402 10.0709 16.3493 9.02515 16.3369 7.97058C16.3481 6.91706 16.1384 5.87252 15.7209 4.90166C15.3033 3.9308 14.6868 3.0543 13.9096 2.32646C13.1629 1.57512 12.2675 0.981279 11.2782 0.581387C10.2889 0.181495 9.22665 -0.0160048 8.15666 0.00101331C7.08063 -0.0110789 6.01356 0.193875 5.02179 0.603135C4.03002 1.01239 3.13475 1.61721 2.39162 2.37999C1.62268 3.11218 1.01408 3.99029 0.60299 4.9607C0.191901 5.93112 -0.0130522 6.97347 0.00064381 8.02411C-0.00935541 9.06664 0.196885 10.1003 0.606851 11.0623C1.01682 12.0244 1.62196 12.8948 2.38555 13.6206C3.13093 14.3822 4.02748 14.9861 5.01999 15.3952C6.01251 15.8044 7.07997 16.0101 8.15666 15.9996C9.23028 16.0076 10.2943 15.8008 11.2835 15.3917C12.2727 14.9826 13.1663 14.38 13.9096 13.6206ZM31.6537 15.8331H35.0339V0.137804L26.8111 10.0522L18.5823 0.137804V15.8509H21.9624V9.23738L26.8172 15.5833L31.6719 9.23738L31.6537 15.8331ZM43.7421 7.7981L50.8726 0.137804H36.9879V3.28995H43.5722L39.0573 7.80405L46.3394 15.8569H51L43.7421 7.7981Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-698EG.framer-1lshqz3, .framer-698EG .framer-1lshqz3 { display: block; }\",\".framer-698EG.framer-qvgied { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-698EG .framer-b783ho { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-698EG .framer-s2cizc { flex: none; height: 14px; left: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 14px / 2); }\",\".framer-698EG.framer-v-yrovkc.framer-qvgied { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; }\",\".framer-698EG.framer-v-yrovkc .framer-s2cizc { left: unset; position: relative; right: unset; top: unset; width: 46px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-698EG.framer-v-yrovkc.framer-qvgied { gap: 0px; } .framer-698EG.framer-v-yrovkc.framer-qvgied > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-698EG.framer-v-yrovkc.framer-qvgied > :first-child { margin-left: 0px; } .framer-698EG.framer-v-yrovkc.framer-qvgied > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vr2sQ06wl\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf6Axk98rN=withCSS(Component,css,\"framer-698EG\");export default Framerf6Axk98rN;Framerf6Axk98rN.displayName=\"omr-capterra\";Framerf6Axk98rN.defaultProps={height:24,width:24};addPropertyControls(Framerf6Axk98rN,{variant:{options:[\"skwLgO4MS\",\"Vr2sQ06wl\"],optionTitles:[\"capterra\",\"omr\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerf6Axk98rN,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf6Axk98rN\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vr2sQ06wl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f6Axk98rN.map","// Generated by Framer (f74aab7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Memoji from\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\";import OmrCapterra from\"https://framerusercontent.com/modules/ZXdu6HtXxN4BeI3wYs0Y/HSZ4gv7aRH1ktC9m92PG/f6Axk98rN.js\";const OmrCapterraFonts=getFonts(OmrCapterra);const MemojiFonts=getFonts(Memoji);const MemojiControls=getPropertyControls(Memoji);const OmrCapterraControls=getPropertyControls(OmrCapterra);const serializationHash=\"framer-HrWT4\";const variantClassNames={fclbEU0NK:\"framer-v-k712z3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 humanReadableEnumMap={\"Lacey-Mae\":\"Jj_gJ6raO\",Ada:\"v2n6jd8d8\",Aleeza:\"tR7FlThNE\",Alejandro:\"bNhqIdQoj\",Ammaar:\"snFARdAmz\",Arda:\"mcvPgNUgN\",Ayisha:\"UozSdcuUY\",Barry:\"TxmZTsvXB\",Becca:\"NqCoJY2pH\",Bo:\"UYFenO8zH\",Carley:\"OY_j7HdJV\",Carmen:\"nMHdUM1t6\",Cheryl:\"cHv8JY9g7\",Denny:\"bOMpuyzc_\",Dillon:\"tExww8aRk\",Elli:\"bg0lLngd2\",Jardel:\"hUi9TraZo\",Jason:\"AD1uRb789\",Jess:\"t6uYX0tBZ\",Jethro:\"ji0e3Gqv5\",Lois:\"vrPxXX3Sq\",Lori:\"wQ9whLvFH\",Maisie:\"YC5psLXzO\",Myah:\"JG7MxGgTY\",Nataniel:\"EgLxQrxHD\",Nikita:\"vol5AdrV3\",Olli:\"AnI2DvQZf\",Patrik:\"Stnp3oRU4\",Piotr:\"FKNQjSL73\",Rhian:\"y8osi5SA0\",Selin:\"OYkCSZPL0\",Shelbie:\"RpMB9X2cU\",Siena:\"Nz_Z2NTH0\",Tim:\"rbMcqs1eA\"};const humanReadableEnumMap1={capterra:\"skwLgO4MS\",omr:\"Vr2sQ06wl\"};const getProps=({bgColor,capterraOmr,height,id,memoja,memojaBg,name1,shadow,text,width,...props})=>{return{...props,adJScYbPh:humanReadableEnumMap[memoja]??memoja??props.adJScYbPh??\"AD1uRb789\",Pq84hWnnR:memojaBg??props.Pq84hWnnR??\"var(--token-bff8a25b-120f-42a7-b687-658925ac679f, rgb(0, 247, 124))\",q_ittBOfJ:humanReadableEnumMap1[capterraOmr]??capterraOmr??props.q_ittBOfJ??\"skwLgO4MS\",rNtRj1LDd:text??props.rNtRj1LDd??\"Intuitive, nice and modern UX!\",toFNEmgVq:bgColor??props.toFNEmgVq??\"rgb(255, 255, 255)\",U6c0oYEDd:name1??props.U6c0oYEDd??\"Sebastian\",WaOaiJmhf:shadow??props.WaOaiJmhf??\"0px 2px 5px 0px rgba(0, 0, 0, 0.25)\"};};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,rNtRj1LDd,U6c0oYEDd,adJScYbPh,Pq84hWnnR,q_ittBOfJ,WaOaiJmhf,toFNEmgVq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fclbEU0NK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-k712z3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fclbEU0NK\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lgi4kb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"skCBsF4qx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(49, 49, 57, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",\"--x7mhqf\":WaOaiJmhf,backgroundColor:toFNEmgVq,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"var(--x7mhqf)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cml9q5\",layoutDependency:layoutDependency,layoutId:\"rQyZFm2B3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tuvcgx\",layoutDependency:layoutDependency,layoutId:\"pswAFZ_x1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qr8jyk\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"kd4l8XUpS\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0L10.3982 4.69921L15.6085 5.52786L11.8803 9.26079L12.7023 14.4721L8 12.08L3.29772 14.4721L4.11969 9.26079L0.391548 5.52786L5.60184 4.69921L8 0Z\" fill=\"#FFBB0B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18h3yzt\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"lUUU0NRaM\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0L10.3982 4.69921L15.6085 5.52786L11.8803 9.26079L12.7023 14.4721L8 12.08L3.29772 14.4721L4.11969 9.26079L0.391548 5.52786L5.60184 4.69921L8 0Z\" fill=\"#FFBB0B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11t1x5u\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"bevBLtsuv\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0L10.3982 4.69921L15.6085 5.52786L11.8803 9.26079L12.7023 14.4721L8 12.08L3.29772 14.4721L4.11969 9.26079L0.391548 5.52786L5.60184 4.69921L8 0Z\" fill=\"#FFBB0B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mpo0uq\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"HAvGCygyH\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0L10.3982 4.69921L15.6085 5.52786L11.8803 9.26079L12.7023 14.4721L8 12.08L3.29772 14.4721L4.11969 9.26079L0.391548 5.52786L5.60184 4.69921L8 0Z\" fill=\"#FFBB0B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g798bb\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I2e9Op86Z\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0L10.3982 4.69921L15.6085 5.52786L11.8803 9.26079L12.7023 14.4721L8 12.08L3.29772 14.4721L4.11969 9.26079L0.391548 5.52786L5.60184 4.69921L8 0Z\" fill=\"#FFBB0B\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+((componentViewport?.height||224)*.5000000000000002-80)+20+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1clekco-container\",layoutDependency:layoutDependency,layoutId:\"m1PMOOryx-container\",nodeId:\"m1PMOOryx\",rendersWithMotion:true,scopeId:\"DFENmS4yE\",children:/*#__PURE__*/_jsx(OmrCapterra,{height:\"100%\",id:\"m1PMOOryx\",layoutId:\"m1PMOOryx\",style:{height:\"100%\"},variant:q_ittBOfJ,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 57))\"},children:\"Intuitive, nice and modern UX!\"})}),className:\"framer-119qaa2\",\"data-framer-name\":\"Intuitive, nice and modern UX!\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"wXptLDsoA\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 57)\",\"--framer-paragraph-spacing\":\"0px\"},text:rNtRj1LDd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wc4z7m\",\"data-framer-name\":\"Frame 1948753986\",layoutDependency:layoutDependency,layoutId:\"kwW7x2pK4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qturoe-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fW0LvkI2_-container\",nodeId:\"fW0LvkI2_\",rendersWithMotion:true,scopeId:\"DFENmS4yE\",children:/*#__PURE__*/_jsx(Memoji,{background:Pq84hWnnR,height:\"100%\",id:\"fW0LvkI2_\",layoutId:\"fW0LvkI2_\",radius:100,rotation:0,style:{height:\"100%\",width:\"100%\"},variant:adJScYbPh,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(49, 49, 57, 1))\"},children:\"Sebastian\"})})}),className:\"framer-gmn280\",\"data-framer-name\":\"Sebastian\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"hKQn4IDWV\",style:{\"--extracted-1w3ko1f\":\"rgba(49, 49, 57, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:U6c0oYEDd,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HrWT4.framer-179fenu, .framer-HrWT4 .framer-179fenu { display: block; }\",\".framer-HrWT4.framer-k712z3 { gap: 0px; height: 224px; overflow: visible; position: relative; width: 328px; }\",\".framer-HrWT4 .framer-1lgi4kb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 160px; justify-content: space-between; left: calc(50.00000000000002% - 280px / 2); overflow: visible; padding: 20px 20px 16px 20px; position: absolute; top: calc(50.00000000000002% - 160px / 2); width: 280px; }\",\".framer-HrWT4 .framer-cml9q5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HrWT4 .framer-tuvcgx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HrWT4 .framer-qr8jyk, .framer-HrWT4 .framer-18h3yzt, .framer-HrWT4 .framer-11t1x5u, .framer-HrWT4 .framer-1mpo0uq, .framer-HrWT4 .framer-g798bb { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-HrWT4 .framer-1clekco-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-HrWT4 .framer-119qaa2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HrWT4 .framer-wc4z7m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HrWT4 .framer-1qturoe-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-HrWT4 .framer-gmn280 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-HrWT4[data-border=\"true\"]::after, .framer-HrWT4 [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 224\n * @framerIntrinsicWidth 328\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rNtRj1LDd\":\"text\",\"U6c0oYEDd\":\"name1\",\"adJScYbPh\":\"memoja\",\"Pq84hWnnR\":\"memojaBg\",\"q_ittBOfJ\":\"capterraOmr\",\"WaOaiJmhf\":\"shadow\",\"toFNEmgVq\":\"bgColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDFENmS4yE=withCSS(Component,css,\"framer-HrWT4\");export default FramerDFENmS4yE;FramerDFENmS4yE.displayName=\"carouselCard\";FramerDFENmS4yE.defaultProps={height:224,width:328};addPropertyControls(FramerDFENmS4yE,{rNtRj1LDd:{defaultValue:\"Intuitive, nice and modern UX!\",displayTextArea:false,title:\"Text\",type:ControlType.String},U6c0oYEDd:{defaultValue:\"Sebastian\",displayTextArea:false,title:\"Name\",type:ControlType.String},adJScYbPh:MemojiControls?.[\"variant\"]&&{...MemojiControls[\"variant\"],defaultValue:\"AD1uRb789\",description:undefined,hidden:undefined,title:\"memoja\"},Pq84hWnnR:{defaultValue:'var(--token-bff8a25b-120f-42a7-b687-658925ac679f, rgb(0, 247, 124)) /* {\"name\":\"green\"} */',title:\"memojaBg\",type:ControlType.Color},q_ittBOfJ:OmrCapterraControls?.[\"variant\"]&&{...OmrCapterraControls[\"variant\"],defaultValue:\"skwLgO4MS\",description:undefined,hidden:undefined,title:\"capterra/omr\"},WaOaiJmhf:{defaultValue:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],title:\"Shadow\",type:ControlType.BoxShadow},toFNEmgVq:{defaultValue:\"rgb(255, 255, 255)\",title:\"bgColor\",type:ControlType.Color}});addFonts(FramerDFENmS4yE,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...OmrCapterraFonts,...MemojiFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDFENmS4yE\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"224\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"rNtRj1LDd\\\":\\\"text\\\",\\\"U6c0oYEDd\\\":\\\"name1\\\",\\\"adJScYbPh\\\":\\\"memoja\\\",\\\"Pq84hWnnR\\\":\\\"memojaBg\\\",\\\"q_ittBOfJ\\\":\\\"capterraOmr\\\",\\\"WaOaiJmhf\\\":\\\"shadow\\\",\\\"toFNEmgVq\\\":\\\"bgColor\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"328\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DFENmS4yE.map","// Generated by Framer (f74aab7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/F1d2mszekAy6PH2ePIAf/1xHot2FKPyMJ9vOcuTyu/nz9jiqsXd.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/U8KmHlS8jmOtQTBXxUOH/d8Pqt4URCNwAhoH0XnHq/EhNvTpNSo.js\";import CarouselCard from\"https://framerusercontent.com/modules/auAPiQeGBtUcHe8F8nMA/Y7Fz6krm9ASCTnPK5Lna/DFENmS4yE.js\";const CarouselCardFonts=getFonts(CarouselCard);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"JoqOWdtsh\",\"RJxZhAxpW\",\"xEDkNElOu\",\"DKlIpqVW3\",\"Vm7wZPSpX\"];const serializationHash=\"framer-Ce0mk\";const variantClassNames={DKlIpqVW3:\"framer-v-2exjxp\",JoqOWdtsh:\"framer-v-1v95ubs\",RJxZhAxpW:\"framer-v-v0s914\",Vm7wZPSpX:\"framer-v-1fa6v4s\",xEDkNElOu:\"framer-v-1wkwowu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 humanReadableVariantMap={base:\"Vm7wZPSpX\",Desktop:\"JoqOWdtsh\",mini:\"DKlIpqVW3\",Phone:\"xEDkNElOu\",Tablet:\"RJxZhAxpW\"};const getProps=({bgColor,height,id,shadow,width,...props})=>{return{...props,hniMe8g5y:shadow??props.hniMe8g5y,MtcwCkOOk:bgColor??props.MtcwCkOOk??\"rgb(255, 255, 255)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"JoqOWdtsh\"};};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,hniMe8g5y,MtcwCkOOk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JoqOWdtsh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Vm7wZPSpX\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1v95ubs\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"JoqOWdtsh\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{Vm7wZPSpX:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({DKlIpqVW3:{\"data-framer-name\":\"mini\"},RJxZhAxpW:{\"data-framer-name\":\"Tablet\"},Vm7wZPSpX:{\"data-framer-name\":\"base\"},xEDkNElOu:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ldcv6u\",\"data-framer-name\":\"trusted_by\",layoutDependency:layoutDependency,layoutId:\"SO3STVPsI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fmlsat\",\"data-styles-preset\":\"nz9jiqsXd\",children:\"Real client voices from Capterra & OMR:\"})}),className:\"framer-1wm6sz9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Szw_ObBQR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DKlIpqVW3:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fmlsat\",\"data-styles-preset\":\"nz9jiqsXd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Real client voices from Capterra & OMR:\"})})},xEDkNElOu:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fmlsat\",\"data-styles-preset\":\"nz9jiqsXd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Real client voices from Capterra & OMR:\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-962skq-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FWtQDfYHP-container\",nodeId:\"FWtQDfYHP\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"FWtQDfYHP\",layoutId:\"FWtQDfYHP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17ufeuz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zwMnHLxDx-container\",nodeId:\"zwMnHLxDx\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"AnI2DvQZf\",height:\"100%\",id:\"zwMnHLxDx\",layoutId:\"zwMnHLxDx\",Pq84hWnnR:\"var(--token-bff8a25b-120f-42a7-b687-658925ac679f, rgb(0, 247, 124))\",q_ittBOfJ:\"Vr2sQ06wl\",rNtRj1LDd:getLocalizedValue(\"v2\",activeLocale)??\"The ideal tool for workplace scheduling\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Stefan\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-it8sv6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"leYnSvAQa-container\",nodeId:\"leYnSvAQa\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"vol5AdrV3\",height:\"100%\",id:\"leYnSvAQa\",layoutId:\"leYnSvAQa\",Pq84hWnnR:\"var(--token-c397892b-abc2-4bae-8868-b6b37e8dc76c, rgb(255, 187, 11))\",q_ittBOfJ:\"Vr2sQ06wl\",rNtRj1LDd:getLocalizedValue(\"v3\",activeLocale)??\"Very simple & helpful tool\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Udo\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v1odpd-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cTfKomwxH-container\",nodeId:\"cTfKomwxH\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"EgLxQrxHD\",height:\"100%\",id:\"cTfKomwxH\",layoutId:\"cTfKomwxH\",Pq84hWnnR:\"var(--token-81860d84-34ef-41ad-818f-c0d3d34a44a1, rgb(81, 21, 241))\",q_ittBOfJ:\"Vr2sQ06wl\",rNtRj1LDd:getLocalizedValue(\"v4\",activeLocale)??\"Intuitive, nice and modern UX!\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Sebastian\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x0g9rp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"x0sJ70FQw-container\",nodeId:\"x0sJ70FQw\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"bg0lLngd2\",height:\"100%\",id:\"x0sJ70FQw\",layoutId:\"x0sJ70FQw\",Pq84hWnnR:\"var(--token-efa4b43d-f14b-49fd-a747-a9714b481798, rgb(255, 85, 37))\",q_ittBOfJ:\"Vr2sQ06wl\",rNtRj1LDd:getLocalizedValue(\"v5\",activeLocale)??\"Clearly arranged & very functional --> Top Tool\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Sergej\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-aclrpa-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PEnYBbOtw-container\",nodeId:\"PEnYBbOtw\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"FKNQjSL73\",height:\"100%\",id:\"PEnYBbOtw\",layoutId:\"PEnYBbOtw\",Pq84hWnnR:\"var(--token-bff8a25b-120f-42a7-b687-658925ac679f, rgb(0, 247, 124))\",q_ittBOfJ:\"Vr2sQ06wl\",rNtRj1LDd:getLocalizedValue(\"v6\",activeLocale)??\"Fantastic tool - we and our tenants are very happy\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Michael\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vli4hi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PhkDNiXRL-container\",nodeId:\"PhkDNiXRL\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"Nz_Z2NTH0\",height:\"100%\",id:\"PhkDNiXRL\",layoutId:\"PhkDNiXRL\",Pq84hWnnR:\"var(--token-c397892b-abc2-4bae-8868-b6b37e8dc76c, rgb(255, 187, 11))\",q_ittBOfJ:\"skwLgO4MS\",rNtRj1LDd:getLocalizedValue(\"v7\",activeLocale)??\"The Capabilities of yoffix Are Incredible\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Ruth\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wueh5i-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HLHD0rC8K-container\",nodeId:\"HLHD0rC8K\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"tR7FlThNE\",height:\"100%\",id:\"HLHD0rC8K\",layoutId:\"HLHD0rC8K\",Pq84hWnnR:\"var(--token-81860d84-34ef-41ad-818f-c0d3d34a44a1, rgb(81, 21, 241))\",q_ittBOfJ:\"skwLgO4MS\",rNtRj1LDd:getLocalizedValue(\"v8\",activeLocale)??\"A Smooth Solution For Digitizing Workplaces\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Faith\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"304px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1exujc5-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yG86m7QsQ-container\",nodeId:\"yG86m7QsQ\",rendersWithMotion:true,scopeId:\"EhNvTpNSo\",children:/*#__PURE__*/_jsx(CarouselCard,{adJScYbPh:\"bOMpuyzc_\",height:\"100%\",id:\"yG86m7QsQ\",layoutId:\"yG86m7QsQ\",Pq84hWnnR:\"var(--token-bff8a25b-120f-42a7-b687-658925ac679f, rgb(0, 247, 124))\",q_ittBOfJ:\"skwLgO4MS\",rNtRj1LDd:getLocalizedValue(\"v9\",activeLocale)??\"An Effective Way to Boost Productivity\",style:{height:\"100%\",width:\"100%\"},toFNEmgVq:MtcwCkOOk,U6c0oYEDd:\"Samuel\",WaOaiJmhf:hniMe8g5y,width:\"100%\"})})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ce0mk.framer-1azokqt, .framer-Ce0mk .framer-1azokqt { display: block; }\",\".framer-Ce0mk.framer-1v95ubs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 72px 0px; position: relative; width: 1200px; }\",\".framer-Ce0mk .framer-ldcv6u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 96px 16px 96px; position: relative; width: 100%; }\",\".framer-Ce0mk .framer-1wm6sz9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Ce0mk .framer-962skq-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-Ce0mk .framer-17ufeuz-container, .framer-Ce0mk .framer-it8sv6-container, .framer-Ce0mk .framer-1v1odpd-container, .framer-Ce0mk .framer-1x0g9rp-container, .framer-Ce0mk .framer-aclrpa-container, .framer-Ce0mk .framer-1vli4hi-container, .framer-Ce0mk .framer-1wueh5i-container, .framer-Ce0mk .framer-1exujc5-container { height: 208px; position: relative; width: 304px; }\",\".framer-Ce0mk.framer-v-v0s914.framer-1v95ubs { gap: 0px; padding: 0px 0px 64px 0px; width: 810px; }\",\".framer-Ce0mk.framer-v-v0s914 .framer-ldcv6u { gap: 40px; padding: 0px 56px 24px 56px; }\",\".framer-Ce0mk.framer-v-1wkwowu.framer-1v95ubs { width: 390px; }\",\".framer-Ce0mk.framer-v-1wkwowu .framer-ldcv6u, .framer-Ce0mk.framer-v-2exjxp .framer-ldcv6u { gap: 40px; justify-content: center; padding: 0px 24px 8px 24px; }\",\".framer-Ce0mk.framer-v-2exjxp.framer-1v95ubs { width: 320px; }\",\".framer-Ce0mk.framer-v-1fa6v4s.framer-1v95ubs { overflow: visible; padding: 0px; }\",\".framer-Ce0mk.framer-v-1fa6v4s .framer-962skq-container { height: 224px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 324\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RJxZhAxpW\":{\"layout\":[\"fixed\",\"auto\"]},\"xEDkNElOu\":{\"layout\":[\"fixed\",\"auto\"]},\"DKlIpqVW3\":{\"layout\":[\"fixed\",\"auto\"]},\"Vm7wZPSpX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hniMe8g5y\":\"shadow\",\"MtcwCkOOk\":\"bgColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEhNvTpNSo=withCSS(Component,css,\"framer-Ce0mk\");export default FramerEhNvTpNSo;FramerEhNvTpNSo.displayName=\"reviews\";FramerEhNvTpNSo.defaultProps={height:324,width:1200};addPropertyControls(FramerEhNvTpNSo,{variant:{options:[\"JoqOWdtsh\",\"RJxZhAxpW\",\"xEDkNElOu\",\"DKlIpqVW3\",\"Vm7wZPSpX\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"mini\",\"base\"],title:\"Variant\",type:ControlType.Enum},hniMe8g5y:{defaultValue:[],title:\"Shadow\",type:ControlType.BoxShadow},MtcwCkOOk:{defaultValue:\"rgb(255, 255, 255)\",title:\"Bg Color\",type:ControlType.Color}});addFonts(FramerEhNvTpNSo,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"}]},...CarouselCardFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEhNvTpNSo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RJxZhAxpW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xEDkNElOu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DKlIpqVW3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vm7wZPSpX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"324\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"hniMe8g5y\\\":\\\"shadow\\\",\\\"MtcwCkOOk\\\":\\\"bgColor\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EhNvTpNSo.map"],"mappings":"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"}