{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js", "ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js", "ssg:https://framerusercontent.com/modules/MrIzJfLHpQ5KwyBaGWvG/cj4ZBkMaokt5uDEMfFZr/XqCwTtsCj.js", "ssg:https://framerusercontent.com/modules/gxvfYUTAGFD5qsoTdtww/bDvpMQlONXLnE5h4Bmse/lpQaxlqHL.js", "ssg:https://framerusercontent.com/modules/qde5VtKGPrLpm9dA4TYZ/aigbXg8c1phpPEO0mUHo/G70DX0xoo.js", "ssg:https://framerusercontent.com/modules/urDl62XCDttAuber3Tb0/JK7n1PGb8cUzcXHfRI4G/ily1LfPy4.js", "ssg:https://framerusercontent.com/modules/oRORTxLIfcg6qZMs3txq/Q8tdHYRqtYttjUwvrUiE/RP5BZETCJ.js", "ssg:https://framerusercontent.com/modules/2IvbxPMqq42L3S9b6gGr/IOIKmuZ7TkEvJw35uAwE/RXHxwWH3A.js", "ssg:https://framerusercontent.com/modules/WPxHtZyksnnv9b4WMXtX/JuaDzf6lajlFWalz7aPI/T8gKafQtp.js", "ssg:https://framerusercontent.com/modules/btfUeWaKvBiUErMPUXNk/YVu9HSbJxUs8hAZXn0HC/AS4PcgcTr.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const baseUrl=\"https://logo.clearbit.com/\";const getLogoUrl=company=>{if(!company)return null;return company.includes(\".\")?`${baseUrl}${company}?size=500`:`${baseUrl}${company}.com?size=500`;};/**\n * @framerIntrinsicWidth 64\n * @framerIntrinsicHeight 64\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Logo(props){const{company,radius,isSearch,srcType,srcUrl,srcFile,style}=props;const logoURL=useMemo(()=>{if(isSearch)return getLogoUrl(company);if(srcType===SrcType.Upload)return srcFile;if(srcType===SrcType.Url)return srcUrl;return null;},[company,isSearch,srcType,srcUrl,srcFile]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return logoURL?/*#__PURE__*/ _jsx(\"img\",{src:logoURL,style:{...baseStyles,...style,borderRadius:radius},alt:\"Logo\"}):emptyState;};Logo.defaultProps={company:\"Framer\",radius:100,width:64,height:64,isSearch:true};const baseStyles={position:\"absolute\",left:0,right:0,top:0,bottom:0,width:\"100%\",height:\"100%\"};addPropertyControls(Logo,{isSearch:{type:ControlType.Boolean,title:\"Type\",disabledTitle:\"Custom\",enabledTitle:\"Search\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Upload],hidden:({isSearch})=>isSearch},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.jpg\",hidden:({srcType,isSearch})=>srcType===SrcType.Upload||isSearch},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"jpg\",\"png\",\"jpeg\",\"tiff\",\"gif\"],hidden:({srcType,isSearch})=>srcType===SrcType.Url||isSearch},company:{type:ControlType.String,title:\"Company\",placeholder:\"Github, Apple...\",hidden:({isSearch})=>!isSearch},radius:{type:ControlType.Number,min:0,max:100,title:\"Radius\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Logo\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"64\",\"framerIntrinsicHeight\":\"64\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Logo.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.\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\":\"\u00B0\"}});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,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Q4ffjLI0h\",\"QlWrJ4Faj\"];const serializationHash=\"framer-l0fZV\";const variantClassNames={Q4ffjLI0h:\"framer-v-swkvju\",QlWrJ4Faj:\"framer-v-u5pibt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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={Closed:\"Q4ffjLI0h\",Open:\"QlWrJ4Faj\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Q4ffjLI0h\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Q4ffjLI0h\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapurhdxk=activeVariantCallback(async(...args)=>{setVariant(\"QlWrJ4Faj\");});const onTapbox2tw=activeVariantCallback(async(...args)=>{setVariant(\"Q4ffjLI0h\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"QlWrJ4Faj\")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-swkvju\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"Q4ffjLI0h\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({QlWrJ4Faj:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p523k3\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SEU_0UlAV\",onTap:onTapurhdxk,...addPropertyOverrides({QlWrJ4Faj:{onTap:onTapbox2tw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yiltom\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"wcrIoCSRC\",style:{opacity:.3,rotate:0},variants:{QlWrJ4Faj:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yhm8gs\",layoutDependency:layoutDependency,layoutId:\"YZWEA5g5k\",style:{backgroundColor:\"rgb(28, 64, 92)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmp8mk\",layoutDependency:layoutDependency,layoutId:\"EWhWDrf2q\",style:{backgroundColor:\"rgb(28, 64, 92)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 64, 92))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-yukqzz\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"Klpekq8da\",style:{\"--extracted-r6o4lv\":\"rgb(28, 64, 92)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19u29wi\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"vWSQFjyh6\",style:{opacity:0},variants:{QlWrJ4Faj:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 64, 92))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1dm1rti\",fonts:[\"GF;Inter-300\"],layoutDependency:layoutDependency,layoutId:\"Fh9x2PEez\",style:{\"--extracted-r6o4lv\":\"rgb(28, 64, 92)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{QlWrJ4Faj:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l0fZV.framer-32e940, .framer-l0fZV .framer-32e940 { display: block; }\",\".framer-l0fZV.framer-swkvju { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-l0fZV .framer-1p523k3 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-l0fZV .framer-1yiltom { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-l0fZV .framer-1yhm8gs { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-l0fZV .framer-hmp8mk { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-l0fZV .framer-yukqzz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-l0fZV .framer-19u29wi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-l0fZV .framer-1dm1rti { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l0fZV.framer-swkvju, .framer-l0fZV .framer-1p523k3, .framer-l0fZV .framer-19u29wi { gap: 0px; } .framer-l0fZV.framer-swkvju > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-l0fZV.framer-swkvju > :first-child, .framer-l0fZV .framer-19u29wi > :first-child { margin-top: 0px; } .framer-l0fZV.framer-swkvju > :last-child, .framer-l0fZV .framer-19u29wi > :last-child { margin-bottom: 0px; } .framer-l0fZV .framer-1p523k3 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-l0fZV .framer-1p523k3 > :first-child { margin-left: 0px; } .framer-l0fZV .framer-1p523k3 > :last-child { margin-right: 0px; } .framer-l0fZV .framer-19u29wi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QlWrJ4Faj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXqCwTtsCj=withCSS(Component,css,\"framer-l0fZV\");export default FramerXqCwTtsCj;FramerXqCwTtsCj.displayName=\"Row Copy 4\";FramerXqCwTtsCj.defaultProps={height:88,width:400};addPropertyControls(FramerXqCwTtsCj,{variant:{options:[\"Q4ffjLI0h\",\"QlWrJ4Faj\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerXqCwTtsCj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZ1rib2Bg-4.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXqCwTtsCj\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"88\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QlWrJ4Faj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XqCwTtsCj.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import RowCopy4 from\"https://framerusercontent.com/modules/MrIzJfLHpQ5KwyBaGWvG/cj4ZBkMaokt5uDEMfFZr/XqCwTtsCj.js\";const RowCopy4Fonts=getFonts(RowCopy4);const cycleOrder=[\"Q_rSrV9R4\"];const serializationHash=\"framer-m6m55\";const variantClassNames={Q_rSrV9R4:\"framer-v-1shae0t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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 getProps=({height,id,width,...props})=>{return{...props};};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:\"Q_rSrV9R4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1shae0t\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Q_rSrV9R4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(228, 239, 249)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11nkey3-container\",layoutDependency:layoutDependency,layoutId:\"eX8uRAuxd-container\",children:/*#__PURE__*/_jsx(RowCopy4,{height:\"100%\",id:\"eX8uRAuxd\",layoutId:\"eX8uRAuxd\",style:{width:\"100%\"},T8rQFvSBR:\"Customers will book this session with you to receive personalized guidance on crafting a compelling resume and preparing for interviews. The session will cover key insights on structuring resumes to stand out, mastering common interview questions, and showcasing strengths to potential employers. \",variant:\"Q4ffjLI0h\",W88zB8mIG:\"Resume and Interview Preparation Coaching\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xes1p4\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"wydTh4gUd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-piwti4-container\",layoutDependency:layoutDependency,layoutId:\"fbEa_Doc0-container\",children:/*#__PURE__*/_jsx(RowCopy4,{height:\"100%\",id:\"fbEa_Doc0\",layoutId:\"fbEa_Doc0\",style:{width:\"100%\"},T8rQFvSBR:\"In this session, customers will get actionable advice from you on how to advance in their current role. This includes guidance on positioning themselves for promotions and effectively communicating their achievements to leadership. \",variant:\"Q4ffjLI0h\",W88zB8mIG:\"Career Growth Insight and Guidance\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rg8edw\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"QsTXq0J_P\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lshyaf-container\",layoutDependency:layoutDependency,layoutId:\"hhj97kZVr-container\",children:/*#__PURE__*/_jsx(RowCopy4,{height:\"100%\",id:\"hhj97kZVr\",layoutId:\"hhj97kZVr\",style:{width:\"100%\"},T8rQFvSBR:\"Customers will book this session to discuss with you the considerations around switching roles or companies. You\u2019ll help them evaluate whether a career switch is right and how to position themselves in the market\",variant:\"Q4ffjLI0h\",W88zB8mIG:\"Role or Company Switching Guidance\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m6m55.framer-1qlrttv, .framer-m6m55 .framer-1qlrttv { display: block; }\",\".framer-m6m55.framer-1shae0t { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m6m55 .framer-11nkey3-container, .framer-m6m55 .framer-piwti4-container, .framer-m6m55 .framer-lshyaf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-m6m55 .framer-xes1p4, .framer-m6m55 .framer-rg8edw { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m6m55.framer-1shae0t { gap: 0px; } .framer-m6m55.framer-1shae0t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-m6m55.framer-1shae0t > :first-child { margin-top: 0px; } .framer-m6m55.framer-1shae0t > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlpQaxlqHL=withCSS(Component,css,\"framer-m6m55\");export default FramerlpQaxlqHL;FramerlpQaxlqHL.displayName=\"Accordion Copy 9\";FramerlpQaxlqHL.defaultProps={height:194,width:1e3};addFonts(FramerlpQaxlqHL,[{explicitInter:true,fonts:[]},...RowCopy4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlpQaxlqHL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"194\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZUI07J4lW\",\"wbGht3xj0\"];const serializationHash=\"framer-2MtTm\";const variantClassNames={wbGht3xj0:\"framer-v-1tbymo3\",ZUI07J4lW:\"framer-v-1iallyl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={Closed:\"ZUI07J4lW\",Open:\"wbGht3xj0\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZUI07J4lW\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZUI07J4lW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1nz0rj6=activeVariantCallback(async(...args)=>{setVariant(\"wbGht3xj0\");});const onTapq1a0yl=activeVariantCallback(async(...args)=>{setVariant(\"ZUI07J4lW\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"wbGht3xj0\")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-1iallyl\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"ZUI07J4lW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({wbGht3xj0:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sjd7vm\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jCAYBW_Ct\",onTap:onTap1nz0rj6,...addPropertyOverrides({wbGht3xj0:{onTap:onTapq1a0yl}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-fpf85q\",fonts:[\"FS;Poppins-medium\"],layoutDependency:layoutDependency,layoutId:\"h_f4rqDt4\",style:{\"--extracted-1lwpl3i\":\"var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1al4m68\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"ti6gvPbHJ\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{wbGht3xj0:{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a4rih0\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kAgjz_jHn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 7\"><path d=\"M 0.808 1.22 C 1.101 0.928 1.575 0.928 1.868 1.22 L 5.588 4.94 L 9.308 1.22 C 9.495 1.019 9.777 0.937 10.042 1.005 C 10.308 1.072 10.516 1.28 10.583 1.546 C 10.651 1.811 10.569 2.093 10.368 2.28 L 6.118 6.53 C 5.825 6.822 5.351 6.822 5.058 6.53 L 0.808 2.28 C 0.516 1.987 0.516 1.513 0.808 1.22 Z\" fill=\"rgb(44, 59, 71)\"></path></svg>',svgContentId:9595223004,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uomqp5\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"OCkbDKvqF\",style:{opacity:0},variants:{wbGht3xj0:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1n3knep\",fonts:[\"GF;Lexend-regular\"],layoutDependency:layoutDependency,layoutId:\"l8neVRL65\",style:{\"--extracted-r6o4lv\":\"var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{wbGht3xj0:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2MtTm.framer-1q1nqvr, .framer-2MtTm .framer-1q1nqvr { display: block; }\",\".framer-2MtTm.framer-1iallyl { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-2MtTm .framer-sjd7vm { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 40px 20px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-2MtTm .framer-fpf85q { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2MtTm .framer-1al4m68 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 96%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-2MtTm .framer-1a4rih0 { flex: none; height: 7px; position: relative; width: 11px; }\",\".framer-2MtTm .framer-uomqp5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 0px; position: relative; width: 100%; }\",\".framer-2MtTm .framer-1n3knep { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2MtTm.framer-1iallyl, .framer-2MtTm .framer-sjd7vm, .framer-2MtTm .framer-1al4m68, .framer-2MtTm .framer-uomqp5 { gap: 0px; } .framer-2MtTm.framer-1iallyl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2MtTm.framer-1iallyl > :first-child, .framer-2MtTm .framer-1al4m68 > :first-child, .framer-2MtTm .framer-uomqp5 > :first-child { margin-top: 0px; } .framer-2MtTm.framer-1iallyl > :last-child, .framer-2MtTm .framer-1al4m68 > :last-child, .framer-2MtTm .framer-uomqp5 > :last-child { margin-bottom: 0px; } .framer-2MtTm .framer-sjd7vm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2MtTm .framer-sjd7vm > :first-child { margin-left: 0px; } .framer-2MtTm .framer-sjd7vm > :last-child { margin-right: 0px; } .framer-2MtTm .framer-1al4m68 > *, .framer-2MtTm .framer-uomqp5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wbGht3xj0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG70DX0xoo=withCSS(Component,css,\"framer-2MtTm\");export default FramerG70DX0xoo;FramerG70DX0xoo.displayName=\"Faq Copy 4\";FramerG70DX0xoo.defaultProps={height:105,width:400};addPropertyControls(FramerG70DX0xoo,{variant:{options:[\"ZUI07J4lW\",\"wbGht3xj0\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerG70DX0xoo,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LVte6KuGEo.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG70DX0xoo\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wbGht3xj0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"105\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G70DX0xoo.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Bqr7glHeG:{hover:true},pJrWvggtN:{hover:true},SQFC7m5KS:{hover:true}};const cycleOrder=[\"pJrWvggtN\",\"Bqr7glHeG\",\"SQFC7m5KS\"];const serializationHash=\"framer-PZwBB\";const variantClassNames={Bqr7glHeG:\"framer-v-1oqds5d\",pJrWvggtN:\"framer-v-1otue5q\",SQFC7m5KS:\"framer-v-15dhuaj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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={Outline:\"SQFC7m5KS\",Primary:\"pJrWvggtN\",White:\"Bqr7glHeG\"};const getProps=({click,height,id,link,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,U5nJzbX0I:link!==null&&link!==void 0?link:props.U5nJzbX0I,uiGFTivQO:click!==null&&click!==void 0?click:props.uiGFTivQO,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pJrWvggtN\",yqWXNZ9IM:(_ref1=title!==null&&title!==void 0?title:props.yqWXNZ9IM)!==null&&_ref1!==void 0?_ref1:\"Get Started\"};};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,U5nJzbX0I,yqWXNZ9IM,uiGFTivQO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pJrWvggtN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap7v8xrj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(uiGFTivQO){const res=await uiGFTivQO(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:U5nJzbX0I,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1otue5q\",className,classNames)} framer-b0f0jw`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pJrWvggtN\",onTap:onTap7v8xrj,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"Bqr7glHeG-hover\":{backgroundColor:\"rgb(252, 252, 252)\"},\"pJrWvggtN-hover\":{backgroundColor:\"rgb(59, 79, 97)\"},\"SQFC7m5KS-hover\":{backgroundColor:\"var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71))\"},Bqr7glHeG:{backgroundColor:\"rgb(255, 255, 255)\"},SQFC7m5KS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(44, 59, 71)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"Bqr7glHeG-hover\":{\"data-framer-name\":undefined},\"pJrWvggtN-hover\":{\"data-framer-name\":undefined},\"SQFC7m5KS-hover\":{\"data-framer-name\":undefined},Bqr7glHeG:{\"data-framer-name\":\"White\"},SQFC7m5KS:{\"data-border\":true,\"data-framer-name\":\"Outline\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Template\"})}),className:\"framer-vinmiq\",fonts:[\"GF;Lexend-500\"],layoutDependency:layoutDependency,layoutId:\"AePP0c1uj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yqWXNZ9IM,variants:{\"SQFC7m5KS-hover\":{\"--extracted-r6o4lv\":\"var(--token-c6e49f9b-83f3-4bd7-9c55-9c6ec01c41c5, rgb(255, 255, 255))\"},Bqr7glHeG:{\"--extracted-r6o4lv\":\"var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(62, 83, 100))\"},SQFC7m5KS:{\"--extracted-r6o4lv\":\"var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(44, 59, 71))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"SQFC7m5KS-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6e49f9b-83f3-4bd7-9c55-9c6ec01c41c5, rgb(255, 255, 255)))\"},children:\"Buy Template\"})})},Bqr7glHeG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(62, 83, 100)))\"},children:\"Buy Template\"})})},SQFC7m5KS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(44, 59, 71)))\"},children:\"Buy Template\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PZwBB.framer-b0f0jw, .framer-PZwBB .framer-b0f0jw { display: block; }\",\".framer-PZwBB.framer-1otue5q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PZwBB .framer-vinmiq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PZwBB.framer-1otue5q { gap: 0px; } .framer-PZwBB.framer-1otue5q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PZwBB.framer-1otue5q > :first-child { margin-left: 0px; } .framer-PZwBB.framer-1otue5q > :last-child { margin-right: 0px; } }\",'.framer-PZwBB[data-border=\"true\"]::after, .framer-PZwBB [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 44\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bqr7glHeG\":{\"layout\":[\"fixed\",\"fixed\"]},\"SQFC7m5KS\":{\"layout\":[\"fixed\",\"fixed\"]},\"LoW4ddcmy\":{\"layout\":[\"fixed\",\"fixed\"]},\"wXbgxZdYH\":{\"layout\":[\"fixed\",\"fixed\"]},\"c_O34Sh9_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"U5nJzbX0I\":\"link\",\"yqWXNZ9IM\":\"title\",\"uiGFTivQO\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerily1LfPy4=withCSS(Component,css,\"framer-PZwBB\");export default Framerily1LfPy4;Framerily1LfPy4.displayName=\"Button Copy 9\";Framerily1LfPy4.defaultProps={height:44,width:160};addPropertyControls(Framerily1LfPy4,{variant:{options:[\"pJrWvggtN\",\"Bqr7glHeG\",\"SQFC7m5KS\"],optionTitles:[\"Primary\",\"White\",\"Outline\"],title:\"Variant\",type:ControlType.Enum},U5nJzbX0I:{title:\"Link\",type:ControlType.Link},yqWXNZ9IM:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Title\",type:ControlType.String},uiGFTivQO:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerily1LfPy4,[{explicitInter:true,fonts:[{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerily1LfPy4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bqr7glHeG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SQFC7m5KS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LoW4ddcmy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wXbgxZdYH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c_O34Sh9_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"U5nJzbX0I\\\":\\\"link\\\",\\\"yqWXNZ9IM\\\":\\\"title\\\",\\\"uiGFTivQO\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"44\",\"framerIntrinsicWidth\":\"160\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ily1LfPy4.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BVwaf0SDx:{hover:true},GTP5NLQNK:{hover:true},UsJ1pr1_6:{hover:true}};const cycleOrder=[\"UsJ1pr1_6\",\"BVwaf0SDx\",\"GTP5NLQNK\"];const serializationHash=\"framer-TUsRd\";const variantClassNames={BVwaf0SDx:\"framer-v-qo63id\",GTP5NLQNK:\"framer-v-6m4e5c\",UsJ1pr1_6:\"framer-v-pdoq7g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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={Outline:\"GTP5NLQNK\",Primary:\"UsJ1pr1_6\",White:\"BVwaf0SDx\"};const getProps=({click,height,id,link,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,U5nJzbX0I:link!==null&&link!==void 0?link:props.U5nJzbX0I,uiGFTivQO:click!==null&&click!==void 0?click:props.uiGFTivQO,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UsJ1pr1_6\",yqWXNZ9IM:(_ref1=title!==null&&title!==void 0?title:props.yqWXNZ9IM)!==null&&_ref1!==void 0?_ref1:\"Get Started\"};};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,U5nJzbX0I,yqWXNZ9IM,uiGFTivQO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UsJ1pr1_6\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap7v8xrj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(uiGFTivQO){const res=await uiGFTivQO(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:U5nJzbX0I,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-pdoq7g\",className,classNames)} framer-fpo2z8`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UsJ1pr1_6\",onTap:onTap7v8xrj,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"BVwaf0SDx-hover\":{backgroundColor:\"rgb(252, 252, 252)\"},\"GTP5NLQNK-hover\":{backgroundColor:\"var(--token-1b25161d-5a0b-405a-9b82-83598ecb8828, rgb(44, 59, 71))\"},\"UsJ1pr1_6-hover\":{backgroundColor:\"rgb(59, 79, 97)\"},BVwaf0SDx:{backgroundColor:\"rgb(255, 255, 255)\"},GTP5NLQNK:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(44, 59, 71)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"BVwaf0SDx-hover\":{\"data-framer-name\":undefined},\"GTP5NLQNK-hover\":{\"data-framer-name\":undefined},\"UsJ1pr1_6-hover\":{\"data-framer-name\":undefined},BVwaf0SDx:{\"data-framer-name\":\"White\"},GTP5NLQNK:{\"data-border\":true,\"data-framer-name\":\"Outline\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Template\"})}),className:\"framer-if6a8o\",fonts:[\"GF;Lexend-500\"],layoutDependency:layoutDependency,layoutId:\"HuyVKGfYE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yqWXNZ9IM,variants:{\"GTP5NLQNK-hover\":{\"--extracted-r6o4lv\":\"var(--token-c6e49f9b-83f3-4bd7-9c55-9c6ec01c41c5, rgb(255, 255, 255))\"},BVwaf0SDx:{\"--extracted-r6o4lv\":\"var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(62, 83, 100))\"},GTP5NLQNK:{\"--extracted-r6o4lv\":\"var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(44, 59, 71))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"GTP5NLQNK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6e49f9b-83f3-4bd7-9c55-9c6ec01c41c5, rgb(255, 255, 255)))\"},children:\"Buy Template\"})})},BVwaf0SDx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(62, 83, 100)))\"},children:\"Buy Template\"})})},GTP5NLQNK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e8dc835-26ca-4572-a42d-715d73ef8321, rgb(44, 59, 71)))\"},children:\"Buy Template\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TUsRd.framer-fpo2z8, .framer-TUsRd .framer-fpo2z8 { display: block; }\",\".framer-TUsRd.framer-pdoq7g { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TUsRd .framer-if6a8o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TUsRd.framer-pdoq7g { gap: 0px; } .framer-TUsRd.framer-pdoq7g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TUsRd.framer-pdoq7g > :first-child { margin-left: 0px; } .framer-TUsRd.framer-pdoq7g > :last-child { margin-right: 0px; } }\",'.framer-TUsRd[data-border=\"true\"]::after, .framer-TUsRd [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 44\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BVwaf0SDx\":{\"layout\":[\"fixed\",\"fixed\"]},\"GTP5NLQNK\":{\"layout\":[\"fixed\",\"fixed\"]},\"y67VaYgtd\":{\"layout\":[\"fixed\",\"fixed\"]},\"LAhAb0MLM\":{\"layout\":[\"fixed\",\"fixed\"]},\"hk7XBZxcj\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"U5nJzbX0I\":\"link\",\"yqWXNZ9IM\":\"title\",\"uiGFTivQO\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRP5BZETCJ=withCSS(Component,css,\"framer-TUsRd\");export default FramerRP5BZETCJ;FramerRP5BZETCJ.displayName=\"Button Copy 11\";FramerRP5BZETCJ.defaultProps={height:44,width:160};addPropertyControls(FramerRP5BZETCJ,{variant:{options:[\"UsJ1pr1_6\",\"BVwaf0SDx\",\"GTP5NLQNK\"],optionTitles:[\"Primary\",\"White\",\"Outline\"],title:\"Variant\",type:ControlType.Enum},U5nJzbX0I:{title:\"Link\",type:ControlType.Link},yqWXNZ9IM:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Title\",type:ControlType.String},uiGFTivQO:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerRP5BZETCJ,[{explicitInter:true,fonts:[{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRP5BZETCJ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BVwaf0SDx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GTP5NLQNK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y67VaYgtd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LAhAb0MLM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hk7XBZxcj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"44\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"U5nJzbX0I\\\":\\\"link\\\",\\\"yqWXNZ9IM\\\":\\\"title\\\",\\\"uiGFTivQO\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"160\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RP5BZETCJ.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FaqCopy4 from\"https://framerusercontent.com/modules/qde5VtKGPrLpm9dA4TYZ/aigbXg8c1phpPEO0mUHo/G70DX0xoo.js\";import ButtonCopy9 from\"https://framerusercontent.com/modules/urDl62XCDttAuber3Tb0/JK7n1PGb8cUzcXHfRI4G/ily1LfPy4.js\";import ButtonCopy11 from\"https://framerusercontent.com/modules/oRORTxLIfcg6qZMs3txq/Q8tdHYRqtYttjUwvrUiE/RP5BZETCJ.js\";const ButtonCopy9Fonts=getFonts(ButtonCopy9);const ButtonCopy11Fonts=getFonts(ButtonCopy11);const FaqCopy4Fonts=getFonts(FaqCopy4);const cycleOrder=[\"EgtYA6e_I\",\"BMVLkyoqs\",\"t18rJl2Jr\",\"xLPWxFr73\",\"T_l5t9WSO\",\"l4LsQVDM_\",\"Y9CHgu_hG\",\"ipvjcFhTx\",\"jBDv_wCFC\",\"va9Wz1ipE\",\"mIgYJfQz3\",\"SZeG_NF9j\",\"AyPmwpYoW\"];const serializationHash=\"framer-f9UD8\";const variantClassNames={AyPmwpYoW:\"framer-v-1sxc0uz\",BMVLkyoqs:\"framer-v-1fjbqzw\",EgtYA6e_I:\"framer-v-h3xj73\",ipvjcFhTx:\"framer-v-15o9dcv\",jBDv_wCFC:\"framer-v-asp40d\",l4LsQVDM_:\"framer-v-1ataojo\",mIgYJfQz3:\"framer-v-u968kg\",SZeG_NF9j:\"framer-v-15jld4v\",T_l5t9WSO:\"framer-v-jgdu1h\",t18rJl2Jr:\"framer-v-7zqknk\",va9Wz1ipE:\"framer-v-1q200tk\",xLPWxFr73:\"framer-v-jjzgvc\",Y9CHgu_hG:\"framer-v-51yuz4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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={\"Becoming a WorkYogi\":\"EgtYA6e_I\",\"Earnings D\":\"xLPWxFr73\",\"Earnings M\":\"va9Wz1ipE\",\"Platform M\":\"SZeG_NF9j\",\"Platform Usage D\":\"l4LsQVDM_\",\"Post-Session resources\":\"ipvjcFhTx\",\"Session M\":\"mIgYJfQz3\",\"Sessions D\":\"T_l5t9WSO\",\"Support D\":\"Y9CHgu_hG\",\"Support M\":\"AyPmwpYoW\",Earnings:\"BMVLkyoqs\",FAQ_Desktop:\"t18rJl2Jr\",FAQ_M:\"jBDv_wCFC\"};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:\"EgtYA6e_I\"};};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:\"EgtYA6e_I\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const uiGFTivQOy7kc94=activeVariantCallback(async(...args)=>{setVariant(\"EgtYA6e_I\");});const uiGFTivQO10gy5cd=activeVariantCallback(async(...args)=>{setVariant(\"t18rJl2Jr\");});const uiGFTivQO1423h6a=activeVariantCallback(async(...args)=>{setVariant(\"jBDv_wCFC\");});const uiGFTivQOv28gry=activeVariantCallback(async(...args)=>{setVariant(\"BMVLkyoqs\");});const uiGFTivQOhrm814=activeVariantCallback(async(...args)=>{setVariant(\"xLPWxFr73\");});const uiGFTivQO1hgmzv5=activeVariantCallback(async(...args)=>{setVariant(\"va9Wz1ipE\");});const uiGFTivQO1r1c7le=activeVariantCallback(async(...args)=>{setVariant(\"T_l5t9WSO\");});const uiGFTivQO7fjs35=activeVariantCallback(async(...args)=>{setVariant(\"mIgYJfQz3\");});const uiGFTivQOqc3di4=activeVariantCallback(async(...args)=>{setVariant(\"l4LsQVDM_\");});const uiGFTivQO101dzz9=activeVariantCallback(async(...args)=>{setVariant(\"SZeG_NF9j\");});const uiGFTivQOh9snlo=activeVariantCallback(async(...args)=>{setVariant(\"Y9CHgu_hG\");});const uiGFTivQO10pknmy=activeVariantCallback(async(...args)=>{setVariant(\"AyPmwpYoW\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"l4LsQVDM_\",\"Y9CHgu_hG\",\"SZeG_NF9j\",\"AyPmwpYoW\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"Y9CHgu_hG\",\"AyPmwpYoW\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"l4LsQVDM_\",\"Y9CHgu_hG\",\"SZeG_NF9j\",\"AyPmwpYoW\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"Y9CHgu_hG\",\"AyPmwpYoW\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"ipvjcFhTx\")return false;return true;};const isDisplayed5=()=>{if([\"BMVLkyoqs\",\"xLPWxFr73\",\"Y9CHgu_hG\",\"va9Wz1ipE\",\"AyPmwpYoW\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"BMVLkyoqs\",\"xLPWxFr73\",\"T_l5t9WSO\",\"Y9CHgu_hG\",\"va9Wz1ipE\",\"mIgYJfQz3\",\"AyPmwpYoW\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"l4LsQVDM_\",\"SZeG_NF9j\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if([\"T_l5t9WSO\",\"l4LsQVDM_\",\"mIgYJfQz3\",\"SZeG_NF9j\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if([\"T_l5t9WSO\",\"mIgYJfQz3\"].includes(baseVariant))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-h3xj73\",className,classNames),\"data-framer-name\":\"Becoming a WorkYogi\",layoutDependency:layoutDependency,layoutId:\"EgtYA6e_I\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AyPmwpYoW:{\"data-framer-name\":\"Support M\"},BMVLkyoqs:{\"data-framer-name\":\"Earnings\"},ipvjcFhTx:{\"data-framer-name\":\"Post-Session resources\"},jBDv_wCFC:{\"data-framer-name\":\"FAQ_M\"},l4LsQVDM_:{\"data-framer-name\":\"Platform Usage D\"},mIgYJfQz3:{\"data-framer-name\":\"Session M\"},SZeG_NF9j:{\"data-framer-name\":\"Platform M\"},T_l5t9WSO:{\"data-framer-name\":\"Sessions D\"},t18rJl2Jr:{\"data-framer-name\":\"FAQ_Desktop\"},va9Wz1ipE:{\"data-framer-name\":\"Earnings M\"},xLPWxFr73:{\"data-framer-name\":\"Earnings D\"},Y9CHgu_hG:{\"data-framer-name\":\"Support D\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wep3sq\",layoutDependency:layoutDependency,layoutId:\"EM2_caePu\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"184px\",...addPropertyOverrides({AyPmwpYoW:{width:\"200px\"},jBDv_wCFC:{width:\"200px\"},l4LsQVDM_:{width:\"200px\"},mIgYJfQz3:{width:\"200px\"},SZeG_NF9j:{width:\"200px\"},T_l5t9WSO:{width:\"200px\"},t18rJl2Jr:{width:\"200px\"},va9Wz1ipE:{width:\"200px\"},xLPWxFr73:{width:\"200px\"},Y9CHgu_hG:{width:\"200px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1scv0fh-container\",layoutDependency:layoutDependency,layoutId:\"Dd2480APS-container\",children:/*#__PURE__*/_jsx(ButtonCopy9,{height:\"100%\",id:\"Dd2480APS\",layoutId:\"Dd2480APS\",style:{height:\"100%\",width:\"100%\"},uiGFTivQO:uiGFTivQOy7kc94,variant:\"pJrWvggtN\",width:\"100%\",yqWXNZ9IM:\"Becoming a WorkYogi\",...addPropertyOverrides({AyPmwpYoW:{uiGFTivQO:uiGFTivQO1423h6a,variant:\"SQFC7m5KS\"},jBDv_wCFC:{uiGFTivQO:uiGFTivQO1423h6a},l4LsQVDM_:{uiGFTivQO:uiGFTivQO10gy5cd,variant:\"SQFC7m5KS\"},mIgYJfQz3:{uiGFTivQO:uiGFTivQO1423h6a,variant:\"SQFC7m5KS\"},SZeG_NF9j:{uiGFTivQO:uiGFTivQO1423h6a,variant:\"SQFC7m5KS\"},T_l5t9WSO:{uiGFTivQO:uiGFTivQO10gy5cd,variant:\"SQFC7m5KS\"},t18rJl2Jr:{uiGFTivQO:uiGFTivQO10gy5cd},va9Wz1ipE:{uiGFTivQO:uiGFTivQO1423h6a,variant:\"SQFC7m5KS\"},xLPWxFr73:{uiGFTivQO:uiGFTivQO10gy5cd,variant:\"SQFC7m5KS\"},Y9CHgu_hG:{uiGFTivQO:uiGFTivQO10gy5cd,variant:\"SQFC7m5KS\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"184px\",...addPropertyOverrides({AyPmwpYoW:{width:\"100px\"},jBDv_wCFC:{width:\"100px\"},l4LsQVDM_:{width:\"100px\"},mIgYJfQz3:{width:\"100px\"},SZeG_NF9j:{width:\"100px\"},T_l5t9WSO:{width:\"100px\"},t18rJl2Jr:{width:\"100px\"},va9Wz1ipE:{width:\"100px\"},xLPWxFr73:{width:\"100px\"},Y9CHgu_hG:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ntc70h-container\",layoutDependency:layoutDependency,layoutId:\"C3gXfxwDS-container\",children:/*#__PURE__*/_jsx(ButtonCopy11,{height:\"100%\",id:\"C3gXfxwDS\",layoutId:\"C3gXfxwDS\",style:{height:\"100%\",width:\"100%\"},uiGFTivQO:uiGFTivQOv28gry,variant:\"UsJ1pr1_6\",width:\"100%\",yqWXNZ9IM:\"Earnings\",...addPropertyOverrides({AyPmwpYoW:{uiGFTivQO:uiGFTivQO1hgmzv5,variant:\"GTP5NLQNK\"},jBDv_wCFC:{uiGFTivQO:uiGFTivQO1hgmzv5,variant:\"GTP5NLQNK\"},l4LsQVDM_:{uiGFTivQO:uiGFTivQOhrm814,variant:\"GTP5NLQNK\"},mIgYJfQz3:{uiGFTivQO:uiGFTivQO1hgmzv5,variant:\"GTP5NLQNK\"},SZeG_NF9j:{uiGFTivQO:uiGFTivQO1hgmzv5,variant:\"GTP5NLQNK\"},T_l5t9WSO:{uiGFTivQO:uiGFTivQOhrm814,variant:\"GTP5NLQNK\"},t18rJl2Jr:{uiGFTivQO:uiGFTivQOhrm814,variant:\"GTP5NLQNK\"},va9Wz1ipE:{uiGFTivQO:uiGFTivQO1hgmzv5},xLPWxFr73:{uiGFTivQO:uiGFTivQOhrm814},Y9CHgu_hG:{uiGFTivQO:uiGFTivQOhrm814,variant:\"GTP5NLQNK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"184px\",...addPropertyOverrides({AyPmwpYoW:{width:\"100px\"},jBDv_wCFC:{width:\"100px\"},l4LsQVDM_:{width:\"100px\"},mIgYJfQz3:{width:\"100px\"},SZeG_NF9j:{width:\"100px\"},T_l5t9WSO:{width:\"100px\"},t18rJl2Jr:{width:\"100px\"},va9Wz1ipE:{width:\"100px\"},xLPWxFr73:{width:\"100px\"},Y9CHgu_hG:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pt2u64-container\",layoutDependency:layoutDependency,layoutId:\"zn4mWCBwf-container\",children:/*#__PURE__*/_jsx(ButtonCopy11,{height:\"100%\",id:\"zn4mWCBwf\",layoutId:\"zn4mWCBwf\",style:{height:\"100%\",width:\"100%\"},variant:\"UsJ1pr1_6\",width:\"100%\",yqWXNZ9IM:\"Sessions\",...addPropertyOverrides({AyPmwpYoW:{uiGFTivQO:uiGFTivQO7fjs35,variant:\"GTP5NLQNK\"},jBDv_wCFC:{uiGFTivQO:uiGFTivQO7fjs35,variant:\"GTP5NLQNK\"},l4LsQVDM_:{uiGFTivQO:uiGFTivQO1r1c7le,variant:\"GTP5NLQNK\"},mIgYJfQz3:{uiGFTivQO:uiGFTivQO7fjs35},SZeG_NF9j:{uiGFTivQO:uiGFTivQO7fjs35,variant:\"GTP5NLQNK\"},T_l5t9WSO:{uiGFTivQO:uiGFTivQO1r1c7le},t18rJl2Jr:{uiGFTivQO:uiGFTivQO1r1c7le,variant:\"GTP5NLQNK\"},va9Wz1ipE:{uiGFTivQO:uiGFTivQO7fjs35,variant:\"GTP5NLQNK\"},xLPWxFr73:{uiGFTivQO:uiGFTivQO1r1c7le,variant:\"GTP5NLQNK\"},Y9CHgu_hG:{uiGFTivQO:uiGFTivQO1r1c7le,variant:\"GTP5NLQNK\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({AyPmwpYoW:{width:\"150px\"},l4LsQVDM_:{width:\"150px\"},SZeG_NF9j:{width:\"150px\"},Y9CHgu_hG:{width:\"150px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lodzb6-container\",layoutDependency:layoutDependency,layoutId:\"nIaxnZ60a-container\",children:/*#__PURE__*/_jsx(ButtonCopy11,{height:\"100%\",id:\"nIaxnZ60a\",layoutId:\"nIaxnZ60a\",style:{height:\"100%\",width:\"100%\"},uiGFTivQO:uiGFTivQO1r1c7le,variant:\"UsJ1pr1_6\",width:\"100%\",yqWXNZ9IM:\"4th\",...addPropertyOverrides({AyPmwpYoW:{uiGFTivQO:uiGFTivQO101dzz9,variant:\"GTP5NLQNK\",yqWXNZ9IM:\"Platform Usage\"},l4LsQVDM_:{uiGFTivQO:uiGFTivQOqc3di4,yqWXNZ9IM:\"Platform Usage\"},SZeG_NF9j:{uiGFTivQO:uiGFTivQO101dzz9,yqWXNZ9IM:\"Platform Usage\"},Y9CHgu_hG:{uiGFTivQO:uiGFTivQOqc3di4,variant:\"GTP5NLQNK\",yqWXNZ9IM:\"Platform Usage\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({AyPmwpYoW:{width:\"100px\"},Y9CHgu_hG:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14xosum-container\",layoutDependency:layoutDependency,layoutId:\"wQeWFuRCe-container\",children:/*#__PURE__*/_jsx(ButtonCopy11,{height:\"100%\",id:\"wQeWFuRCe\",layoutId:\"wQeWFuRCe\",style:{height:\"100%\",width:\"100%\"},uiGFTivQO:uiGFTivQO1r1c7le,variant:\"UsJ1pr1_6\",width:\"100%\",yqWXNZ9IM:\"5th\",...addPropertyOverrides({AyPmwpYoW:{uiGFTivQO:uiGFTivQO10pknmy,yqWXNZ9IM:\"Support\"},Y9CHgu_hG:{uiGFTivQO:uiGFTivQOh9snlo,yqWXNZ9IM:\"Support\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"184px\",...addPropertyOverrides({jBDv_wCFC:{width:\"150px\"},mIgYJfQz3:{width:\"150px\"},T_l5t9WSO:{width:\"150px\"},t18rJl2Jr:{width:\"150px\"},va9Wz1ipE:{width:\"150px\"},xLPWxFr73:{width:\"150px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kndncs-container\",layoutDependency:layoutDependency,layoutId:\"NDJZDO8Zy-container\",children:/*#__PURE__*/_jsx(ButtonCopy11,{height:\"100%\",id:\"NDJZDO8Zy\",layoutId:\"NDJZDO8Zy\",style:{height:\"100%\",width:\"100%\"},variant:\"UsJ1pr1_6\",width:\"100%\",yqWXNZ9IM:\"Platform Usage\",...addPropertyOverrides({jBDv_wCFC:{uiGFTivQO:uiGFTivQO101dzz9,variant:\"GTP5NLQNK\"},mIgYJfQz3:{uiGFTivQO:uiGFTivQO101dzz9,variant:\"GTP5NLQNK\"},T_l5t9WSO:{uiGFTivQO:uiGFTivQOqc3di4,variant:\"GTP5NLQNK\"},t18rJl2Jr:{uiGFTivQO:uiGFTivQOqc3di4,variant:\"GTP5NLQNK\"},va9Wz1ipE:{uiGFTivQO:uiGFTivQO101dzz9,variant:\"GTP5NLQNK\"},xLPWxFr73:{uiGFTivQO:uiGFTivQOqc3di4,variant:\"GTP5NLQNK\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"184px\",...addPropertyOverrides({jBDv_wCFC:{width:\"100px\"},l4LsQVDM_:{width:\"100px\"},mIgYJfQz3:{width:\"100px\"},SZeG_NF9j:{width:\"100px\"},T_l5t9WSO:{width:\"100px\"},t18rJl2Jr:{width:\"100px\"},va9Wz1ipE:{width:\"100px\"},xLPWxFr73:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12uqir0-container\",layoutDependency:layoutDependency,layoutId:\"Cokl27J5f-container\",children:/*#__PURE__*/_jsx(ButtonCopy11,{height:\"100%\",id:\"Cokl27J5f\",layoutId:\"Cokl27J5f\",style:{height:\"100%\",width:\"100%\"},variant:\"UsJ1pr1_6\",width:\"100%\",yqWXNZ9IM:\"Support\",...addPropertyOverrides({jBDv_wCFC:{uiGFTivQO:uiGFTivQO10pknmy,variant:\"GTP5NLQNK\"},l4LsQVDM_:{uiGFTivQO:uiGFTivQOh9snlo,variant:\"GTP5NLQNK\"},mIgYJfQz3:{uiGFTivQO:uiGFTivQO10pknmy,variant:\"GTP5NLQNK\"},SZeG_NF9j:{uiGFTivQO:uiGFTivQO10pknmy,variant:\"GTP5NLQNK\"},T_l5t9WSO:{uiGFTivQO:uiGFTivQOh9snlo,variant:\"GTP5NLQNK\"},t18rJl2Jr:{uiGFTivQO:uiGFTivQOh9snlo,variant:\"GTP5NLQNK\"},va9Wz1ipE:{uiGFTivQO:uiGFTivQO10pknmy,variant:\"GTP5NLQNK\"},xLPWxFr73:{uiGFTivQO:uiGFTivQOh9snlo,variant:\"GTP5NLQNK\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lh9gt5\",\"data-framer-name\":\"FAQs\",layoutDependency:layoutDependency,layoutId:\"M8okcUHvS\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({AyPmwpYoW:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},jBDv_wCFC:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},l4LsQVDM_:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},mIgYJfQz3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},SZeG_NF9j:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},T_l5t9WSO:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},t18rJl2Jr:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},va9Wz1ipE:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},xLPWxFr73:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},Y9CHgu_hG:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16n5n5s-container\",layoutDependency:layoutDependency,layoutId:\"jinBJzNI7-container\",children:/*#__PURE__*/_jsx(FaqCopy4,{height:\"100%\",id:\"jinBJzNI7\",layoutId:\"jinBJzNI7\",style:{width:\"100%\"},T8rQFvSBR:\"Becoming a WorkYogi allows you to monetize your expertise by connecting with pre-screened, serious customers. You\u2019ll have control over your schedule, be paid for each session, and enjoy privacy protection and tailored connections.\",variant:\"ZUI07J4lW\",W88zB8mIG:\"Why should I become a WorkYogi?\",width:\"100%\",...addPropertyOverrides({AyPmwpYoW:{T8rQFvSBR:\"WorkYogi offers technical support to assist with any issues you might face during a session. \\nYou can contact support through the platform for immediate help.\",W88zB8mIG:\"What support is available if I face technical issues during a session?\"},BMVLkyoqs:{T8rQFvSBR:\"A workyogi typically earns INR 50 - 60K a month. Your earnings depend on the number of sessions you take and the pricing for your expertise.\\nWorkYogi\u2019s dynamic pricing ensures competitive rates, and professionals typically earn 20-30% more compared to other platforms.\",W88zB8mIG:\"How much can I earn as a WorkYogi?\"},ipvjcFhTx:{T8rQFvSBR:\"WorkYogi provides resources like follow-up templates, career planning guides, and webinars to offer ongoing value to your customers. This continuous support fosters trust and encourages customers to return for more sessions.\",W88zB8mIG:\"How does WorkYogi help me maintain relationships with customers after the session?\"},l4LsQVDM_:{T8rQFvSBR:\"WorkYogi uses an advanced algorithm to match you with customers based on your expertise, preferences, and availability, ensuring that every connection is relevant and valuable.\",W88zB8mIG:\"How does WorkYogi match me with customers?\"},mIgYJfQz3:{T8rQFvSBR:\"We recommend you to take 10 sessions or earn for 10 hours in a month.\\n\\nThe number of sessions you take is entirely up to you. You control your availability, and sessions are booked based on your schedule and preferences.\",W88zB8mIG:\"How many sessions will I have to take in a month?\"},SZeG_NF9j:{T8rQFvSBR:\"WorkYogi uses an advanced algorithm to match you with customers based on your expertise, preferences, and availability, ensuring that every connection is relevant and valuable.\",W88zB8mIG:\"How does WorkYogi match me with customers?\"},T_l5t9WSO:{T8rQFvSBR:\"We recommend you to take 10 sessions or earn for 10 hours in a month.\\n\\nThe number of sessions you take is entirely up to you. You control your availability, and sessions are booked based on your schedule and preferences.\",W88zB8mIG:\"How many sessions will I have to take in a month?\"},va9Wz1ipE:{T8rQFvSBR:\"A workyogi typically earns INR 50 - 60K a month. Your earnings depend on the number of sessions you take and the pricing for your expertise.\\nWorkYogi\u2019s dynamic pricing ensures competitive rates, and professionals typically earn 20-30% more compared to other platforms.\",W88zB8mIG:\"How much can I earn as a WorkYogi?s?\"},xLPWxFr73:{T8rQFvSBR:\"A workyogi typically earns INR 50 - 60K a month. Your earnings depend on the number of sessions you take and the pricing for your expertise.\\nWorkYogi\u2019s dynamic pricing ensures competitive rates, and professionals typically earn 20-30% more compared to other platforms.\",W88zB8mIG:\"How much can I earn as a WorkYogi?s?\"},Y9CHgu_hG:{T8rQFvSBR:\"WorkYogi offers technical support to assist with any issues you might face during a session. \\nYou can contact support through the platform for immediate help.\",W88zB8mIG:\"What support is available if I face technical issues during a session?\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cfxr2u\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"CWDhBYEbO\",style:{backgroundColor:\"var(--token-db1e4291-96a4-4b3c-ad49-fd9a051f7a5e, rgb(58, 26, 85))\",opacity:.1}}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({AyPmwpYoW:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},jBDv_wCFC:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},l4LsQVDM_:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},mIgYJfQz3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},SZeG_NF9j:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},T_l5t9WSO:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},t18rJl2Jr:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},va9Wz1ipE:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},xLPWxFr73:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},Y9CHgu_hG:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y2b9m-container\",layoutDependency:layoutDependency,layoutId:\"J8QEoqKQ_-container\",children:/*#__PURE__*/_jsx(FaqCopy4,{height:\"100%\",id:\"J8QEoqKQ_\",layoutId:\"J8QEoqKQ_\",style:{width:\"100%\"},T8rQFvSBR:\"Simply claim your profile or request a call back, where we\u2019ll guide you through profile creation, verification, and session setup.\",variant:\"ZUI07J4lW\",W88zB8mIG:\"How do I sign up as a WorkYogi?\",width:\"100%\",...addPropertyOverrides({AyPmwpYoW:{T8rQFvSBR:\"If a customer misses a session without prior notice, you will still be credited for the booking. However, if the session is rescheduled within the policy guidelines, it can be conducted at the new time.\",W88zB8mIG:\"What happens if a customer misses a session?\"},BMVLkyoqs:{T8rQFvSBR:\"Your payment is credited to your bank account within 24 hour after the session is completed. Your money is safe with us as we collect the payment by the customer before the session. \\n\\nThe payment escrow cycle is to safegaurd interests of both, you the WorkYogi and the booking customer.\",W88zB8mIG:\"When is the booking amount credited to my bank account?\"},l4LsQVDM_:{T8rQFvSBR:\"In most situations, you have to leverage your current skill set and position which limits the need of any preperation.\",W88zB8mIG:\"Do I need to prepare for a session?\"},mIgYJfQz3:{T8rQFvSBR:\"Yes, you have full control over your session limits. You can adjust your availability based on your preferences in the calendar settings.\\n\\nWe recommend taking 2-3 sessions per week.\",W88zB8mIG:\"Can I limit the number of sessions I take in a day or week?\"},SZeG_NF9j:{T8rQFvSBR:\"In most situations, you have to leverage your current skill set and position which limits the need of any preperation.\",W88zB8mIG:\"Do I need to prepare for a session?\"},T_l5t9WSO:{T8rQFvSBR:\"Yes, you have full control over your session limits. You can adjust your availability based on your preferences in the calendar settings.\\n\\nWe recommend taking 2-3 sessions per week.\",W88zB8mIG:\"Can I limit the number of sessions I take in a day or week?\"},va9Wz1ipE:{T8rQFvSBR:\"Your payment is credited to your bank account within 24 hour after the session is completed. Your money is safe with us as we collect the payment by the customer before the session. \\n\\nThe payment escrow cycle is to safegaurd interests of both, you the WorkYogi and the booking customer. \",W88zB8mIG:\"When is the booking amount credited to my bank account?\"},xLPWxFr73:{T8rQFvSBR:\"Your payment is credited to your bank account within 24 hour after the session is completed. Your money is safe with us as we collect the payment by the customer before the session. \\n\\nThe payment escrow cycle is to safegaurd interests of both, you the WorkYogi and the booking customer. \",W88zB8mIG:\"When is the booking amount credited to my bank account?\"},Y9CHgu_hG:{T8rQFvSBR:\"If a customer misses a session without prior notice, you will still be credited for the booking. However, if the session is rescheduled within the policy guidelines, it can be conducted at the new time.\",W88zB8mIG:\"What happens if a customer misses a session?\"}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13wwik5\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"JshSpeWDd\",style:{backgroundColor:\"var(--token-db1e4291-96a4-4b3c-ad49-fd9a051f7a5e, rgb(58, 26, 85))\",opacity:.1}}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({jBDv_wCFC:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},l4LsQVDM_:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},SZeG_NF9j:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},t18rJl2Jr:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-osaguk-container\",layoutDependency:layoutDependency,layoutId:\"e0uCzgTPf-container\",children:/*#__PURE__*/_jsx(FaqCopy4,{height:\"100%\",id:\"e0uCzgTPf\",layoutId:\"e0uCzgTPf\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, profile updates are possible. Once you confirm your profile, our team will get in touch with you to clarify the changes.\",variant:\"ZUI07J4lW\",W88zB8mIG:\"Is it possible to modify my profile?\",width:\"100%\",...addPropertyOverrides({l4LsQVDM_:{T8rQFvSBR:\"Yes, after each session, customers can leave feedback and ratings, which are visible on your profile. Positive reviews can help boost your visibility on the platform.\\n\\nWorkYogi reserves the right monitor and modererate any feedback and rating by the cusomer.\",W88zB8mIG:\"Can I see customer feedback and ratings?\"},SZeG_NF9j:{T8rQFvSBR:\"Yes, after each session, customers can leave feedback and ratings, which are visible on your profile. Positive reviews can help boost your visibility on the platform.\\n\\nWorkYogi reserves the right monitor and modererate any feedback and rating by the cusomer.\",W88zB8mIG:\"Can I see customer feedback and ratings?\"}},baseVariant,gestureVariant)})})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6j0p8g\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"IIu2g9lVP\",style:{backgroundColor:\"var(--token-db1e4291-96a4-4b3c-ad49-fd9a051f7a5e, rgb(58, 26, 85))\",opacity:.1}}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({l4LsQVDM_:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},mIgYJfQz3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},SZeG_NF9j:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},T_l5t9WSO:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k0xcz6-container\",layoutDependency:layoutDependency,layoutId:\"CByQ3mh3p-container\",children:/*#__PURE__*/_jsx(FaqCopy4,{height:\"100%\",id:\"CByQ3mh3p\",layoutId:\"CByQ3mh3p\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, both you and the customer can request to reschedule a session, as long as it\u2019s done within the platform\u2019s rescheduling policy timeframe of 1 day.\\n\\nIn unprecented situations where rescheduling is needed within a day, you should reach out to WorkYogi support.\",variant:\"ZUI07J4lW\",W88zB8mIG:\"Is it possible to reschedule the booked sessions?\",width:\"100%\",...addPropertyOverrides({l4LsQVDM_:{T8rQFvSBR:\"WorkYogi ensures full privacy protection by safeguarding your personal data and only sharing necessary information for session bookings. \\n\\nYou can control what details are visible to customers.\",W88zB8mIG:\"How do I protect my privacy on WorkYogi?\"},SZeG_NF9j:{T8rQFvSBR:\"WorkYogi ensures full privacy protection by safeguarding your personal data and only sharing necessary information for session bookings. \\n\\nYou can control what details are visible to customers.\",W88zB8mIG:\"How do I protect my privacy on WorkYogi?\"}},baseVariant,gestureVariant)})})}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gy6l5r\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"tj7sDddYi\",style:{backgroundColor:\"var(--token-db1e4291-96a4-4b3c-ad49-fd9a051f7a5e, rgb(58, 26, 85))\",opacity:.1}}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mIgYJfQz3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},T_l5t9WSO:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ci3kiq-container\",layoutDependency:layoutDependency,layoutId:\"Wj5NhAkmg-container\",children:/*#__PURE__*/_jsx(FaqCopy4,{height:\"100%\",id:\"Wj5NhAkmg\",layoutId:\"Wj5NhAkmg\",style:{width:\"100%\"},T8rQFvSBR:\"You can offer chat, voice, or video sessions based on your preferences. Each session type has a different duration and level of interaction, ensuring flexibility for both you and the customer.\",variant:\"ZUI07J4lW\",W88zB8mIG:\"What types of sessions can I offer?\",width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vmma36\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"hwH94zna5\",style:{backgroundColor:\"var(--token-db1e4291-96a4-4b3c-ad49-fd9a051f7a5e, rgb(58, 26, 85))\",opacity:.1}}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mIgYJfQz3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},T_l5t9WSO:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11gtynn-container\",layoutDependency:layoutDependency,layoutId:\"kFxDmRrye-container\",children:/*#__PURE__*/_jsx(FaqCopy4,{height:\"100%\",id:\"kFxDmRrye\",layoutId:\"kFxDmRrye\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, if you\u2019re unable to attend a session, you can cancel it within the platform. \\n\\nWe recommend doing so in advance to avoid disruptions for your customer and maintaining a positive reputation on the platform.\",variant:\"ZUI07J4lW\",W88zB8mIG:\"Can I cancel a session if I\u2019m unable to attend?\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f9UD8.framer-18nbskb, .framer-f9UD8 .framer-18nbskb { display: block; }\",\".framer-f9UD8.framer-h3xj73 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-f9UD8 .framer-wep3sq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: auto; padding: 16px; position: relative; width: min-content; }\",\".framer-f9UD8 .framer-1scv0fh-container, .framer-f9UD8 .framer-ntc70h-container, .framer-f9UD8 .framer-pt2u64-container, .framer-f9UD8 .framer-kndncs-container, .framer-f9UD8 .framer-12uqir0-container { flex: none; height: 36px; position: relative; width: 184px; }\",\".framer-f9UD8 .framer-lodzb6-container, .framer-f9UD8 .framer-14xosum-container { flex: none; height: 44px; position: relative; width: 120px; }\",\".framer-f9UD8 .framer-lh9gt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-f9UD8 .framer-16n5n5s-container, .framer-f9UD8 .framer-y2b9m-container, .framer-f9UD8 .framer-osaguk-container, .framer-f9UD8 .framer-k0xcz6-container, .framer-f9UD8 .framer-1ci3kiq-container, .framer-f9UD8 .framer-11gtynn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-f9UD8 .framer-1cfxr2u, .framer-f9UD8 .framer-13wwik5, .framer-f9UD8 .framer-6j0p8g, .framer-f9UD8 .framer-1gy6l5r, .framer-f9UD8 .framer-vmma36 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-h3xj73, .framer-f9UD8 .framer-wep3sq, .framer-f9UD8 .framer-lh9gt5 { gap: 0px; } .framer-f9UD8.framer-h3xj73 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-f9UD8.framer-h3xj73 > :first-child { margin-left: 0px; } .framer-f9UD8.framer-h3xj73 > :last-child { margin-right: 0px; } .framer-f9UD8 .framer-wep3sq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-f9UD8 .framer-wep3sq > :first-child, .framer-f9UD8 .framer-lh9gt5 > :first-child { margin-top: 0px; } .framer-f9UD8 .framer-wep3sq > :last-child, .framer-f9UD8 .framer-lh9gt5 > :last-child { margin-bottom: 0px; } .framer-f9UD8 .framer-lh9gt5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-f9UD8.framer-v-7zqknk.framer-h3xj73, .framer-f9UD8.framer-v-asp40d.framer-h3xj73 { align-content: center; align-items: center; flex-direction: column; gap: 20px; justify-content: center; overflow: visible; width: 1210px; }\",\".framer-f9UD8.framer-v-7zqknk .framer-wep3sq { align-content: center; align-items: center; flex-direction: row; justify-content: center; order: 0; padding: 0px 20px 20px 20px; width: 100%; }\",\".framer-f9UD8.framer-v-7zqknk .framer-1scv0fh-container, .framer-f9UD8.framer-v-jjzgvc .framer-1scv0fh-container, .framer-f9UD8.framer-v-jgdu1h .framer-1scv0fh-container, .framer-f9UD8.framer-v-1ataojo .framer-1scv0fh-container, .framer-f9UD8.framer-v-51yuz4 .framer-1scv0fh-container, .framer-f9UD8.framer-v-asp40d .framer-1scv0fh-container, .framer-f9UD8.framer-v-1q200tk .framer-1scv0fh-container, .framer-f9UD8.framer-v-u968kg .framer-1scv0fh-container, .framer-f9UD8.framer-v-15jld4v .framer-1scv0fh-container, .framer-f9UD8.framer-v-1sxc0uz .framer-1scv0fh-container { width: 200px; }\",\".framer-f9UD8.framer-v-7zqknk .framer-ntc70h-container, .framer-f9UD8.framer-v-7zqknk .framer-pt2u64-container, .framer-f9UD8.framer-v-7zqknk .framer-12uqir0-container, .framer-f9UD8.framer-v-jjzgvc .framer-ntc70h-container, .framer-f9UD8.framer-v-jjzgvc .framer-pt2u64-container, .framer-f9UD8.framer-v-jjzgvc .framer-12uqir0-container, .framer-f9UD8.framer-v-jgdu1h .framer-ntc70h-container, .framer-f9UD8.framer-v-jgdu1h .framer-pt2u64-container, .framer-f9UD8.framer-v-jgdu1h .framer-12uqir0-container, .framer-f9UD8.framer-v-1ataojo .framer-ntc70h-container, .framer-f9UD8.framer-v-1ataojo .framer-pt2u64-container, .framer-f9UD8.framer-v-1ataojo .framer-12uqir0-container, .framer-f9UD8.framer-v-51yuz4 .framer-ntc70h-container, .framer-f9UD8.framer-v-51yuz4 .framer-pt2u64-container, .framer-f9UD8.framer-v-asp40d .framer-ntc70h-container, .framer-f9UD8.framer-v-asp40d .framer-pt2u64-container, .framer-f9UD8.framer-v-asp40d .framer-12uqir0-container, .framer-f9UD8.framer-v-1q200tk .framer-ntc70h-container, .framer-f9UD8.framer-v-1q200tk .framer-pt2u64-container, .framer-f9UD8.framer-v-1q200tk .framer-12uqir0-container, .framer-f9UD8.framer-v-u968kg .framer-ntc70h-container, .framer-f9UD8.framer-v-u968kg .framer-pt2u64-container, .framer-f9UD8.framer-v-u968kg .framer-12uqir0-container, .framer-f9UD8.framer-v-15jld4v .framer-ntc70h-container, .framer-f9UD8.framer-v-15jld4v .framer-pt2u64-container, .framer-f9UD8.framer-v-15jld4v .framer-12uqir0-container, .framer-f9UD8.framer-v-1sxc0uz .framer-ntc70h-container, .framer-f9UD8.framer-v-1sxc0uz .framer-pt2u64-container { width: 100px; }\",\".framer-f9UD8.framer-v-7zqknk .framer-kndncs-container, .framer-f9UD8.framer-v-jjzgvc .framer-kndncs-container, .framer-f9UD8.framer-v-jgdu1h .framer-kndncs-container, .framer-f9UD8.framer-v-asp40d .framer-kndncs-container, .framer-f9UD8.framer-v-1q200tk .framer-kndncs-container, .framer-f9UD8.framer-v-u968kg .framer-kndncs-container { width: 150px; }\",\".framer-f9UD8.framer-v-7zqknk .framer-lh9gt5, .framer-f9UD8.framer-v-asp40d .framer-lh9gt5 { flex: none; order: 1; padding: 0px 20px 0px 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-7zqknk.framer-h3xj73, .framer-f9UD8.framer-v-7zqknk .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-7zqknk.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-7zqknk.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-7zqknk.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-7zqknk .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-7zqknk .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-7zqknk .framer-wep3sq > :last-child { margin-right: 0px; } }\",\".framer-f9UD8.framer-v-jjzgvc.framer-h3xj73, .framer-f9UD8.framer-v-1q200tk.framer-h3xj73 { flex-direction: column; gap: 20px; width: 1217px; }\",\".framer-f9UD8.framer-v-jjzgvc .framer-wep3sq, .framer-f9UD8.framer-v-jgdu1h .framer-wep3sq, .framer-f9UD8.framer-v-1ataojo .framer-wep3sq, .framer-f9UD8.framer-v-51yuz4 .framer-wep3sq { flex-direction: row; justify-content: center; padding: 0px 20px 20px 20px; width: 100%; }\",\".framer-f9UD8.framer-v-jjzgvc .framer-lh9gt5, .framer-f9UD8.framer-v-jgdu1h .framer-lh9gt5, .framer-f9UD8.framer-v-1ataojo .framer-lh9gt5, .framer-f9UD8.framer-v-51yuz4 .framer-lh9gt5, .framer-f9UD8.framer-v-1q200tk .framer-lh9gt5, .framer-f9UD8.framer-v-u968kg .framer-lh9gt5, .framer-f9UD8.framer-v-15jld4v .framer-lh9gt5, .framer-f9UD8.framer-v-1sxc0uz .framer-lh9gt5 { flex: none; padding: 0px 20px 0px 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-jjzgvc.framer-h3xj73, .framer-f9UD8.framer-v-jjzgvc .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-jjzgvc.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-jjzgvc.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-jjzgvc.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-jjzgvc .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-jjzgvc .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-jjzgvc .framer-wep3sq > :last-child { margin-right: 0px; } }\",\".framer-f9UD8.framer-v-jgdu1h.framer-h3xj73, .framer-f9UD8.framer-v-u968kg.framer-h3xj73 { flex-direction: column; gap: 20px; width: 1210px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-jgdu1h.framer-h3xj73, .framer-f9UD8.framer-v-jgdu1h .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-jgdu1h.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-jgdu1h.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-jgdu1h.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-jgdu1h .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-jgdu1h .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-jgdu1h .framer-wep3sq > :last-child { margin-right: 0px; } }\",\".framer-f9UD8.framer-v-1ataojo.framer-h3xj73, .framer-f9UD8.framer-v-15jld4v.framer-h3xj73 { flex-direction: column; gap: 20px; width: 1159px; }\",\".framer-f9UD8.framer-v-1ataojo .framer-lodzb6-container, .framer-f9UD8.framer-v-51yuz4 .framer-lodzb6-container, .framer-f9UD8.framer-v-15jld4v .framer-lodzb6-container, .framer-f9UD8.framer-v-1sxc0uz .framer-lodzb6-container { height: 36px; width: 150px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-1ataojo.framer-h3xj73, .framer-f9UD8.framer-v-1ataojo .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-1ataojo.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-1ataojo.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-1ataojo.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-1ataojo .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-1ataojo .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-1ataojo .framer-wep3sq > :last-child { margin-right: 0px; } }\",\".framer-f9UD8.framer-v-51yuz4.framer-h3xj73, .framer-f9UD8.framer-v-1sxc0uz.framer-h3xj73 { flex-direction: column; gap: 20px; width: 1145px; }\",\".framer-f9UD8.framer-v-51yuz4 .framer-14xosum-container, .framer-f9UD8.framer-v-1sxc0uz .framer-14xosum-container { height: 36px; width: 100px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-51yuz4.framer-h3xj73, .framer-f9UD8.framer-v-51yuz4 .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-51yuz4.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-51yuz4.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-51yuz4.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-51yuz4 .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-51yuz4 .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-51yuz4 .framer-wep3sq > :last-child { margin-right: 0px; } }\",\".framer-f9UD8.framer-v-asp40d .framer-wep3sq { align-content: center; align-items: center; flex-direction: row; order: 0; padding: 0px 20px 20px 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-asp40d.framer-h3xj73, .framer-f9UD8.framer-v-asp40d .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-asp40d.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-asp40d.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-asp40d.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-asp40d .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-asp40d .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-asp40d .framer-wep3sq > :last-child { margin-right: 0px; } }\",\".framer-f9UD8.framer-v-1q200tk .framer-wep3sq, .framer-f9UD8.framer-v-u968kg .framer-wep3sq, .framer-f9UD8.framer-v-15jld4v .framer-wep3sq, .framer-f9UD8.framer-v-1sxc0uz .framer-wep3sq { flex-direction: row; padding: 0px 20px 20px 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-1q200tk.framer-h3xj73, .framer-f9UD8.framer-v-1q200tk .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-1q200tk.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-1q200tk.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-1q200tk.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-1q200tk .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-1q200tk .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-1q200tk .framer-wep3sq > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-u968kg.framer-h3xj73, .framer-f9UD8.framer-v-u968kg .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-u968kg.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-u968kg.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-u968kg.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-u968kg .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-u968kg .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-u968kg .framer-wep3sq > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-15jld4v.framer-h3xj73, .framer-f9UD8.framer-v-15jld4v .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-15jld4v.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-15jld4v.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-15jld4v.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-15jld4v .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-15jld4v .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-15jld4v .framer-wep3sq > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f9UD8.framer-v-1sxc0uz.framer-h3xj73, .framer-f9UD8.framer-v-1sxc0uz .framer-wep3sq { gap: 0px; } .framer-f9UD8.framer-v-1sxc0uz.framer-h3xj73 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-f9UD8.framer-v-1sxc0uz.framer-h3xj73 > :first-child { margin-top: 0px; } .framer-f9UD8.framer-v-1sxc0uz.framer-h3xj73 > :last-child { margin-bottom: 0px; } .framer-f9UD8.framer-v-1sxc0uz .framer-wep3sq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9UD8.framer-v-1sxc0uz .framer-wep3sq > :first-child { margin-left: 0px; } .framer-f9UD8.framer-v-1sxc0uz .framer-wep3sq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BMVLkyoqs\":{\"layout\":[\"fixed\",\"auto\"]},\"t18rJl2Jr\":{\"layout\":[\"fixed\",\"auto\"]},\"xLPWxFr73\":{\"layout\":[\"fixed\",\"auto\"]},\"T_l5t9WSO\":{\"layout\":[\"fixed\",\"auto\"]},\"l4LsQVDM_\":{\"layout\":[\"fixed\",\"auto\"]},\"Y9CHgu_hG\":{\"layout\":[\"fixed\",\"auto\"]},\"ipvjcFhTx\":{\"layout\":[\"fixed\",\"auto\"]},\"jBDv_wCFC\":{\"layout\":[\"fixed\",\"auto\"]},\"va9Wz1ipE\":{\"layout\":[\"fixed\",\"auto\"]},\"mIgYJfQz3\":{\"layout\":[\"fixed\",\"auto\"]},\"SZeG_NF9j\":{\"layout\":[\"fixed\",\"auto\"]},\"AyPmwpYoW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRXHxwWH3A=withCSS(Component,css,\"framer-f9UD8\");export default FramerRXHxwWH3A;FramerRXHxwWH3A.displayName=\"Accordion Copy 7\";FramerRXHxwWH3A.defaultProps={height:276,width:1e3};addPropertyControls(FramerRXHxwWH3A,{variant:{options:[\"EgtYA6e_I\",\"BMVLkyoqs\",\"t18rJl2Jr\",\"xLPWxFr73\",\"T_l5t9WSO\",\"l4LsQVDM_\",\"Y9CHgu_hG\",\"ipvjcFhTx\",\"jBDv_wCFC\",\"va9Wz1ipE\",\"mIgYJfQz3\",\"SZeG_NF9j\",\"AyPmwpYoW\"],optionTitles:[\"Becoming a WorkYogi\",\"Earnings\",\"FAQ_Desktop\",\"Earnings D\",\"Sessions D\",\"Platform Usage D\",\"Support D\",\"Post-Session resources\",\"FAQ_M\",\"Earnings M\",\"Session M\",\"Platform M\",\"Support M\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRXHxwWH3A,[{explicitInter:true,fonts:[]},...ButtonCopy9Fonts,...ButtonCopy11Fonts,...FaqCopy4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRXHxwWH3A\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"276\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BMVLkyoqs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t18rJl2Jr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xLPWxFr73\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T_l5t9WSO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l4LsQVDM_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y9CHgu_hG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ipvjcFhTx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jBDv_wCFC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"va9Wz1ipE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mIgYJfQz3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SZeG_NF9j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AyPmwpYoW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RXHxwWH3A.map", "// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import RowCopy4 from\"https://framerusercontent.com/modules/MrIzJfLHpQ5KwyBaGWvG/cj4ZBkMaokt5uDEMfFZr/XqCwTtsCj.js\";const RowCopy4Fonts=getFonts(RowCopy4);const serializationHash=\"framer-oHPVX\";const variantClassNames={CMgG5BA4t:\"framer-v-vtotko\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"CMgG5BA4t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vtotko\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CMgG5BA4t\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(228, 239, 249)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ulw37-container\",layoutDependency:layoutDependency,layoutId:\"RJOw_JxPX-container\",children:/*#__PURE__*/_jsx(RowCopy4,{height:\"100%\",id:\"RJOw_JxPX\",layoutId:\"RJOw_JxPX\",style:{width:\"100%\"},T8rQFvSBR:\"Customers will use this session to bypass cold emails and LinkedIn messages, giving them direct time to present their product or service to you and explore business opportunities.\",variant:\"Q4ffjLI0h\",W88zB8mIG:\"Pitching you their services\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uq092t\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"eaA2r3zPW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+89,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-70o8gp-container\",layoutDependency:layoutDependency,layoutId:\"yRiFDdsYK-container\",children:/*#__PURE__*/_jsx(RowCopy4,{height:\"100%\",id:\"yRiFDdsYK\",layoutId:\"yRiFDdsYK\",style:{width:\"100%\"},T8rQFvSBR:\"Customers will book this session to connect with you for a one-on-one conversation about potential collaboration or other topics to explore working together.\",variant:\"Q4ffjLI0h\",W88zB8mIG:\"Directly Connecting with you\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6mwbas\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Rwic0d1JR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+178,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ygtwxt-container\",layoutDependency:layoutDependency,layoutId:\"OAq71RiLz-container\",children:/*#__PURE__*/_jsx(RowCopy4,{height:\"100%\",id:\"OAq71RiLz\",layoutId:\"OAq71RiLz\",style:{width:\"100%\"},T8rQFvSBR:\"In this session, customers will tap into your network to find relevant people who can help with their goals. You\u2019ll help them make introductions or find key contacts.\",variant:\"Q4ffjLI0h\",W88zB8mIG:\"Requesting a Network Referral\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oHPVX.framer-1o8dhi0, .framer-oHPVX .framer-1o8dhi0 { display: block; }\",\".framer-oHPVX.framer-vtotko { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oHPVX .framer-17ulw37-container, .framer-oHPVX .framer-70o8gp-container, .framer-oHPVX .framer-ygtwxt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oHPVX .framer-1uq092t, .framer-oHPVX .framer-6mwbas { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oHPVX.framer-vtotko { gap: 0px; } .framer-oHPVX.framer-vtotko > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oHPVX.framer-vtotko > :first-child { margin-top: 0px; } .framer-oHPVX.framer-vtotko > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerT8gKafQtp=withCSS(Component,css,\"framer-oHPVX\");export default FramerT8gKafQtp;FramerT8gKafQtp.displayName=\"Accordion Copy 10\";FramerT8gKafQtp.defaultProps={height:194,width:1e3};addFonts(FramerT8gKafQtp,[{explicitInter:true,fonts:[]},...RowCopy4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerT8gKafQtp\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"194\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./T8gKafQtp.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-ZHBo9 .framer-styles-preset-fsrzda:not(.rich-text-wrapper), .framer-ZHBo9 .framer-styles-preset-fsrzda.rich-text-wrapper a { --framer-link-text-color: #111111; --framer-link-text-decoration: none; --framer-link-hover-text-color: #444; --framer-link-hover-text-decoration: none; }\"];export const className=\"framer-ZHBo9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SrcType", "baseUrl", "getLogoUrl", "company", "Logo", "props", "radius", "isSearch", "srcType", "srcUrl", "srcFile", "style", "logoURL", "se", "emptyState", "RenderTarget", "p", "NullState", "baseStyles", "addPropertyControls", "ControlType", "useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "style", "className", "layoutId", "width", "height", "outerVariant", "VurELiPqN", "Z2NuoQS1k", "tc_6nmlts", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "p", "LayoutGroup", "motion", "cx", "Stack", "Image2", "css", "FramerdkRfXNUhM", "withCSS", "dkRfXNUhM_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapurhdxk", "args", "onTapbox2tw", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerXqCwTtsCj", "withCSS", "XqCwTtsCj_default", "addPropertyControls", "ControlType", "addFonts", "RowCopy4Fonts", "getFonts", "XqCwTtsCj_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "XqCwTtsCj_default", "css", "FramerlpQaxlqHL", "withCSS", "lpQaxlqHL_default", "addFonts", "RowCopy4Fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1nz0rj6", "args", "onTapq1a0yl", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerG70DX0xoo", "withCSS", "G70DX0xoo_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "U5nJzbX0I", "yqWXNZ9IM", "uiGFTivQO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap7v8xrj", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "Framerily1LfPy4", "withCSS", "ily1LfPy4_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "U5nJzbX0I", "yqWXNZ9IM", "uiGFTivQO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap7v8xrj", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerRP5BZETCJ", "withCSS", "RP5BZETCJ_default", "addPropertyControls", "ControlType", "addFonts", "ButtonCopy9Fonts", "getFonts", "ily1LfPy4_default", "ButtonCopy11Fonts", "RP5BZETCJ_default", "FaqCopy4Fonts", "G70DX0xoo_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "uiGFTivQOy7kc94", "args", "uiGFTivQO10gy5cd", "uiGFTivQO1423h6a", "uiGFTivQOv28gry", "uiGFTivQOhrm814", "uiGFTivQO1hgmzv5", "uiGFTivQO1r1c7le", "uiGFTivQO7fjs35", "uiGFTivQOqc3di4", "uiGFTivQO101dzz9", "uiGFTivQOh9snlo", "uiGFTivQO10pknmy", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerRXHxwWH3A", "withCSS", "RXHxwWH3A_default", "addPropertyControls", "ControlType", "addFonts", "RowCopy4Fonts", "getFonts", "XqCwTtsCj_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "XqCwTtsCj_default", "css", "FramerT8gKafQtp", "withCSS", "T8gKafQtp_default", "addFonts", "RowCopy4Fonts", "fontStore", "fonts", "css", "className"]
}
