{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/react-use-intercom.js@0.0.3", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framer.com/m/framer/integrations-styles.js@^0.2.0", "ssg:https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js", "ssg:https://framerusercontent.com/modules/YIPs2t1OFQqKGnOdIosL/mmIlbJ2FHAS9Dcb8Y0RT/LjihXTBDJ.js", "ssg:https://framerusercontent.com/modules/npRxojSIF1yI0JZFJo4o/Gkj7p0NclgzMWTg1cyMP/tjfhZDqG1.js", "ssg:https://framerusercontent.com/modules/9QobOFGV8mdMqxZPSMLb/semrLmWqPNPfokmomaZM/augiA20Il.js"],
  "sourcesContent": ["import { createContext, useRef, useCallback, useMemo, createElement, useContext } from 'react';\n\nfunction _extends() {\n  _extends = Object.assign || function (target) {\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n\n      for (var key in source) {\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\n          target[key] = source[key];\n        }\n      }\n    }\n\n    return target;\n  };\n\n  return _extends.apply(this, arguments);\n}\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n  if (source == null) return {};\n  var target = {};\n  var sourceKeys = Object.keys(source);\n  var key, i;\n\n  for (i = 0; i < sourceKeys.length; i++) {\n    key = sourceKeys[i];\n    if (excluded.indexOf(key) >= 0) continue;\n    target[key] = source[key];\n  }\n\n  return target;\n}\n\n/**\r\n * Logs messages in the console with a corresponding urgency\r\n *\r\n * @param level the urgency of the message\r\n * @param message the message to log in the console\r\n */\nvar log = function log(level, message) {\n  if (process.env.NODE_ENV !== \"production\") {\n    var packageName = '[react-use-intercom]';\n\n    switch (level) {\n      case 'info':\n        console.log(packageName + \" \" + message);\n        break;\n\n      case 'warn':\n        console.warn(packageName + \" \" + message);\n        break;\n\n      case 'error':\n        console.error(packageName + \" \" + message);\n        break;\n\n      default:\n        console.log(packageName + \" \" + message);\n    }\n  }\n};\n\nvar isEmptyObject = function isEmptyObject(obj) {\n  return Object.keys(obj).length === 0 && obj.constructor === Object;\n};\nvar isSSR = typeof window === 'undefined';\n/**\r\n * Removes object entries where the value equals to `undefined`\r\n *\r\n * @param obj\r\n */\n\nvar removeUndefined = function removeUndefined(obj) {\n  Object.keys(obj).forEach(function (key) {\n    if (obj[key] && typeof obj[key] === 'object') removeUndefined(obj[key]);else if (obj[key] === undefined) delete obj[key];\n  });\n  return obj;\n};\n\n/**\r\n * Safely exposes `window.Intercom` and passes the arguments to the instance\r\n *\r\n * @param method method passed to the `window.Intercom` instance\r\n * @param args arguments passed to the `window.Intercom` instance\r\n *\r\n * @see {@link https://developers.intercom.com/installing-intercom/docs/intercom-javascript}\r\n */\n\nvar IntercomAPI = function IntercomAPI(method) {\n  if (!isSSR && window.Intercom) {\n    for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n      args[_key - 1] = arguments[_key];\n    }\n\n    return window.Intercom.apply(null, [method].concat(args));\n  } else {\n    log('error', method + \" Intercom instance is not initalized yet\");\n  }\n};\n\nvar NO_INTERCOM_PROVIDER_MESSAGE = 'Please wrap your component with `IntercomProvider`.';\nvar IntercomContext = /*#__PURE__*/createContext({\n  boot: function boot() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  shutdown: function shutdown() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  hardShutdown: function hardShutdown() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  update: function update() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  hide: function hide() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  show: function show() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  showMessages: function showMessages() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  showNewMessages: function showNewMessages() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  getVisitorId: function getVisitorId() {\n    log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n    return '';\n  },\n  startTour: function startTour() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  trackEvent: function trackEvent() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  }\n});\n\n// @ts-nocheck\n\n/**\r\n * Snippet to initialize the Intercom instance\r\n *\r\n * @param appId - Intercom app id\r\n * @param [timeout=0] - Amount of milliseconds that the initialization should be delayed, defaults to 0\r\n *\r\n * @see {@link https://developers.intercom.com/installing-intercom/docs/basic-javascript}\r\n */\nvar initialize = function initialize(appId, timeout) {\n  if (timeout === void 0) {\n    timeout = 0;\n  }\n\n  var w = window;\n  var ic = w.Intercom;\n\n  if (typeof ic === 'function') {\n    ic('reattach_activator');\n    ic('update', w.intercomSettings);\n  } else {\n    var d = document;\n\n    var i = function i() {\n      i.c(arguments);\n    };\n\n    i.q = [];\n\n    i.c = function (args) {\n      i.q.push(args);\n    };\n\n    w.Intercom = i;\n\n    var l = function l() {\n      setTimeout(function () {\n        var s = d.createElement('script');\n        s.type = 'text/javascript';\n        s.async = true;\n        s.src = 'https://widget.intercom.io/widget/' + appId;\n        var x = d.getElementsByTagName('script')[0];\n        x.parentNode.insertBefore(s, x);\n      }, timeout);\n    };\n\n    if (document.readyState === 'complete') {\n      l();\n    } else if (w.attachEvent) {\n      w.attachEvent('onload', l);\n    } else {\n      w.addEventListener('load', l, false);\n    }\n  }\n};\n\nvar mapMessengerAttributesToRawMessengerAttributes = function mapMessengerAttributesToRawMessengerAttributes(attributes) {\n  return {\n    custom_launcher_selector: attributes.customLauncherSelector,\n    alignment: attributes.alignment,\n    vertical_padding: attributes.verticalPadding,\n    horizontal_padding: attributes.horizontalPadding,\n    hide_default_launcher: attributes.hideDefaultLauncher,\n    session_duration: attributes.sessionDuration,\n    action_color: attributes.actionColor,\n    background_color: attributes.backgroundColor\n  };\n};\n\nvar mapDataAttributesCompanyToRawDataAttributesCompany = function mapDataAttributesCompanyToRawDataAttributesCompany(attributes) {\n  return _extends({\n    company_id: attributes.companyId,\n    name: attributes.name,\n    created_at: attributes.createdAt,\n    plan: attributes.plan,\n    monthly_spend: attributes.monthlySpend,\n    user_count: attributes.userCount,\n    size: attributes.size,\n    website: attributes.website,\n    industry: attributes.industry\n  }, attributes.customAttributes);\n};\n\nvar mapDataAttributesAvatarToRawDataAttributesAvatar = function mapDataAttributesAvatarToRawDataAttributesAvatar(attributes) {\n  return {\n    type: attributes.type,\n    image_url: attributes.imageUrl\n  };\n};\n\nvar mapDataAttributesToRawDataAttributes = function mapDataAttributesToRawDataAttributes(attributes) {\n  var _attributes$companies;\n\n  return _extends({\n    email: attributes.email,\n    user_id: attributes.userId,\n    created_at: attributes.createdAt,\n    name: attributes.name,\n    phone: attributes.phone,\n    last_request_at: attributes.lastRequestAt,\n    unsubscribed_from_emails: attributes.unsubscribedFromEmails,\n    language_override: attributes.languageOverride,\n    utm_campaign: attributes.utmCampaign,\n    utm_content: attributes.utmContent,\n    utm_medium: attributes.utmMedium,\n    utm_source: attributes.utmSource,\n    utm_term: attributes.utmTerm,\n    avatar: attributes.avatar && mapDataAttributesAvatarToRawDataAttributesAvatar(attributes.avatar),\n    user_hash: attributes.userHash,\n    company: attributes.company && mapDataAttributesCompanyToRawDataAttributesCompany(attributes.company),\n    companies: (_attributes$companies = attributes.companies) == null ? void 0 : _attributes$companies.map(mapDataAttributesCompanyToRawDataAttributesCompany)\n  }, attributes.customAttributes);\n};\nvar mapIntercomPropsToRawIntercomProps = function mapIntercomPropsToRawIntercomProps(props) {\n  return removeUndefined(_extends({}, mapMessengerAttributesToRawMessengerAttributes(props), mapDataAttributesToRawDataAttributes(props)));\n};\n\nvar IntercomProvider = function IntercomProvider(_ref) {\n  var appId = _ref.appId,\n      _ref$autoBoot = _ref.autoBoot,\n      autoBoot = _ref$autoBoot === void 0 ? false : _ref$autoBoot,\n      autoBootProps = _ref.autoBootProps,\n      children = _ref.children,\n      onHide = _ref.onHide,\n      onShow = _ref.onShow,\n      onUnreadCountChange = _ref.onUnreadCountChange,\n      _ref$shouldInitialize = _ref.shouldInitialize,\n      shouldInitialize = _ref$shouldInitialize === void 0 ? !isSSR : _ref$shouldInitialize,\n      apiBase = _ref.apiBase,\n      initializeDelay = _ref.initializeDelay,\n      rest = _objectWithoutPropertiesLoose(_ref, [\"appId\", \"autoBoot\", \"autoBootProps\", \"children\", \"onHide\", \"onShow\", \"onUnreadCountChange\", \"shouldInitialize\", \"apiBase\", \"initializeDelay\"]);\n\n  var isBooted = useRef(false);\n  var isInitialized = useRef(false);\n  if (!isEmptyObject(rest) && process.env.NODE_ENV !== \"production\") log('error', ['some invalid props were passed to IntercomProvider. ', \"Please check following props: \" + Object.keys(rest).join(', ') + \".\"].join(''));\n  var boot = useCallback(function (props) {\n    if (!window.Intercom && !shouldInitialize) {\n      log('warn', 'Intercom instance is not initialized because `shouldInitialize` is set to `false` in `IntercomProvider`');\n      return;\n    }\n\n    if (isBooted.current) {\n      return;\n    }\n\n    var metaData = _extends({\n      app_id: appId\n    }, apiBase && {\n      api_base: apiBase\n    }, props && mapIntercomPropsToRawIntercomProps(props));\n\n    window.intercomSettings = metaData;\n    IntercomAPI('boot', metaData);\n    isBooted.current = true;\n  }, [apiBase, appId, shouldInitialize]);\n\n  if (!isSSR && shouldInitialize && !isInitialized.current) {\n    initialize(appId, initializeDelay); // attach listeners\n\n    if (onHide) IntercomAPI('onHide', onHide);\n    if (onShow) IntercomAPI('onShow', onShow);\n    if (onUnreadCountChange) IntercomAPI('onUnreadCountChange', onUnreadCountChange);\n\n    if (autoBoot) {\n      boot(autoBootProps);\n    }\n\n    isInitialized.current = true;\n  }\n\n  var ensureIntercom = useCallback(function (functionName, callback) {\n    if (functionName === void 0) {\n      functionName = 'A function';\n    }\n\n    if (!window.Intercom && !shouldInitialize) {\n      log('warn', 'Intercom instance is not initialized because `shouldInitialize` is set to `false` in `IntercomProvider`');\n      return;\n    }\n\n    if (!isBooted.current) {\n      log('warn', [\"'\" + functionName + \"' was called but Intercom has not booted yet. \", \"Please call 'boot' before calling '\" + functionName + \"' or \", \"set 'autoBoot' to true in the IntercomProvider.\"].join(''));\n      return;\n    }\n\n    return callback();\n  }, [shouldInitialize]);\n  var shutdown = useCallback(function () {\n    if (!isBooted.current) return;\n    IntercomAPI('shutdown');\n    isBooted.current = false;\n  }, []);\n  var hardShutdown = useCallback(function () {\n    if (!isBooted.current) return;\n    IntercomAPI('shutdown');\n    delete window.Intercom;\n    delete window.intercomSettings;\n    isBooted.current = false;\n  }, []);\n  var refresh = useCallback(function () {\n    ensureIntercom('update', function () {\n      var lastRequestedAt = new Date().getTime();\n      IntercomAPI('update', {\n        last_requested_at: lastRequestedAt\n      });\n    });\n  }, [ensureIntercom]);\n  var update = useCallback(function (props) {\n    ensureIntercom('update', function () {\n      if (!props) {\n        refresh();\n        return;\n      }\n\n      var rawProps = mapIntercomPropsToRawIntercomProps(props);\n      window.intercomSettings = _extends({}, window.intercomSettings, rawProps);\n      IntercomAPI('update', rawProps);\n    });\n  }, [ensureIntercom, refresh]);\n  var hide = useCallback(function () {\n    ensureIntercom('hide', function () {\n      IntercomAPI('hide');\n    });\n  }, [ensureIntercom]);\n  var show = useCallback(function () {\n    ensureIntercom('show', function () {\n      return IntercomAPI('show');\n    });\n  }, [ensureIntercom]);\n  var showMessages = useCallback(function () {\n    ensureIntercom('showMessages', function () {\n      IntercomAPI('showMessages');\n    });\n  }, [ensureIntercom]);\n  var showNewMessages = useCallback(function (message) {\n    ensureIntercom('showNewMessage', function () {\n      if (!message) {\n        IntercomAPI('showNewMessage');\n      } else {\n        IntercomAPI('showNewMessage', message);\n      }\n    });\n  }, [ensureIntercom]);\n  var getVisitorId = useCallback(function () {\n    return ensureIntercom('getVisitorId', function () {\n      return IntercomAPI('getVisitorId');\n    });\n  }, [ensureIntercom]);\n  var startTour = useCallback(function (tourId) {\n    ensureIntercom('startTour', function () {\n      IntercomAPI('startTour', tourId);\n    });\n  }, [ensureIntercom]);\n  var trackEvent = useCallback(function (event, metaData) {\n    ensureIntercom('trackEvent', function () {\n      if (metaData) {\n        IntercomAPI('trackEvent', event, metaData);\n      } else {\n        IntercomAPI('trackEvent', event);\n      }\n    });\n  }, [ensureIntercom]);\n  var providerValue = useMemo(function () {\n    return {\n      boot: boot,\n      shutdown: shutdown,\n      hardShutdown: hardShutdown,\n      update: update,\n      hide: hide,\n      show: show,\n      showMessages: showMessages,\n      showNewMessages: showNewMessages,\n      getVisitorId: getVisitorId,\n      startTour: startTour,\n      trackEvent: trackEvent\n    };\n  }, [boot, shutdown, hardShutdown, update, hide, show, showMessages, showNewMessages, getVisitorId, startTour, trackEvent]);\n  var content = useMemo(function () {\n    return children;\n  }, [children]);\n  return createElement(IntercomContext.Provider, {\n    value: providerValue\n  }, content);\n};\nvar useIntercomContext = function useIntercomContext() {\n  return useContext(IntercomContext);\n};\n\nvar useIntercom = function useIntercom() {\n  return useIntercomContext();\n};\n\nexport { IntercomProvider, useIntercom };\n//# sourceMappingURL=react-use-intercom.esm.js.map\n", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{containerStyles,emptyStateStyle as defaultEmptyStateStyle}from\"https://framer.com/m/framer/default-utils.js@^0.43.0\";export const emptyStateStyle={...containerStyles,...defaultEmptyStateStyle,textAlign:\"center\",padding:15,width:200,height:100,overflow:\"hidden\"};export const neutralStateStyle={...emptyStateStyle,color:\"#09f\",background:\"rgb(0, 153, 255, 0.1)\",borderColor:\"#09f\"};export const stateTitleStyle={fontSize:12,fontWeight:600,margin:0};export const stateParagraphStyle={fontSize:12,maxWidth:200,lineHeight:1.4,margin:\"5px 0 0 0\"};\nexport const __FramerMetadata__ = {\"exports\":{\"neutralStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateTitleStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateParagraphStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./styles.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{IntercomProvider}from\"https://framer.com/m/framer/react-use-intercom.js@0.0.3\";import{neutralStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@^0.2.0\";/**\n * INTERCOM\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Intercom({appId,style,...props}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;return isCanvas?/*#__PURE__*/ _jsxs(motion.div,{style:{...neutralStateStyle,...style},children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Intercom\"}),/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Drop this component into a Screen to add Intercom.\"})]}):/*#__PURE__*/ _jsx(IntercomProvider,{autoBoot:true,appId:appId});};addPropertyControls(Intercom,{appId:{title:\"ID\",type:ControlType.String,description:\"Create an [Intercom](https://www.intercom.com/) account and copy your workspace ID. [Learn more\u2026](https://www.framer.com/sites/integrations/intercom/)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Intercom\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"100\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Intercom.map", "// Generated by Framer (fa64c25)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={oMGsw81V3:{hover:true}};const cycleOrder=[\"oMGsw81V3\",\"kU2dWXrto\"];const serializationHash=\"framer-VaGTQ\";const variantClassNames={kU2dWXrto:\"framer-v-ajhszj\",oMGsw81V3:\"framer-v-6iqgs2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"oMGsw81V3\",\"Variant 2\":\"kU2dWXrto\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oMGsw81V3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oMGsw81V3\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://app.txt.com/register\",motionChild:true,nodeId:\"oMGsw81V3\",scopeId:\"LjihXTBDJ\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-6iqgs2\",className,classNames)} framer-pr281o`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"oMGsw81V3\",ref:refBinding,style:{background:\"linear-gradient(259deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%)\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1px 2px 0px rgba(16, 24, 40, 0.05)\",...style},variants:{\"oMGsw81V3-hover\":{background:\"linear-gradient(259deg, rgb(255, 8, 76) 0%, rgb(255, 109, 76) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},kU2dWXrto:{background:\"linear-gradient(259deg, rgb(255, 8, 76) 0%, rgb(255, 109, 76) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"oMGsw81V3-hover\":{\"data-framer-name\":undefined},kU2dWXrto:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:\"Join TXT Today!\"})})}),className:\"framer-fb1qwr\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Lrmnlw1L_\",style:{\"--framer-paragraph-spacing\":\"16px\"},variants:{\"oMGsw81V3-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},kU2dWXrto:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"oMGsw81V3-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join TXT Today!\"})})},kU2dWXrto:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join TXT Today!\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VaGTQ.framer-pr281o, .framer-VaGTQ .framer-pr281o { display: block; }\",\".framer-VaGTQ.framer-6iqgs2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 32px 20px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VaGTQ .framer-fb1qwr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VaGTQ.framer-v-ajhszj.framer-6iqgs2 { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 284\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kU2dWXrto\":{\"layout\":[\"auto\",\"auto\"]},\"ETIn3fIat\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLjihXTBDJ=withCSS(Component,css,\"framer-VaGTQ\");export default FramerLjihXTBDJ;FramerLjihXTBDJ.displayName=\"CTA-white\";FramerLjihXTBDJ.defaultProps={height:64,width:284};addPropertyControls(FramerLjihXTBDJ,{variant:{options:[\"oMGsw81V3\",\"kU2dWXrto\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLjihXTBDJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLjihXTBDJ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"284\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kU2dWXrto\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ETIn3fIat\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LjihXTBDJ.map", "// Generated by Framer (fa64c25)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-3PCbI\";const variantClassNames={HLijD6AHw:\"framer-v-180qf03\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,signUp,width,...props})=>{return{...props,YfV2_2xfU:signUp??props.YfV2_2xfU??\"Sign Up\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,YfV2_2xfU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"HLijD6AHw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://app.txt.com/register\",motionChild:true,nodeId:\"HLijD6AHw\",scopeId:\"tjfhZDqG1\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-180qf03\",className,classNames)} framer-je2uzo`,\"data-framer-name\":\"cta_primary\",layoutDependency:layoutDependency,layoutId:\"HLijD6AHw\",ref:refBinding,style:{background:\"linear-gradient(246deg, var(--token-5fa6fca1-6739-49c8-b0e4-2370c0b262a7, rgb(255, 3, 75)) 0%, rgb(255, 115, 75) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Sign Up\"})}),className:\"framer-vn7hl5\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"vDNMdrUj_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YfV2_2xfU,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3PCbI.framer-je2uzo, .framer-3PCbI .framer-je2uzo { display: block; }\",\".framer-3PCbI.framer-180qf03 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 12px 36px 12px 36px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3PCbI .framer-vn7hl5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47.5\n * @framerIntrinsicWidth 139.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YfV2_2xfU\":\"signUp\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramertjfhZDqG1=withCSS(Component,css,\"framer-3PCbI\");export default FramertjfhZDqG1;FramertjfhZDqG1.displayName=\"CTA Button\";FramertjfhZDqG1.defaultProps={height:47.5,width:139.5};addPropertyControls(FramertjfhZDqG1,{YfV2_2xfU:{defaultValue:\"Sign Up\",displayTextArea:false,title:\"Sign Up\",type:ControlType.String}});addFonts(FramertjfhZDqG1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertjfhZDqG1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"47.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"139.5\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"YfV2_2xfU\\\":\\\"signUp\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tjfhZDqG1.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import Navigation from\"#framer/local/canvasComponent/eZPAcaH5z/eZPAcaH5z.js\";import CTAWhite from\"#framer/local/canvasComponent/LjihXTBDJ/LjihXTBDJ.js\";import Footer from\"#framer/local/canvasComponent/nC2OaLLUj/nC2OaLLUj.js\";import CTAButton from\"#framer/local/canvasComponent/tjfhZDqG1/tjfhZDqG1.js\";import*as sharedStyle from\"#framer/local/css/dTavWeEB4/dTavWeEB4.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CTAButtonFonts=getFonts(CTAButton);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const CTAWhiteFonts=getFonts(CTAWhite);const FooterFonts=getFonts(Footer);const IntercomFonts=getFonts(Intercom);const breakpoints={ko5kIawyq:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\",YmLpajpHy:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-EZ43i\";const variantClassNames={ko5kIawyq:\"framer-v-nvs5po\",WQLkyLRf1:\"framer-v-72rtr7\",YmLpajpHy:\"framer-v-140azaa\"};const transition1={bounce:.2,delay:.4,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={bounce:.2,delay:.6,duration:.8,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:.2,delay:.8,duration:.8,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:0,duration:.8,ease:[.83,-.01,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const transition6={delay:0,duration:.8,ease:[.58,0,.42,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:.3,y:0};const transition7={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:.3,y:0};const animation12={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-110,y:-30};const transition8={delay:0,duration:.8,ease:[.77,.02,.79,.98],type:\"tween\"};const animation13={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-110,y:-30};const animation14={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:110,y:-30};const animation15={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:110,y:-30};const animation16={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-110,y:0};const transition9={delay:.2,duration:.4,ease:[.77,.02,.35,.95],type:\"tween\"};const animation17={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:-110,y:0};const animation18={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-110,y:30};const animation19={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-110,y:30};const animation20={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:110,y:30};const animation21={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:110,y:30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"YmLpajpHy\",Tablet:\"ko5kIawyq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"YmLpajpHy\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"YmLpajpHy\")return true;return false;};const elementId=useRouteElementId(\"z7sNdrkxM\");const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId1=useRouteElementId(\"S7oepyxeP\");const elementId2=useRouteElementId(\"rpHdQrNCG\");const ref3=React.useRef(null);const ref4=React.useRef(null);const elementId3=useRouteElementId(\"RD8Tw1EIi\");const elementId4=useRouteElementId(\"V9phtO82e\");const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId5=useRouteElementId(\"DWoT6XfxY\");const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ko5kIawyq\",\"YmLpajpHy\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"ko5kIawyq\",\"YmLpajpHy\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"ko5kIawyq\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9333)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-13y4adl-container\",nodeId:\"hxv7JQ_wG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{variant:\"owPjmL_yf\"},YmLpajpHy:{variant:\"jEb9H31YU\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"hxv7JQ_wG\",layoutId:\"hxv7JQ_wG\",style:{width:\"100%\"},variant:\"po7k8zdsc\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q2h918\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xz46bj\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-102u2w2\",\"data-framer-appear-id\":\"102u2w2\",\"data-framer-name\":\"review1\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-uuk8fv\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"25\" viewBox=\"0 0 125 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1413)\">\\n<g clip-path=\"url(#clip1_17_1413)\">\\n<g clip-path=\"url(#clip2_17_1413)\">\\n<path d=\"M18.4323 22.9492C18.1629 22.9492 17.8949 22.8665 17.6643 22.7018L12.2416 18.8125L6.81827 22.7018C6.35627 23.0325 5.73627 23.0325 5.27694 22.6965C4.81761 22.3638 4.62427 21.7732 4.79627 21.2338L6.81894 14.7058L1.44427 10.9192C0.987606 10.5818 0.797606 9.99049 0.972273 9.44982C1.14827 8.91182 1.64961 8.54515 2.21627 8.54115L8.87227 8.53115L10.9916 2.16515C11.1703 1.62582 11.6736 1.26315 12.2416 1.26315C12.8089 1.26315 13.3123 1.62582 13.4916 2.16515L15.5743 8.53115L22.2656 8.54115C22.8336 8.54515 23.3356 8.91182 23.5103 9.44982C23.6856 9.99049 23.4956 10.5818 23.0383 10.9192L17.6636 14.7058L19.6863 21.2338C19.8596 21.7732 19.6643 22.3638 19.2063 22.6965C18.9749 22.8658 18.7036 22.9492 18.4323 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip3_17_1413)\">\\n<g clip-path=\"url(#clip4_17_1413)\">\\n<g clip-path=\"url(#clip5_17_1413)\">\\n<path d=\"M43.4323 22.9492C43.1629 22.9492 42.8949 22.8665 42.6643 22.7018L37.2416 18.8125L31.8183 22.7018C31.3563 23.0325 30.7363 23.0325 30.2769 22.6965C29.8176 22.3638 29.6243 21.7732 29.7963 21.2338L31.8189 14.7058L26.4443 10.9192C25.9876 10.5818 25.7976 9.99049 25.9723 9.44982C26.1483 8.91182 26.6496 8.54515 27.2163 8.54115L33.8723 8.53115L35.9916 2.16515C36.1703 1.62582 36.6736 1.26315 37.2416 1.26315C37.8089 1.26315 38.3123 1.62582 38.4916 2.16515L40.5743 8.53115L47.2656 8.54115C47.8336 8.54515 48.3356 8.91182 48.5103 9.44982C48.6856 9.99049 48.4956 10.5818 48.0383 10.9192L42.6636 14.7058L44.6863 21.2338C44.8596 21.7732 44.6643 22.3638 44.2063 22.6965C43.9749 22.8658 43.7036 22.9492 43.4323 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_17_1413)\">\\n<g clip-path=\"url(#clip7_17_1413)\">\\n<g clip-path=\"url(#clip8_17_1413)\">\\n<path d=\"M68.4323 22.9492C68.163 22.9492 67.895 22.8665 67.6643 22.7018L62.2416 18.8125L56.8183 22.7018C56.3563 23.0325 55.7363 23.0325 55.277 22.6965C54.8176 22.3638 54.6243 21.7732 54.7963 21.2338L56.819 14.7058L51.4443 10.9192C50.9876 10.5818 50.7976 9.99049 50.9723 9.44982C51.1483 8.91182 51.6496 8.54515 52.2163 8.54115L58.8723 8.53115L60.9916 2.16515C61.1703 1.62582 61.6736 1.26315 62.2416 1.26315C62.809 1.26315 63.3123 1.62582 63.4916 2.16515L65.5743 8.53115L72.2656 8.54115C72.8336 8.54515 73.3356 8.91182 73.5103 9.44982C73.6856 9.99049 73.4956 10.5818 73.0383 10.9192L67.6636 14.7058L69.6863 21.2338C69.8596 21.7732 69.6643 22.3638 69.2063 22.6965C68.975 22.8658 68.7036 22.9492 68.4323 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip9_17_1413)\">\\n<g clip-path=\"url(#clip10_17_1413)\">\\n<g clip-path=\"url(#clip11_17_1413)\">\\n<path d=\"M93.4323 22.9492C93.163 22.9492 92.895 22.8665 92.6643 22.7018L87.2416 18.8125L81.8183 22.7018C81.3563 23.0325 80.7363 23.0325 80.277 22.6965C79.8176 22.3638 79.6243 21.7732 79.7963 21.2338L81.819 14.7058L76.4443 10.9192C75.9876 10.5818 75.7976 9.99049 75.9723 9.44982C76.1483 8.91182 76.6496 8.54515 77.2163 8.54115L83.8723 8.53115L85.9916 2.16515C86.1703 1.62582 86.6736 1.26315 87.2416 1.26315C87.809 1.26315 88.3123 1.62582 88.4916 2.16515L90.5743 8.53115L97.2656 8.54115C97.8336 8.54515 98.3356 8.91182 98.5103 9.44982C98.6856 9.99049 98.4956 10.5818 98.0383 10.9192L92.6636 14.7058L94.6863 21.2338C94.8596 21.7732 94.6643 22.3638 94.2063 22.6965C93.975 22.8658 93.7036 22.9492 93.4323 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip12_17_1413)\">\\n<g clip-path=\"url(#clip13_17_1413)\">\\n<g clip-path=\"url(#clip14_17_1413)\">\\n<path d=\"M118.432 22.9492C118.163 22.9492 117.895 22.8665 117.664 22.7018L112.242 18.8125L106.818 22.7018C106.356 23.0325 105.736 23.0325 105.277 22.6965C104.818 22.3638 104.624 21.7732 104.796 21.2338L106.819 14.7058L101.444 10.9192C100.988 10.5818 100.798 9.99049 100.972 9.44982C101.148 8.91182 101.65 8.54515 102.216 8.54115L108.872 8.53115L110.992 2.16515C111.17 1.62582 111.674 1.26315 112.242 1.26315C112.809 1.26315 113.312 1.62582 113.492 2.16515L115.574 8.53115L122.266 8.54115C122.834 8.54515 123.336 8.91182 123.51 9.44982C123.686 9.99049 123.496 10.5818 123.038 10.9192L117.664 14.7058L119.686 21.2338C119.86 21.7732 119.664 22.3638 119.206 22.6965C118.975 22.8658 118.704 22.9492 118.432 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.241211 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.241211 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1413\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(0.241211 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(25.2412 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(25.2412 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_17_1413\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(25.2412 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(50.2412 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(50.2412 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_17_1413\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(50.2412 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(75.2412 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(75.2412 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_17_1413\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(75.2412 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(100.241 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_17_1413\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(100.241 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_17_1413\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(100.241 0.397888)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-37ca49e9-8b88-4476-8417-ca95f0834e05, rgb(11, 11, 43))\"},children:'\"My fans love it\u201D'})}),className:\"framer-1ng53le\",\"data-framer-name\":'\"My fans love it\u201D',fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-63582h\",\"data-framer-name\":\"avatar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+63+0+63+0),pixelHeight:640,pixelWidth:640,sizes:\"24px\",src:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg\",srcSet:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+0),pixelHeight:640,pixelWidth:640,sizes:\"24px\",src:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg\",srcSet:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg 640w\"},className:\"framer-1b9r642\",\"data-border\":true,\"data-framer-name\":\"Avatar\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dt1nj2\",\"data-framer-name\":\"Frame 32\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+63+0+63+24-10+0),pixelHeight:56,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eXH3M4w9VBU94Lx2wOUXaekUhM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+24-10+0),pixelHeight:56,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eXH3M4w9VBU94Lx2wOUXaekUhM.png\"},className:\"framer-b4giqh\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+63+0+63+24-10+3.9999),pixelHeight:1724,pixelWidth:1723,sizes:\"6.0256px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+24-10+3.9999),pixelHeight:1724,pixelWidth:1723,sizes:\"6.0256px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"},className:\"framer-ppl7ze\",\"data-framer-name\":\"PNG 3 2\",transformTemplate:transformTemplate1})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-47ga7l hidden-140azaa\",\"data-framer-appear-id\":\"47ga7l\",\"data-framer-name\":\"review2\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rr3jp1\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"25\" viewBox=\"0 0 125 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1475)\">\\n<g clip-path=\"url(#clip1_17_1475)\">\\n<g clip-path=\"url(#clip2_17_1475)\">\\n<path d=\"M18.5976 22.9492C18.3283 22.9492 18.0603 22.8665 17.8296 22.7018L12.407 18.8125L6.98365 22.7018C6.52165 23.0325 5.90165 23.0325 5.44231 22.6965C4.98298 22.3638 4.78965 21.7732 4.96165 21.2338L6.98431 14.7058L1.60965 10.9192C1.15298 10.5818 0.962981 9.99049 1.13765 9.44982C1.31365 8.91182 1.81498 8.54515 2.38165 8.54115L9.03765 8.53115L11.157 2.16515C11.3356 1.62582 11.839 1.26315 12.407 1.26315C12.9743 1.26315 13.4776 1.62582 13.657 2.16515L15.7396 8.53115L22.431 8.54115C22.999 8.54515 23.501 8.91182 23.6756 9.44982C23.851 9.99049 23.661 10.5818 23.2036 10.9192L17.829 14.7058L19.8516 21.2338C20.025 21.7732 19.8296 22.3638 19.3716 22.6965C19.1403 22.8658 18.869 22.9492 18.5976 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip3_17_1475)\">\\n<g clip-path=\"url(#clip4_17_1475)\">\\n<g clip-path=\"url(#clip5_17_1475)\">\\n<path d=\"M43.5976 22.9492C43.3283 22.9492 43.0603 22.8665 42.8296 22.7018L37.407 18.8125L31.9836 22.7018C31.5216 23.0325 30.9016 23.0325 30.4423 22.6965C29.983 22.3638 29.7896 21.7732 29.9616 21.2338L31.9843 14.7058L26.6096 10.9192C26.153 10.5818 25.963 9.99049 26.1376 9.44982C26.3136 8.91182 26.815 8.54515 27.3816 8.54115L34.0376 8.53115L36.157 2.16515C36.3356 1.62582 36.839 1.26315 37.407 1.26315C37.9743 1.26315 38.4776 1.62582 38.657 2.16515L40.7396 8.53115L47.431 8.54115C47.999 8.54515 48.501 8.91182 48.6756 9.44982C48.851 9.99049 48.661 10.5818 48.2036 10.9192L42.829 14.7058L44.8516 21.2338C45.025 21.7732 44.8296 22.3638 44.3716 22.6965C44.1403 22.8658 43.869 22.9492 43.5976 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_17_1475)\">\\n<g clip-path=\"url(#clip7_17_1475)\">\\n<g clip-path=\"url(#clip8_17_1475)\">\\n<path d=\"M68.5976 22.9492C68.3283 22.9492 68.0603 22.8665 67.8296 22.7018L62.407 18.8125L56.9836 22.7018C56.5216 23.0325 55.9016 23.0325 55.4423 22.6965C54.983 22.3638 54.7896 21.7732 54.9616 21.2338L56.9843 14.7058L51.6096 10.9192C51.153 10.5818 50.963 9.99049 51.1376 9.44982C51.3136 8.91182 51.815 8.54515 52.3816 8.54115L59.0376 8.53115L61.157 2.16515C61.3356 1.62582 61.839 1.26315 62.407 1.26315C62.9743 1.26315 63.4776 1.62582 63.657 2.16515L65.7396 8.53115L72.431 8.54115C72.999 8.54515 73.501 8.91182 73.6756 9.44982C73.851 9.99049 73.661 10.5818 73.2036 10.9192L67.829 14.7058L69.8516 21.2338C70.025 21.7732 69.8296 22.3638 69.3716 22.6965C69.1403 22.8658 68.869 22.9492 68.5976 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip9_17_1475)\">\\n<g clip-path=\"url(#clip10_17_1475)\">\\n<g clip-path=\"url(#clip11_17_1475)\">\\n<path d=\"M93.5976 22.9492C93.3283 22.9492 93.0603 22.8665 92.8296 22.7018L87.407 18.8125L81.9836 22.7018C81.5216 23.0325 80.9016 23.0325 80.4423 22.6965C79.983 22.3638 79.7896 21.7732 79.9616 21.2338L81.9843 14.7058L76.6096 10.9192C76.153 10.5818 75.963 9.99049 76.1376 9.44982C76.3136 8.91182 76.815 8.54515 77.3816 8.54115L84.0376 8.53115L86.157 2.16515C86.3356 1.62582 86.839 1.26315 87.407 1.26315C87.9743 1.26315 88.4776 1.62582 88.657 2.16515L90.7396 8.53115L97.431 8.54115C97.999 8.54515 98.501 8.91182 98.6756 9.44982C98.851 9.99049 98.661 10.5818 98.2036 10.9192L92.829 14.7058L94.8516 21.2338C95.025 21.7732 94.8296 22.3638 94.3716 22.6965C94.1403 22.8658 93.869 22.9492 93.5976 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip12_17_1475)\">\\n<g clip-path=\"url(#clip13_17_1475)\">\\n<g clip-path=\"url(#clip14_17_1475)\">\\n<path d=\"M118.598 22.9492C118.328 22.9492 118.06 22.8665 117.83 22.7018L112.407 18.8125L106.984 22.7018C106.522 23.0325 105.902 23.0325 105.442 22.6965C104.983 22.3638 104.79 21.7732 104.962 21.2338L106.984 14.7058L101.61 10.9192C101.153 10.5818 100.963 9.99049 101.138 9.44982C101.314 8.91182 101.815 8.54515 102.382 8.54115L109.038 8.53115L111.157 2.16515C111.336 1.62582 111.839 1.26315 112.407 1.26315C112.974 1.26315 113.478 1.62582 113.657 2.16515L115.74 8.53115L122.431 8.54115C122.999 8.54515 123.501 8.91182 123.676 9.44982C123.851 9.99049 123.661 10.5818 123.204 10.9192L117.829 14.7058L119.852 21.2338C120.025 21.7732 119.83 22.3638 119.372 22.6965C119.14 22.8658 118.869 22.9492 118.598 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.406555 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.406555 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1475\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(0.406555 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(25.4066 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(25.4066 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_17_1475\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(25.4066 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(50.4066 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(50.4066 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_17_1475\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(50.4066 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(75.4066 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(75.4066 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_17_1475\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(75.4066 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(100.407 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_17_1475\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(100.407 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_17_1475\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(100.407 0.397888)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-37ca49e9-8b88-4476-8417-ca95f0834e05, rgb(11, 11, 43))\"},children:'\"TXT is amazing!\"'})}),className:\"framer-aj54dh\",\"data-framer-name\":'\"TXT is amazing!\"',fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e97e6w\",\"data-framer-name\":\"avatar\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+0),pixelHeight:169,pixelWidth:107,positionX:\"48.9%\",positionY:\"35.6%\",src:\"https://framerusercontent.com/images/OZRKIkaqNwvjC4h3lDf7NkhBI.png\"},className:\"framer-wofmfj\",\"data-border\":true,\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ysb63\",\"data-framer-name\":\"Frame 32\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+24-10+0),pixelHeight:56,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eXH3M4w9VBU94Lx2wOUXaekUhM.png\"},className:\"framer-zlqrwg\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+24-10+3.9999),pixelHeight:1724,pixelWidth:1723,sizes:\"6.0256px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"},className:\"framer-b30nj7\",\"data-framer-name\":\"PNG 3 2\",transformTemplate:transformTemplate1})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-2872uh\",\"data-framer-appear-id\":\"2872uh\",\"data-framer-name\":\"review3\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-115c94w\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"25\" viewBox=\"0 0 125 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1537)\">\\n<g clip-path=\"url(#clip1_17_1537)\">\\n<g clip-path=\"url(#clip2_17_1537)\">\\n<path d=\"M18.3564 22.9492C18.087 22.9492 17.819 22.8665 17.5884 22.7018L12.1657 18.8125L6.74238 22.7018C6.28038 23.0325 5.66038 23.0325 5.20104 22.6965C4.74171 22.3638 4.54838 21.7732 4.72038 21.2338L6.74304 14.7058L1.36838 10.9192C0.911709 10.5818 0.721709 9.99049 0.896376 9.44982C1.07238 8.91182 1.57371 8.54515 2.14038 8.54115L8.79638 8.53115L10.9157 2.16515C11.0944 1.62582 11.5977 1.26315 12.1657 1.26315C12.733 1.26315 13.2364 1.62582 13.4157 2.16515L15.4984 8.53115L22.1897 8.54115C22.7577 8.54515 23.2597 8.91182 23.4344 9.44982C23.6097 9.99049 23.4197 10.5818 22.9624 10.9192L17.5877 14.7058L19.6104 21.2338C19.7837 21.7732 19.5884 22.3638 19.1304 22.6965C18.899 22.8658 18.6277 22.9492 18.3564 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip3_17_1537)\">\\n<g clip-path=\"url(#clip4_17_1537)\">\\n<g clip-path=\"url(#clip5_17_1537)\">\\n<path d=\"M43.3564 22.9492C43.087 22.9492 42.819 22.8665 42.5884 22.7018L37.1657 18.8125L31.7424 22.7018C31.2804 23.0325 30.6604 23.0325 30.201 22.6965C29.7417 22.3638 29.5484 21.7732 29.7204 21.2338L31.743 14.7058L26.3684 10.9192C25.9117 10.5818 25.7217 9.99049 25.8964 9.44982C26.0724 8.91182 26.5737 8.54515 27.1404 8.54115L33.7964 8.53115L35.9157 2.16515C36.0944 1.62582 36.5977 1.26315 37.1657 1.26315C37.733 1.26315 38.2364 1.62582 38.4157 2.16515L40.4984 8.53115L47.1897 8.54115C47.7577 8.54515 48.2597 8.91182 48.4344 9.44982C48.6097 9.99049 48.4197 10.5818 47.9624 10.9192L42.5877 14.7058L44.6104 21.2338C44.7837 21.7732 44.5884 22.3638 44.1304 22.6965C43.899 22.8658 43.6277 22.9492 43.3564 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_17_1537)\">\\n<g clip-path=\"url(#clip7_17_1537)\">\\n<g clip-path=\"url(#clip8_17_1537)\">\\n<path d=\"M68.3564 22.9492C68.087 22.9492 67.819 22.8665 67.5884 22.7018L62.1657 18.8125L56.7424 22.7018C56.2804 23.0325 55.6604 23.0325 55.201 22.6965C54.7417 22.3638 54.5484 21.7732 54.7204 21.2338L56.743 14.7058L51.3684 10.9192C50.9117 10.5818 50.7217 9.99049 50.8964 9.44982C51.0724 8.91182 51.5737 8.54515 52.1404 8.54115L58.7964 8.53115L60.9157 2.16515C61.0944 1.62582 61.5977 1.26315 62.1657 1.26315C62.733 1.26315 63.2364 1.62582 63.4157 2.16515L65.4984 8.53115L72.1897 8.54115C72.7577 8.54515 73.2597 8.91182 73.4344 9.44982C73.6097 9.99049 73.4197 10.5818 72.9624 10.9192L67.5877 14.7058L69.6104 21.2338C69.7837 21.7732 69.5884 22.3638 69.1304 22.6965C68.899 22.8658 68.6277 22.9492 68.3564 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip9_17_1537)\">\\n<g clip-path=\"url(#clip10_17_1537)\">\\n<g clip-path=\"url(#clip11_17_1537)\">\\n<path d=\"M93.3564 22.9492C93.087 22.9492 92.819 22.8665 92.5884 22.7018L87.1657 18.8125L81.7424 22.7018C81.2804 23.0325 80.6604 23.0325 80.201 22.6965C79.7417 22.3638 79.5484 21.7732 79.7204 21.2338L81.743 14.7058L76.3684 10.9192C75.9117 10.5818 75.7217 9.99049 75.8964 9.44982C76.0724 8.91182 76.5737 8.54515 77.1404 8.54115L83.7964 8.53115L85.9157 2.16515C86.0944 1.62582 86.5977 1.26315 87.1657 1.26315C87.733 1.26315 88.2364 1.62582 88.4157 2.16515L90.4984 8.53115L97.1897 8.54115C97.7577 8.54515 98.2597 8.91182 98.4344 9.44982C98.6097 9.99049 98.4197 10.5818 97.9624 10.9192L92.5877 14.7058L94.6104 21.2338C94.7837 21.7732 94.5884 22.3638 94.1304 22.6965C93.899 22.8658 93.6277 22.9492 93.3564 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip12_17_1537)\">\\n<g clip-path=\"url(#clip13_17_1537)\">\\n<g clip-path=\"url(#clip14_17_1537)\">\\n<path d=\"M118.356 22.9492C118.087 22.9492 117.819 22.8665 117.588 22.7018L112.166 18.8125L106.742 22.7018C106.28 23.0325 105.66 23.0325 105.201 22.6965C104.742 22.3638 104.548 21.7732 104.72 21.2338L106.743 14.7058L101.368 10.9192C100.912 10.5818 100.722 9.99049 100.896 9.44982C101.072 8.91182 101.574 8.54515 102.14 8.54115L108.796 8.53115L110.916 2.16515C111.094 1.62582 111.598 1.26315 112.166 1.26315C112.733 1.26315 113.236 1.62582 113.416 2.16515L115.498 8.53115L122.19 8.54115C122.758 8.54515 123.26 8.91182 123.434 9.44982C123.61 9.99049 123.42 10.5818 122.962 10.9192L117.588 14.7058L119.61 21.2338C119.784 21.7732 119.588 22.3638 119.13 22.6965C118.899 22.8658 118.628 22.9492 118.356 22.9492Z\" fill=\"#FFAC33\" stroke=\"#FFAC33\" stroke-width=\"1.06667\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.165283 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.165283 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1537\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(0.165283 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(25.1653 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(25.1653 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_17_1537\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(25.1653 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(50.1653 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(50.1653 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_17_1537\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(50.1653 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(75.1653 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(75.1653 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_17_1537\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(75.1653 0.397888)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(100.165 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_17_1537\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(100.165 0.131226)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_17_1537\">\\n<rect width=\"24\" height=\"23.4667\" fill=\"white\" transform=\"translate(100.165 0.397888)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-37ca49e9-8b88-4476-8417-ca95f0834e05, rgb(11, 11, 43))\"},children:'\"Perfect for creators\"'})}),className:\"framer-rc10z\",\"data-framer-name\":'\"Ideal for content creators\"',fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yhvb02\",\"data-framer-name\":\"avatar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+63+0+63+0),pixelHeight:169,pixelWidth:107,src:\"https://framerusercontent.com/images/vJGfdRBiOunKCbJKPhpEv89G9mc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+0),pixelHeight:169,pixelWidth:107,src:\"https://framerusercontent.com/images/vJGfdRBiOunKCbJKPhpEv89G9mc.png\"},className:\"framer-ligblc\",\"data-border\":true,\"data-framer-name\":\"Avatar\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yjbk9s\",\"data-framer-name\":\"Frame 32\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+63+0+63+24-10+0),pixelHeight:56,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eXH3M4w9VBU94Lx2wOUXaekUhM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+24-10+0),pixelHeight:56,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eXH3M4w9VBU94Lx2wOUXaekUhM.png\"},className:\"framer-1m0qlrv\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+63+0+63+24-10+3.9999),pixelHeight:1724,pixelWidth:1723,sizes:\"6.0256px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+0+23+0+63+24-10+3.9999),pixelHeight:1724,pixelWidth:1723,sizes:\"6.0256px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"},className:\"framer-rhlb5t\",\"data-framer-name\":\"PNG 3 2\",transformTemplate:transformTemplate1})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l16o8w\",\"data-framer-name\":\"Herotext\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Sell \"}),\"Content\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Directly in iMessage\"})]})},YmLpajpHy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Sell \"}),\"Content\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Directly in iMessage\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Sell \"}),\"Content\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Directly in iMessage\"})]}),className:\"framer-1t2bs8f\",\"data-framer-appear-id\":\"1t2bs8f\",\"data-framer-name\":\"Sell Content Directly in iMessage\",fonts:[\"Inter-Bold\",\"Inter-Italic\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Connect with your fans, directly in iMessage, keeping your number private.\"})}),className:\"framer-zwtltx\",\"data-framer-name\":\"Connect with your fans, directly in iMessage, keeping your number private.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{y:(componentViewport?.y||0)+0+87+0+133+80+302},YmLpajpHy:{y:(componentViewport?.y||0)+0+0+0+133+33+262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+87+0+133+80+1150,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ihqtpc-container\",nodeId:\"b1F0FL6gW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"b1F0FL6gW\",layoutId:\"b1F0FL6gW\",width:\"100%\",YfV2_2xfU:\"Start TXTing Today!\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14d2vuq hidden-140azaa\",\"data-framer-name\":\"heroimages\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-adihlb\",\"data-framer-name\":\"models+background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+642+0+0),pixelHeight:2210,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"754px\",src:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png\",srcSet:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=512 512w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png 2880w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+1490+0+0),pixelHeight:2210,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png\",srcSet:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=512 512w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png 2880w\"},className:\"framer-5530wh\",\"data-framer-name\":\"background image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4xzt8\",\"data-framer-name\":\"hero-models\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+642+0+158+48),pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"205px\",src:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png\",srcSet:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png?scale-down-to=1024 593w,https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png 944w\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+1490+0+158+46.5),pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"235px\",src:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png\",srcSet:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png?scale-down-to=1024 593w,https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png 944w\"},className:\"framer-5eeyfi\",\"data-framer-name\":\"herocontent\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+642+0+158+45.5),pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"205px\",src:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png\",srcSet:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png?scale-down-to=1024 593w,https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png 944w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+1490+0+158+46.6899),pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"235.07px\",src:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png\",srcSet:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png?scale-down-to=1024 593w,https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png 944w\"},className:\"framer-1qofh4b\",\"data-framer-name\":\"image-left\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+642+0+158+0),pixelHeight:2e3,pixelWidth:1160,positionX:\"center\",positionY:\"center\",sizes:\"245.08px\",src:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png\",srcSet:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png?scale-down-to=1024 593w,https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png 1160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+1490+0+158+0),pixelHeight:2e3,pixelWidth:1160,positionX:\"center\",positionY:\"center\",sizes:\"289.08px\",src:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png\",srcSet:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png?scale-down-to=1024 593w,https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png 1160w\"},className:\"framer-expahp\",\"data-border\":true,\"data-framer-name\":\"image_center\"})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yrr03c hidden-72rtr7 hidden-nvs5po\",\"data-framer-name\":\"heroimages-mob\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12oln1i\",\"data-framer-name\":\"models+background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+508+0+-35),pixelHeight:2210,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px) * 0.9981, 1px) * 1.6019)`,src:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png\",srcSet:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=512 512w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png 2880w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:2210,pixelWidth:2880,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png\",srcSet:\"https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=512 512w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pVBU5w46dPrJTn8QCT7hSKe4DE.png 2880w\"},className:\"framer-129ba7h\",\"data-framer-name\":\"background image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e28r6f\",\"data-framer-name\":\"hero-models\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+508+0+-45.5+90.5),pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png\",srcSet:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png?scale-down-to=1024 593w,https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png 944w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png\",srcSet:\"https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png?scale-down-to=1024 593w,https://framerusercontent.com/images/grdPeS84CI3jXfDCcN25xC9ppZk.png 944w\"},className:\"framer-1mklgbn\",\"data-framer-name\":\"herocontent\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+508+0+-45.5+87.5),pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png\",srcSet:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png?scale-down-to=1024 593w,https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png 944w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:1628,pixelWidth:944,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png\",srcSet:\"https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png?scale-down-to=1024 593w,https://framerusercontent.com/images/GMrlv6dOtQZDiDFPdwYLesMQVs.png 944w\"},className:\"framer-19d12qx\",\"data-framer-name\":\"image-left\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+508+0+-45.5+56),pixelHeight:2e3,pixelWidth:1160,positionX:\"center\",positionY:\"center\",sizes:\"158px\",src:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png\",srcSet:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png?scale-down-to=1024 593w,https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png 1160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2e3,pixelWidth:1160,positionX:\"center\",positionY:\"center\",sizes:\"158px\",src:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png\",srcSet:\"https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png?scale-down-to=1024 593w,https://framerusercontent.com/images/5bKp3aQc8MRe9ACqtPd5lJVdqc.png 1160w\"},className:\"framer-r5hkn9\",\"data-border\":true,\"data-framer-name\":\"image_center\",transformTemplate:transformTemplate3})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eekbpl\",\"data-framer-name\":\"Frame 25\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t8d6zq\",\"data-framer-name\":\"Frame 14\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ugtixh\",\"data-framer-name\":\"Frame 26\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNzAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(24, 25, 27)\"},children:\"Lacey Dash\"})}),className:\"framer-ljnp5y\",\"data-framer-name\":\"Heading 1 \u2192 Viking Barbie\",fonts:[\"GF;SF Pro Text-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sy6cme\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.85001 8.61119C3.70405 7.95371 3.72646 7.27003 3.91517 6.62353C4.10387 5.97702 4.45276 5.38863 4.92948 4.91291C5.4062 4.43718 5.99532 4.08953 6.64222 3.90218C7.28911 3.71483 7.97284 3.69385 8.63001 3.84119C8.99172 3.27549 9.49001 2.80995 10.079 2.48747C10.6679 2.165 11.3286 1.99597 12 1.99597C12.6715 1.99597 13.3321 2.165 13.9211 2.48747C14.51 2.80995 15.0083 3.27549 15.37 3.84119C16.0282 3.69321 16.7131 3.7141 17.361 3.9019C18.0089 4.0897 18.5988 4.43833 19.0759 4.91534C19.5529 5.39235 19.9015 5.98226 20.0893 6.63019C20.2771 7.27812 20.298 7.96302 20.15 8.62119C20.7157 8.9829 21.1812 9.48119 21.5037 10.0701C21.8262 10.6591 21.9952 11.3197 21.9952 11.9912C21.9952 12.6626 21.8262 13.3233 21.5037 13.9122C21.1812 14.5012 20.7157 14.9995 20.15 15.3612C20.2973 16.0184 20.2764 16.7021 20.089 17.349C19.9017 17.9959 19.554 18.585 19.0783 19.0617C18.6026 19.5384 18.0142 19.8873 17.3677 20.076C16.7212 20.2647 16.0375 20.2871 15.38 20.1412C15.0188 20.7091 14.5201 21.1766 13.9301 21.5005C13.3402 21.8244 12.678 21.9942 12.005 21.9942C11.332 21.9942 10.6698 21.8244 10.0799 21.5005C9.48993 21.1766 8.99125 20.7091 8.63001 20.1412C7.97284 20.2885 7.28911 20.2675 6.64222 20.0802C5.99532 19.8928 5.4062 19.5452 4.92948 19.0695C4.45276 18.5937 4.10387 18.0053 3.91517 17.3588C3.72646 16.7123 3.70405 16.0287 3.85001 15.3712C3.27997 15.0104 2.81042 14.5114 2.48506 13.9204C2.15969 13.3294 1.98907 12.6658 1.98907 11.9912C1.98907 11.3166 2.15969 10.6529 2.48506 10.062C2.81042 9.47101 3.27997 8.97194 3.85001 8.61119Z\" stroke=\"#0086E6\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9 11.9912L11 13.9912L15 9.99121\" stroke=\"#0086E6\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g10ktl\",\"data-framer-name\":\"Frame 27\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13b2l5o\",\"data-border\":true,\"data-framer-name\":\"Overlay+Border+Shadow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+1458+20+0+0+-80+4),pixelHeight:608,pixelWidth:608,positionX:\"center\",positionY:\"center\",sizes:\"152px\",src:\"https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png\",srcSet:\"https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png 608w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+917+19+0+0+-76+1),pixelHeight:608,pixelWidth:608,positionX:\"center\",positionY:\"top\",sizes:\"124px\",src:\"https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png\",srcSet:\"https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png 608w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+0+2306+20+0+0+-80+4),pixelHeight:608,pixelWidth:608,positionX:\"center\",positionY:\"center\",sizes:\"152px\",src:\"https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png\",srcSet:\"https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/UuWSPAuy0Yp07u8NUTBeowdqqAM.png 608w\"},className:\"framer-nja9in\",\"data-framer-name\":\"Viking Barbie\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g6oacc\",\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Available\"})}),className:\"framer-i28zc5\",\"data-framer-name\":\"Available\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c82apx\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z74r8n\",\"data-border\":true,\"data-framer-name\":\"Overlay+Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(255, 68, 120)\"},children:\"Models\"})}),className:\"framer-ee1wcz\",\"data-framer-name\":\"Models\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1laqjtb\",\"data-border\":true,\"data-framer-name\":\"Background+Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(34, 197, 94)\"},children:\"Fast Responder\"})}),className:\"framer-1bcdu6k\",\"data-framer-name\":\"Fast Responder\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"It\u2019s me Lacey Dash, Let\u2019s chat without the platforms, text me anytime! This is my number and i run it! no assistants or anything.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"It\u2019s me Lacey Dash, Let\u2019s chat without the platforms, text me anytime! This is my number and i run it! no assistants or anything.\"})}),className:\"framer-euc0a9\",\"data-framer-name\":\"It\u2019s me Lacey Dash, Let\u2019s chat without the platforms, text me anytime! This is my number and i run it! no assistants or anything.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13wy65z\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Text Me - $50.00\"})}),className:\"framer-8xpr3k\",\"data-framer-name\":\"Text Me - $50.00\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kk31h5\",\"data-framer-name\":\"Frame 16\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-foosgs\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(22, 101, 52)\"},children:\"16 spots left!\"})}),className:\"framer-bjld3g\",\"data-framer-name\":\"16 spots left!\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88kj1l\",\"data-framer-name\":\"patforms\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\",\"--framer-text-transform\":\"uppercase\"},children:\"Built for creators of all platforms\"})}),className:\"framer-lxe3tb\",\"data-framer-name\":\"Built for creators of all platforms\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzpiyr\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nm2b4s\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fb03qr\",\"data-framer-name\":\"TikTok logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"31\" viewBox=\"0 0 120 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1684)\">\\n<g clip-path=\"url(#clip1_17_1684)\">\\n<g clip-path=\"url(#clip2_17_1684)\">\\n<path d=\"M10.2882 13.1028V11.979C9.90321 11.9277 9.51183 11.8955 9.10761 11.8955C4.28905 11.8891 0.368744 15.8128 0.368744 20.6417C0.368744 23.6022 1.84447 26.2221 4.10298 27.8083C2.64649 26.2478 1.75464 24.148 1.75464 21.849C1.75464 17.0907 5.56587 13.212 10.2882 13.1028Z\" fill=\"#25F4EE\"/>\\n<path d=\"M10.5001 25.8433C12.6495 25.8433 14.4075 24.1287 14.4846 21.9968L14.491 2.94383H17.9685C17.898 2.55212 17.8595 2.14755 17.8595 1.73657H13.1115L13.1051 20.7895C13.0281 22.9215 11.27 24.636 9.12061 24.636C8.45332 24.636 7.82454 24.469 7.26633 24.1736C7.98494 25.1819 9.16552 25.8433 10.5001 25.8433Z\" fill=\"#25F4EE\"/>\\n<path d=\"M24.4678 9.41029V8.35073C23.1397 8.35073 21.9077 7.95895 20.8683 7.27832C21.7922 8.33788 23.0434 9.10841 24.4678 9.41029Z\" fill=\"#25F4EE\"/>\\n<path d=\"M20.8685 7.27831C19.8548 6.116 19.2452 4.6005 19.2452 2.94373H17.9748C18.302 4.75462 19.3799 6.30866 20.8685 7.27831Z\" fill=\"#FE2C55\"/>\\n<path d=\"M9.11442 16.641C6.91365 16.641 5.12354 18.4327 5.12354 20.6353C5.12354 22.17 5.99614 23.5058 7.26655 24.1735C6.79175 23.5186 6.50943 22.7159 6.50943 21.8425C6.50943 19.6399 8.29955 17.8483 10.5003 17.8483C10.9109 17.8483 11.3087 17.9189 11.6809 18.0345V13.1798C11.296 13.1284 10.9046 13.0963 10.5003 13.0963C10.4297 13.0963 10.3656 13.1027 10.295 13.1027V16.8273C9.91643 16.7117 9.52505 16.641 9.11442 16.641Z\" fill=\"#FE2C55\"/>\\n<path d=\"M24.4682 9.41028V13.1027C22.0044 13.1027 19.7202 12.3129 17.8595 10.9772V20.6417C17.8595 25.4643 13.9392 29.3944 9.11424 29.3944C7.25354 29.3944 5.52116 28.8036 4.10318 27.8082C5.70081 29.5228 7.97857 30.6016 10.5001 30.6016C15.3187 30.6016 19.2454 26.678 19.2454 21.8489V12.1844C21.1061 13.5202 23.3903 14.31 25.8541 14.31V9.55803C25.3729 9.55803 24.9109 9.50665 24.4682 9.41028Z\" fill=\"#FE2C55\"/>\\n<path d=\"M17.8595 20.6417V10.9771C19.7202 12.3129 22.0044 13.1027 24.4682 13.1027V9.41028C23.0439 9.1085 21.7927 8.33788 20.8688 7.27831C19.3802 6.30866 18.3086 4.75462 17.9686 2.94373H14.4911L14.4846 21.9967C14.4076 24.1287 12.6495 25.8432 10.5001 25.8432C9.16556 25.8432 7.9914 25.1818 7.25996 24.18C5.98955 23.5057 5.11694 22.1764 5.11694 20.6417C5.11694 18.4391 6.90706 16.6474 9.10782 16.6474C9.51846 16.6474 9.91624 16.7181 10.2884 16.8337V13.1091C5.56607 13.2118 1.75485 17.0906 1.75485 21.8489C1.75485 24.1479 2.64671 26.2413 4.10318 27.8082C5.52116 28.8035 7.25353 29.3943 9.11424 29.3943C13.9328 29.3943 17.8595 25.4643 17.8595 20.6417Z\" fill=\"black\"/>\\n<path d=\"M30.5504 9.4231H45.3912L44.0309 13.6742H40.1812V29.3879H35.3819V13.6742L30.5569 13.6807L30.5504 9.4231Z\" fill=\"black\"/>\\n<path d=\"M69.709 9.4231H84.8961L83.5359 13.6742H79.3461V29.3879H74.5404V13.6742L69.7153 13.6807L69.709 9.4231Z\" fill=\"black\"/>\\n<path d=\"M46.3026 15.7742H51.057V29.388H46.3283L46.3026 15.7742Z\" fill=\"black\"/>\\n<path d=\"M52.9497 9.37183H57.7042V18.6703L62.4137 14.0404H68.0856L62.125 19.8263L68.7978 29.388H63.5621L59.1093 22.7609L57.6978 24.1287V29.388H52.9434V9.37183H52.9497Z\" fill=\"black\"/>\\n<path d=\"M103.317 9.37183H108.071V18.6703L112.781 14.0404H118.453L112.492 19.8263L119.165 29.388H113.936L109.482 22.7609L108.071 24.1287V29.388H103.317V9.37183Z\" fill=\"black\"/>\\n<path d=\"M48.6761 14.22C49.9979 14.22 51.0694 13.1477 51.0694 11.8248C51.0694 10.5019 49.9979 9.42957 48.6761 9.42957C47.3544 9.42957 46.2829 10.5019 46.2829 11.8248C46.2829 13.1477 47.3544 14.22 48.6761 14.22Z\" fill=\"black\"/>\\n<path d=\"M84.2866 21.2391C84.2866 16.9559 87.591 13.4432 91.7936 13.1158C91.5819 13.0965 91.2931 13.0901 91.0814 13.0901C86.5837 13.0901 82.9392 16.7375 82.9392 21.2391C82.9392 25.7406 86.5837 29.3881 91.0814 29.3881C91.2931 29.3881 91.5819 29.3753 91.7936 29.3625C87.5974 29.0349 84.2866 25.5223 84.2866 21.2391Z\" fill=\"#25F4EE\"/>\\n<path d=\"M93.6412 13.0901C93.423 13.0901 93.1344 13.1029 92.9226 13.1158C97.1187 13.4432 100.423 16.9559 100.423 21.2391C100.423 25.5223 97.1187 29.0349 92.9226 29.3625C93.1344 29.3817 93.423 29.3881 93.6412 29.3881C98.1387 29.3881 101.784 25.7406 101.784 21.2391C101.784 16.7375 98.1387 13.0901 93.6412 13.0901Z\" fill=\"#FE2C55\"/>\\n<path d=\"M92.3581 25.2013C90.1702 25.2013 88.3994 23.4288 88.3994 21.2391C88.3994 19.0493 90.1702 17.277 92.3581 17.277C94.5463 17.277 96.3172 19.0493 96.3172 21.2391C96.3172 23.4288 94.5397 25.2013 92.3581 25.2013ZM92.3581 13.0901C87.8604 13.0901 84.2159 16.7375 84.2159 21.2391C84.2159 25.7406 87.8604 29.3881 92.3581 29.3881C96.8563 29.3881 100.5 25.7406 100.5 21.2391C100.5 16.7375 96.8563 13.0901 92.3581 13.0901Z\" fill=\"black\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1684\">\\n<rect width=\"119.06\" height=\"30\" fill=\"white\" transform=\"translate(0.369995 0.873047)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1684\">\\n<rect width=\"119.06\" height=\"30\" fill=\"white\" transform=\"translate(0.369995 0.873047)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1684\">\\n<rect width=\"119.062\" height=\"30\" fill=\"white\" transform=\"translate(0.368744 0.873047)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nvmw76\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-115zaz8\",\"data-framer-name\":\"Patreon_idaRgFF3Iq_0 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"44\" viewBox=\"0 0 41 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1703)\">\\n<path d=\"M40.4299 13.1203C40.4299 7.51854 36.0536 2.96712 30.977 1.3041C24.675 -0.709028 16.2724 -0.446446 10.233 2.44196C2.79316 5.85552 0.517448 13.4704 0.42992 20.9978C0.342393 27.2122 0.955084 43.5798 10.233 43.7549C17.0601 43.8424 18.1104 35.0021 21.2614 30.7133C23.5371 27.6498 26.4255 26.8621 30.0142 25.8993C36.2286 24.4113 40.4299 19.5973 40.4299 13.1203Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1703\">\\n<rect width=\"40\" height=\"43.7637\" fill=\"white\" transform=\"translate(0.429993 -0.00878906)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1svd0ph\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6i9t8w\",\"data-framer-name\":\"YouTube Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:131,svg:'<svg width=\"131\" height=\"31\" viewBox=\"0 0 131 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1705)\">\\n<g clip-path=\"url(#clip1_17_1705)\">\\n<g clip-path=\"url(#clip2_17_1705)\">\\n<mask id=\"mask0_17_1705\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"1\" width=\"131\" height=\"30\">\\n<path d=\"M130.63 1.31812H0.429993V30.4279H130.63V1.31812Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_17_1705)\">\\n<path d=\"M41.263 5.9492C40.7867 4.17615 39.3841 2.77358 37.611 2.29724C34.409 1.42395 21.5213 1.42395 21.5213 1.42395C21.5213 1.42395 8.63356 1.45041 5.43152 2.32371C3.65847 2.80005 2.25591 4.20261 1.77957 5.97566C0.932739 9.17771 0.932739 15.873 0.932739 15.873C0.932739 15.873 0.932739 22.5682 1.80603 25.7967C2.28237 27.5698 3.68493 28.9724 5.45798 29.4487C8.66008 30.322 21.5477 30.322 21.5477 30.322C21.5477 30.322 34.4354 30.322 37.6375 29.4487C39.4106 28.9724 40.8131 27.5698 41.2895 25.7967C42.1628 22.5947 42.1628 15.873 42.1628 15.873C42.1628 15.873 42.1363 9.17771 41.263 5.9492Z\" fill=\"#FF0000\"/>\\n<path d=\"M17.4194 22.0654L28.1107 15.873L17.4194 9.68054V22.0654Z\" fill=\"white\"/>\\n<path d=\"M60.7402 27.7024C59.9199 27.1467 59.3377 26.2998 58.9936 25.1354C58.6496 23.9711 58.4908 22.4362 58.4908 20.5043V17.8845C58.4908 15.9527 58.6761 14.3648 59.073 13.2005C59.47 12.0096 60.0786 11.1627 60.9256 10.6335C61.7722 10.1042 62.8576 9.81311 64.207 9.81311C65.53 9.81311 66.6154 10.0778 67.4092 10.6335C68.203 11.1892 68.8114 12.0361 69.1822 13.2005C69.5524 14.3648 69.7378 15.9262 69.7378 17.858V20.4779C69.7378 22.4098 69.5524 23.9446 69.1822 25.109C68.8114 26.2734 68.2294 27.1202 67.4092 27.6759C66.5884 28.2052 65.4772 28.4963 64.1008 28.4963C62.6722 28.5228 61.5604 28.2317 60.7402 27.7024ZM65.3182 24.8708C65.5564 24.2886 65.6626 23.3094 65.6626 21.9863V16.3496C65.6626 15.0529 65.5564 14.1002 65.3182 13.518C65.08 12.9094 64.6834 12.6182 64.1278 12.6182C63.5716 12.6182 63.2014 12.9094 62.9632 13.518C62.725 14.1267 62.6194 15.0529 62.6194 16.3496V21.9863C62.6194 23.3094 62.725 24.2886 62.9368 24.8708C63.1486 25.453 63.5452 25.7441 64.1278 25.7441C64.6834 25.7441 65.08 25.453 65.3182 24.8708Z\" fill=\"#282828\"/>\\n<path d=\"M123.326 20.5573V21.4835C123.326 22.6479 123.353 23.5212 123.432 24.1034C123.512 24.6856 123.644 25.109 123.855 25.3736C124.067 25.6382 124.411 25.7706 124.861 25.7706C125.469 25.7706 125.893 25.5324 126.105 25.0561C126.343 24.5797 126.449 23.7858 126.475 22.7008L129.995 22.9126C130.022 23.0713 130.022 23.283 130.022 23.5477C130.022 25.2149 129.572 26.4586 128.645 27.279C127.719 28.0994 126.449 28.5228 124.782 28.5228C122.771 28.5228 121.368 27.8876 120.574 26.6439C119.78 25.4001 119.357 23.4418 119.357 20.8219V17.6198C119.357 14.9206 119.78 12.9358 120.6 11.692C121.447 10.4483 122.876 9.81311 124.887 9.81311C126.29 9.81311 127.349 10.0778 128.09 10.5806C128.831 11.0834 129.36 11.8773 129.677 12.9623C129.995 14.0473 130.127 15.5293 130.127 17.4346V20.5308H123.326V20.5573ZM123.855 12.9358C123.644 13.2005 123.512 13.5974 123.432 14.1796C123.353 14.7618 123.326 15.6351 123.326 16.8259V18.1226H126.29V16.8259C126.29 15.6615 126.264 14.7883 126.184 14.1796C126.105 13.5709 125.972 13.1476 125.761 12.9094C125.549 12.6712 125.231 12.5388 124.808 12.5388C124.358 12.5653 124.041 12.6977 123.855 12.9358Z\" fill=\"#282828\"/>\\n<path d=\"M50.8427 20.2129L46.2116 3.48804H50.2605L51.8748 11.0565C52.2982 12.9355 52.5893 14.5233 52.801 15.82H52.9069C53.0392 14.8673 53.3568 13.3059 53.8331 11.0831L55.5003 3.48804H59.5492L54.8652 20.1864V28.2048H50.8692V20.2129H50.8427Z\" fill=\"#282828\"/>\\n<path d=\"M82.8634 10.1569V28.2314H79.6882L79.3438 26.0084H79.2646C78.391 27.6757 77.0944 28.5225 75.3742 28.5225C74.1838 28.5225 73.2838 28.1255 72.7282 27.3316C72.1462 26.5377 71.881 25.3204 71.881 23.6532V10.1569H75.9568V23.4151C75.9568 24.2089 76.036 24.7912 76.2214 25.1351C76.4068 25.4792 76.6978 25.6379 77.0944 25.6379C77.4388 25.6379 77.7826 25.5321 78.1 25.3204C78.418 25.1087 78.6562 24.8176 78.8146 24.5V10.1569H82.8634Z\" fill=\"#282828\"/>\\n<path d=\"M103.743 10.1569V28.2314H100.568L100.224 26.0084H100.144C99.271 27.6757 97.9744 28.5225 96.2542 28.5225C95.0632 28.5225 94.1632 28.1255 93.6076 27.3316C93.0256 26.5377 92.761 25.3204 92.761 23.6532V10.1569H96.8362V23.4151C96.8362 24.2089 96.9154 24.7912 97.1008 25.1351C97.2862 25.4792 97.5772 25.6379 97.9744 25.6379C98.3182 25.6379 98.662 25.5321 98.98 25.3204C99.2974 25.1087 99.5356 24.8176 99.694 24.5V10.1569H103.743Z\" fill=\"#282828\"/>\\n<path d=\"M93.9256 6.7695H89.8762V28.2313H85.9072V6.7695H81.8578V3.48804H93.8986V6.7695H93.9256Z\" fill=\"#282828\"/>\\n<path d=\"M117.187 13.0414C116.949 11.9035 116.552 11.0831 115.996 10.5538C115.44 10.051 114.699 9.78642 113.72 9.78642C112.979 9.78642 112.265 9.9981 111.629 10.4215C110.968 10.8449 110.492 11.4007 110.121 12.0887H110.094V2.56189H106.178V28.2049H109.539L109.962 26.4848H110.042C110.359 27.0935 110.835 27.5698 111.444 27.9403C112.079 28.2844 112.767 28.4696 113.535 28.4696C114.911 28.4696 115.916 27.8345 116.578 26.5642C117.213 25.294 117.557 23.3092 117.557 20.6364V17.7784C117.557 15.7672 117.425 14.1793 117.187 13.0414ZM113.456 20.4247C113.456 21.7478 113.402 22.78 113.297 23.5209C113.191 24.2619 113.006 24.7912 112.741 25.1087C112.476 25.4263 112.132 25.5851 111.709 25.5851C111.365 25.5851 111.074 25.5057 110.783 25.3469C110.492 25.1881 110.28 24.9499 110.094 24.6324V14.3646C110.227 13.8617 110.465 13.4648 110.809 13.1473C111.153 12.8297 111.497 12.6709 111.894 12.6709C112.317 12.6709 112.635 12.8297 112.847 13.1473C113.085 13.4648 113.217 14.0206 113.323 14.788C113.402 15.5554 113.456 16.6404 113.456 18.0695V20.4247Z\" fill=\"#282828\"/>\\n</g>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1705\">\\n<rect width=\"130.2\" height=\"30\" fill=\"white\" transform=\"translate(0.429993 0.873047)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1705\">\\n<rect width=\"130.2\" height=\"30\" fill=\"white\" transform=\"translate(0.429993 0.873047)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1705\">\\n<rect width=\"130.2\" height=\"30\" fill=\"white\" transform=\"translate(0.429993 0.873047)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1md182k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a8vgqo\",\"data-framer-name\":\"X_idJxGuURW1_0 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"37\" viewBox=\"0 0 41 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1721)\">\\n<path d=\"M32.116 0.800781H38.2204L24.887 16.1421L40.63 36.9454H28.2605L18.622 24.3349L7.53764 36.9454H1.43322L15.7304 20.5598L0.630005 0.800781H13.3208L22.0758 12.367L32.116 0.800781ZM29.9473 33.2506H33.3208L11.4734 4.2546H7.7786L29.9473 33.2506Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1721\">\\n<rect width=\"40\" height=\"36.1446\" fill=\"white\" transform=\"translate(0.630005 0.800781)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gcrpsd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-183xjay\",\"data-framer-name\":\"Instagram Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"41\" viewBox=\"0 0 41 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1724)\">\\n<g clip-path=\"url(#clip1_17_1724)\">\\n<g clip-path=\"url(#clip2_17_1724)\">\\n<mask id=\"mask0_17_1724\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"41\" height=\"41\">\\n<path d=\"M40.63 0.873047H0.630005V40.8731H40.63V0.873047Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_17_1724)\">\\n<path d=\"M33.6656 10.1861C33.6656 8.85836 32.5896 7.78625 31.2667 7.78625C29.9437 7.78625 28.8669 8.85836 28.8669 10.1861C28.8669 11.5089 29.9437 12.581 31.2667 12.581C32.5896 12.581 33.6656 11.5089 33.6656 10.1861Z\" fill=\"url(#paint0_linear_17_1724)\"/>\\n<path d=\"M36.8623 28.9186C36.7735 30.8664 36.4476 31.9248 36.1772 32.6274C35.814 33.5594 35.3807 34.2258 34.6777 34.9248C33.9828 35.6237 33.3164 36.056 32.3844 36.4154C31.6817 36.6898 30.6193 37.0165 28.6716 37.1093C26.5661 37.2021 25.9422 37.2218 20.6026 37.2218C15.2679 37.2218 14.639 37.2021 12.5334 37.1093C10.5857 37.0165 9.52843 36.6898 8.8255 36.4154C7.8887 36.056 7.22734 35.6237 6.52841 34.9248C5.82454 34.2258 5.39118 33.5594 5.03283 32.6274C4.7623 31.9248 4.43166 30.8664 4.34769 28.9186C4.24507 26.8131 4.22627 26.1793 4.22627 20.8505C4.22627 15.5109 4.24507 14.8821 4.34769 12.7764C4.43166 10.8287 4.7623 9.7715 5.03283 9.06267C5.39118 8.13177 5.82454 7.46934 6.52841 6.77041C7.22734 6.07254 7.8887 5.6391 8.8255 5.27587C9.52843 5.00046 10.5857 4.67862 12.5334 4.58585C14.639 4.49299 15.2679 4.46931 20.6026 4.46931C25.9422 4.46931 26.5661 4.49299 28.6716 4.58585C30.6193 4.67862 31.6817 5.00046 32.3844 5.27587C33.3164 5.6391 33.9828 6.07254 34.6777 6.77041C35.3807 7.46934 35.814 8.13177 36.1772 9.06267C36.4476 9.7715 36.7735 10.8287 36.8623 12.7764C36.9601 14.8821 36.9836 15.5109 36.9836 20.8505C36.9836 26.1793 36.9601 26.8131 36.8623 28.9186ZM40.4585 12.6125C40.3609 10.4842 40.0252 9.03009 39.5268 7.76355C39.0193 6.44961 38.3391 5.33606 37.2255 4.22254C36.1169 3.11396 35.0036 2.43378 33.6895 1.92047C32.418 1.42685 30.9689 1.08724 28.8396 0.994471C26.7102 0.89178 26.0301 0.873047 20.6026 0.873047C15.18 0.873047 14.4949 0.89178 12.3656 0.994471C10.2412 1.08724 8.79294 1.42685 7.51555 1.92047C6.20657 2.43378 5.09302 3.11396 3.98446 4.22254C2.87092 5.33606 2.19073 6.44961 1.67839 7.76355C1.18477 9.03009 0.849158 10.4842 0.746467 12.6125C0.653697 14.7419 0.630005 15.423 0.630005 20.8505C0.630005 26.2732 0.653697 26.9532 0.746467 29.0826C0.849158 31.2069 1.18477 32.6602 1.67839 33.9325C2.19073 35.2416 2.87092 36.3602 3.98446 37.4688C5.09302 38.5773 6.20657 39.2624 7.51555 39.7746C8.79294 40.2682 10.2412 40.604 12.3656 40.7016C14.4949 40.7994 15.18 40.8232 20.6026 40.8232C26.0301 40.8232 26.7102 40.7994 28.8396 40.7016C30.9689 40.604 32.418 40.2682 33.6895 39.7746C35.0036 39.2624 36.1169 38.5773 37.2255 37.4688C38.3391 36.3602 39.0193 35.2416 39.5268 33.9325C40.0252 32.6602 40.3609 31.2069 40.4585 29.0826C40.5564 26.9532 40.5801 26.2732 40.5801 20.8505C40.5801 15.423 40.5564 14.7419 40.4585 12.6125Z\" fill=\"url(#paint1_linear_17_1724)\"/>\\n<path d=\"M20.6025 27.503C16.9273 27.503 13.945 24.5256 13.945 20.8504C13.945 17.1692 16.9273 14.188 20.6025 14.188C24.2789 14.188 27.265 17.1692 27.265 20.8504C27.265 24.5256 24.2789 27.503 20.6025 27.503ZM20.6025 10.5868C14.9372 10.5868 10.3488 15.185 10.3488 20.8504C10.3488 26.5109 14.9372 31.1042 20.6025 31.1042C26.2679 31.1042 30.8612 26.5109 30.8612 20.8504C30.8612 15.185 26.2679 10.5868 20.6025 10.5868Z\" fill=\"url(#paint2_linear_17_1724)\"/>\\n</g>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1724\" x1=\"0.990017\" y1=\"40.41\" x2=\"37.2523\" y2=\"4.14788\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD521\"/>\\n<stop offset=\"0.05\" stop-color=\"#FFD521\"/>\\n<stop offset=\"0.501119\" stop-color=\"#F50000\"/>\\n<stop offset=\"0.95\" stop-color=\"#B900B4\"/>\\n<stop offset=\"0.950079\" stop-color=\"#B900B4\"/>\\n<stop offset=\"1\" stop-color=\"#B900B4\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_17_1724\" x1=\"0.990347\" y1=\"40.4597\" x2=\"37.2825\" y2=\"4.16777\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD521\"/>\\n<stop offset=\"0.05\" stop-color=\"#FFD521\"/>\\n<stop offset=\"0.501119\" stop-color=\"#F50000\"/>\\n<stop offset=\"0.95\" stop-color=\"#B900B4\"/>\\n<stop offset=\"0.950079\" stop-color=\"#B900B4\"/>\\n<stop offset=\"1\" stop-color=\"#B900B4\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_17_1724\" x1=\"0.999744\" y1=\"40.4607\" x2=\"37.2831\" y2=\"4.17733\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD521\"/>\\n<stop offset=\"0.05\" stop-color=\"#FFD521\"/>\\n<stop offset=\"0.501119\" stop-color=\"#F50000\"/>\\n<stop offset=\"0.95\" stop-color=\"#B900B4\"/>\\n<stop offset=\"0.950079\" stop-color=\"#B900B4\"/>\\n<stop offset=\"1\" stop-color=\"#B900B4\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1724\">\\n<rect width=\"40\" height=\"40\" fill=\"white\" transform=\"translate(0.630005 0.873047)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1724\">\\n<rect width=\"40\" height=\"40\" fill=\"white\" transform=\"translate(0.630005 0.873047)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1724\">\\n<rect width=\"40\" height=\"40\" fill=\"white\" transform=\"translate(0.630005 0.873047)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cleqzp\",\"data-framer-name\":\"social-proof\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0),pixelHeight:2093,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png\",srcSet:\"https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png?scale-down-to=512 512w,https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+0),pixelHeight:2093,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png\",srcSet:\"https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png?scale-down-to=512 512w,https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/A1Nu57S6QXPNA87pagtI58TyBs.png 2880w\"},className:\"framer-i5ycux hidden-140azaa\",\"data-framer-name\":\"Vector\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hj3ayq\",\"data-framer-name\":\"Frame 12\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-249f5d19-f3e8-4333-a04e-f5f03574d2cd, rgb(39, 43, 45))\"},children:\"Join 10,000+ creators\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-249f5d19-f3e8-4333-a04e-f5f03574d2cd, rgb(39, 43, 45))\"},children:\"Join 10,000+ creators\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join 10,000+ creators\"})}),className:\"framer-5o4u2a\",\"data-framer-name\":\"Heading 2 \u2192 Join 1,000,000+ creators\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Creators from\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://throne.com/countries\",motionChild:true,nodeId:\"uIOlfPifM\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"80+ countries\"})})}),\"\\xa0and all popular platforms are already using TXT. Check out their profiles and discover and start Txting!\"]})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-249f5d19-f3e8-4333-a04e-f5f03574d2cd, rgb(39, 43, 45))\"},children:[\"Creators from\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://throne.com/countries\",motionChild:true,nodeId:\"uIOlfPifM\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"80+ countries\"})})}),\"\\xa0and all popular platforms are already using TXT. Check out their profiles and discover and start Txting!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Creators from\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://throne.com/countries\",motionChild:true,nodeId:\"uIOlfPifM\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"80+ countries\"})})}),\"\\xa0and all popular platforms are already using TXT. Check out their profiles and discover and start Txting!\"]})}),className:\"framer-lrh2tw\",\"data-framer-name\":\"Creators from\\xa080+ countries\\xa0and all popular platforms are already using TXT. Check out their profiles and discover and start Txting!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qd9uxs\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rtmldj hidden-140azaa\",\"data-framer-name\":\"card1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19hkpp0\",\"data-framer-name\":\"648739118455a30988d78ef9_Gradient_Background.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"81\" viewBox=\"0 0 240 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1749)\">\\n<g clip-path=\"url(#clip1_17_1749)\">\\n<g clip-path=\"url(#clip2_17_1749)\">\\n<path d=\"M240 -11.9973H0V93.167H240V-11.9973Z\" fill=\"url(#paint0_linear_17_1749)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1749\" x1=\"240\" y1=\"-11.9973\" x2=\"-5.80299\" y2=\"77.1702\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1749\">\\n<path d=\"M0 12.585C0 5.95754 5.37258 0.584961 12 0.584961H228C234.627 0.584961 240 5.95754 240 12.585V80.585H0V12.585Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1749\">\\n<rect width=\"240\" height=\"80\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1749\">\\n<rect width=\"240\" height=\"105.164\" fill=\"white\" transform=\"translate(0 -11.9973)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Londy\"})}),className:\"framer-zv6rin\",\"data-framer-name\":\"Londy\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"@londyslounge\"})}),className:\"framer-1j4xqke\",\"data-framer-name\":\"@londyslounge\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fnxk7g\",\"data-framer-name\":\"Throne Partner Creator badge\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"23\" viewBox=\"0 0 80 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1755)\">\\n<g clip-path=\"url(#clip1_17_1755)\">\\n<g clip-path=\"url(#clip2_17_1755)\">\\n<path d=\"M76.6953 0.582764H2.85026C1.27611 0.582764 0 1.85887 0 3.43303V19.0613C0 20.6355 1.27611 21.9116 2.85026 21.9116H76.6953C78.2695 21.9116 79.5456 20.6355 79.5456 19.0613V3.43303C79.5456 1.85887 78.2695 0.582764 76.6953 0.582764Z\" fill=\"#718096\"/>\\n<path d=\"M15.1091 11.5347C15.0634 11.6272 15.0033 11.7108 14.9311 11.7841L12.5407 14.2341C12.4992 14.292 12.4279 14.3285 12.3495 14.3285C12.2712 14.3285 12.1994 14.292 12.1533 14.228L9.76707 11.7837C9.75541 11.7725 9.74281 11.7589 9.73116 11.7454C9.48126 11.4647 9.43324 11.0593 9.60948 10.7137L12.1318 5.7624C12.1808 5.68627 12.2609 5.64331 12.3495 5.64331C12.4382 5.64331 12.5178 5.6858 12.5645 5.75726L15.0928 10.7212C15.2257 10.9813 15.2318 11.2858 15.1091 11.5347ZM12.4259 15.8266L6.12811 9.41214L6.10805 9.3916C6.06143 9.35424 6.00781 9.33508 5.95 9.33508C5.86561 9.33835 5.79148 9.37525 5.74579 9.43596C5.70289 9.49293 5.69031 9.56673 5.70989 9.64518L7.54265 15.9634C7.58648 16.1143 7.65735 16.2544 7.75479 16.3786C7.76645 16.3945 7.7795 16.41 7.79209 16.4249C8.00982 16.6775 8.33805 16.8162 8.6784 16.8162C8.81035 16.8162 8.94415 16.7957 9.07377 16.7518C10.0174 16.4389 11.0054 16.2633 12.0125 16.2311C12.0977 16.2246 12.1826 16.2194 12.267 16.2152C12.3369 16.2114 12.4017 16.1778 12.4437 16.1232C12.4853 16.07 12.501 16.0026 12.4885 15.9377C12.4806 15.899 12.459 15.8612 12.4259 15.8266ZM18.8871 9.37478C18.8073 9.32014 18.7057 9.32341 18.5994 9.38692L18.5733 9.40281L13.1579 14.9281C13.068 15.0197 13.0675 15.1634 13.157 15.255L14.1007 16.2217C14.2126 16.3366 14.3562 16.4151 14.517 16.4492C14.945 16.5393 15.3698 16.658 15.7801 16.8013C15.8752 16.8344 15.9745 16.8508 16.0743 16.8508C16.1978 16.8508 16.3214 16.8256 16.4393 16.7751C16.6426 16.692 16.8184 16.5608 16.9475 16.395C17.044 16.2712 17.1159 16.1311 17.1601 15.9789L18.9934 9.6578C19.0008 9.62837 19.0037 9.59896 19.0013 9.57373C19.0013 9.4934 18.9584 9.41962 18.8871 9.37478Z\" fill=\"white\"/>\\n<path d=\"M25.6573 16.3899V6.71631H29.2849C30.028 6.71631 30.6515 6.85486 31.1553 7.13197C31.6623 7.40907 32.0449 7.7901 32.3031 8.27504C32.5645 8.75683 32.6952 9.30474 32.6952 9.9188C32.6952 10.5391 32.5645 11.0902 32.3031 11.572C32.0418 12.0538 31.656 12.4332 31.1459 12.7104C30.6358 12.9843 30.0075 13.1213 29.2613 13.1213H26.857V11.6806H29.025C29.4597 11.6806 29.8154 11.6051 30.0926 11.4539C30.3697 11.3028 30.5744 11.0949 30.7066 10.8304C30.8421 10.5659 30.9097 10.262 30.9097 9.9188C30.9097 9.57555 30.8421 9.27326 30.7066 9.0119C30.5744 8.75054 30.3681 8.54743 30.0879 8.40257C29.8107 8.25457 29.4534 8.18057 29.0157 8.18057H27.4096V16.3899H25.6573ZM36.0997 16.5363C35.6399 16.5363 35.2257 16.4545 34.8574 16.2907C34.4921 16.1239 34.2024 15.8783 33.9882 15.5539C33.7773 15.2296 33.6718 14.8296 33.6718 14.3541C33.6718 13.9448 33.7473 13.6063 33.8985 13.3386C34.0496 13.0709 34.2559 12.8568 34.5173 12.6962C34.7786 12.5356 35.073 12.4144 35.4006 12.3324C35.7312 12.2474 36.0728 12.186 36.4255 12.1483C36.8506 12.1042 37.1954 12.0648 37.46 12.0301C37.7245 11.9924 37.9166 11.9357 38.0362 11.8601C38.159 11.7814 38.2205 11.6602 38.2205 11.4964V11.4681C38.2205 11.1123 38.115 10.8367 37.904 10.6415C37.693 10.4463 37.3891 10.3486 36.9923 10.3486C36.5735 10.3486 36.2413 10.44 35.9957 10.6226C35.7533 10.8052 35.5895 11.0209 35.5045 11.2697L33.9079 11.043C34.0338 10.6021 34.2417 10.2337 34.5314 9.93769C34.8211 9.63854 35.1754 9.41496 35.5942 9.26696C36.013 9.11581 36.4759 9.04024 36.9829 9.04024C37.3325 9.04024 37.6803 9.08118 38.0267 9.16304C38.3731 9.24491 38.6896 9.38032 38.9762 9.56926C39.2627 9.75505 39.4926 10.0085 39.6658 10.3297C39.8422 10.6509 39.9303 11.0524 39.9303 11.5342V16.3899H38.2865V15.3932H38.2298C38.1259 15.5948 37.9795 15.7837 37.7906 15.9601C37.6048 16.1332 37.3702 16.2735 37.0869 16.3804C36.8065 16.4844 36.4775 16.5363 36.0997 16.5363ZM36.5437 15.2799C36.8869 15.2799 37.1845 15.2122 37.4363 15.0768C37.6882 14.9383 37.8819 14.7556 38.0174 14.5289C38.1559 14.3021 38.2251 14.0549 38.2251 13.7873V12.9323C38.1717 12.9764 38.0803 13.0173 37.9512 13.0552C37.8253 13.093 37.6835 13.126 37.5261 13.1544C37.3687 13.1827 37.2128 13.2079 37.0585 13.2299C36.9041 13.252 36.7703 13.2708 36.6569 13.2866C36.4019 13.3212 36.1736 13.3779 35.9721 13.4567C35.7705 13.5354 35.6115 13.6456 35.495 13.7873C35.3785 13.9258 35.3202 14.1053 35.3202 14.3258C35.3202 14.6407 35.4352 14.8784 35.665 15.0391C35.895 15.1996 36.1878 15.2799 36.5437 15.2799ZM41.6496 16.3899V9.13471H43.3075V10.3439H43.3832C43.5154 9.9251 43.7422 9.60232 44.0633 9.3756C44.3877 9.14573 44.7577 9.03079 45.1734 9.03079C45.2678 9.03079 45.3733 9.03551 45.4898 9.04496C45.6095 9.05126 45.7087 9.06227 45.7874 9.07802V10.6509C45.715 10.6257 45.6 10.6037 45.4425 10.5848C45.2882 10.5628 45.1387 10.5517 44.9938 10.5517C44.6821 10.5517 44.4018 10.6194 44.153 10.7548C43.9074 10.8871 43.7138 11.0713 43.5721 11.3075C43.4304 11.5437 43.3595 11.816 43.3595 12.1247V16.3899H41.6496ZM50.9359 9.13471V10.4573H46.7651V9.13471H50.9359ZM47.7949 7.39648H49.5047V14.2076C49.5047 14.4376 49.5393 14.6139 49.6087 14.7367C49.681 14.8563 49.7755 14.9383 49.892 14.9824C50.0086 15.0264 50.1377 15.0484 50.2793 15.0484C50.3864 15.0484 50.484 15.0405 50.5722 15.0249C50.6635 15.0091 50.7328 14.9949 50.78 14.9824L51.0682 16.3191C50.9769 16.3506 50.8462 16.3852 50.6761 16.4229C50.5093 16.4608 50.3046 16.4828 50.0621 16.4891C49.6338 16.5017 49.2481 16.4371 48.9048 16.2954C48.5616 16.1506 48.2893 15.9271 48.0877 15.6248C47.8893 15.3224 47.7917 14.9445 47.7949 14.4911V7.39648ZM54.0759 12.1388V16.3899H52.3659V9.13471H54.0002V10.3675H54.0853C54.2522 9.9613 54.5183 9.63854 54.8835 9.39922C55.252 9.1599 55.707 9.04024 56.2486 9.04024C56.7493 9.04024 57.1854 9.1473 57.557 9.36143C57.9318 9.57555 58.2215 9.88574 58.4262 10.2919C58.6339 10.6982 58.7363 11.191 58.7331 11.7704V16.3899H57.0232V12.0349C57.0232 11.55 56.8973 11.1705 56.6454 10.8965C56.3966 10.6226 56.0518 10.4856 55.611 10.4856C55.3118 10.4856 55.0457 10.5517 54.8127 10.684C54.5829 10.8131 54.4017 11.0005 54.2695 11.2461C54.1403 11.4917 54.0759 11.7893 54.0759 12.1388ZM63.6833 16.5316C62.9559 16.5316 62.3277 16.3804 61.7986 16.0781C61.2728 15.7728 60.8681 15.3413 60.5847 14.784C60.3014 14.2234 60.1597 13.5637 60.1597 12.8048C60.1597 12.0585 60.3014 11.4035 60.5847 10.8399C60.8713 10.2731 61.2712 9.83219 61.7845 9.5173C62.2977 9.19926 62.9008 9.04024 63.5936 9.04024C64.0407 9.04024 64.4626 9.11266 64.8594 9.25751C65.2593 9.39922 65.612 9.61965 65.9175 9.9188C66.2261 10.2179 66.4686 10.599 66.6449 11.0619C66.8213 11.5216 66.9094 12.0696 66.9094 12.7057V13.2299H60.9626V12.0775H65.2704C65.2672 11.7499 65.1963 11.4586 65.0578 11.2036C64.9193 10.9454 64.7256 10.7423 64.4768 10.5943C64.2312 10.4463 63.9447 10.3723 63.6171 10.3723C63.2677 10.3723 62.9606 10.4573 62.6961 10.6273C62.4315 10.7942 62.2254 11.0146 62.0774 11.2886C61.9325 11.5594 61.8585 11.857 61.8553 12.1813V13.1874C61.8553 13.6093 61.9325 13.9715 62.0867 14.2738C62.241 14.573 62.4568 14.8028 62.7339 14.9634C63.011 15.1209 63.3353 15.1996 63.707 15.1996C63.9557 15.1996 64.1808 15.165 64.3824 15.0957C64.5839 15.0233 64.7586 14.9178 64.9066 14.7792C65.0546 14.6407 65.1665 14.469 65.2421 14.2643L66.8385 14.4439C66.7378 14.8658 66.5457 15.2343 66.2623 15.5491C65.9821 15.8609 65.6231 16.1034 65.1854 16.2765C64.7477 16.4466 64.247 16.5316 63.6833 16.5316ZM68.356 16.3899V9.13471H70.0139V10.3439H70.0895C70.2217 9.9251 70.4485 9.60232 70.7696 9.3756C71.0939 9.14573 71.464 9.03079 71.8797 9.03079C71.9742 9.03079 72.0797 9.03551 72.1961 9.04496C72.3158 9.05126 72.415 9.06227 72.4937 9.07802V10.6509C72.4213 10.6257 72.3063 10.6037 72.1489 10.5848C71.9946 10.5628 71.845 10.5517 71.7001 10.5517C71.3885 10.5517 71.1081 10.6194 70.8594 10.7548C70.6138 10.8871 70.4201 11.0713 70.2784 11.3075C70.1367 11.5437 70.0658 11.816 70.0658 12.1247V16.3899H68.356Z\" fill=\"white\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1755\">\\n<rect width=\"80\" height=\"21.71\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1755\">\\n<rect width=\"80\" height=\"21.71\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1755\">\\n<rect width=\"80\" height=\"21.7143\" fill=\"white\" transform=\"translate(0 0.582764)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pglqxe\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"View Wishlist\"})}),className:\"framer-18z3m4\",\"data-framer-name\":\"View Wishlist\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hqxoi4\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.584961\" width=\"35\" height=\"35\" rx=\"17.5\" fill=\"#EDF2F7\"/>\\n<g clip-path=\"url(#clip0_17_1763)\">\\n<g clip-path=\"url(#clip1_17_1763)\">\\n<g clip-path=\"url(#clip2_17_1763)\">\\n<path d=\"M12.0623 7.58496L8.3125 11.3348V24.8352H12.8131V28.585L16.5629 24.8352H19.5606L26.3121 18.085V7.58496H12.0623ZM24.812 17.3355L21.8129 20.3345H18.8125L16.1875 22.9595V20.3345H12.8131V9.08514H24.812V17.3355Z\" fill=\"#0B0B2B\"/>\\n<path d=\"M22.5625 11.7102H21.0624V16.2081H22.5625V11.7102ZM18.4374 11.7102H16.9372V16.2081H18.4374V11.7102Z\" fill=\"#0B0B2B\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1763\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(7 7.58496)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1763\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(7 7.58496)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1763\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(7 7.58496)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hSv6xgmOswpFqqvteHgYcx1XH9A.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hSv6xgmOswpFqqvteHgYcx1XH9A.webp\"},className:\"framer-utwt5w\",\"data-border\":true,\"data-framer-name\":\"67f04b84ea43cd7e0fe79122_twitch_156195270.webp\"})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c3g6yy hidden-140azaa\",\"data-framer-name\":\"card2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pwoawb\",\"data-framer-name\":\"648739118455a30988d78ef9_Gradient_Background.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"81\" viewBox=\"0 0 240 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1771)\">\\n<g clip-path=\"url(#clip1_17_1771)\">\\n<g clip-path=\"url(#clip2_17_1771)\">\\n<path d=\"M240 -11.9973H0V93.167H240V-11.9973Z\" fill=\"url(#paint0_linear_17_1771)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1771\" x1=\"240\" y1=\"-11.9973\" x2=\"-5.80299\" y2=\"77.1702\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1771\">\\n<path d=\"M0 12.585C0 5.95754 5.37258 0.584961 12 0.584961H228C234.627 0.584961 240 5.95754 240 12.585V80.585H0V12.585Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1771\">\\n<rect width=\"240\" height=\"80\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1771\">\\n<rect width=\"240\" height=\"105.164\" fill=\"white\" transform=\"translate(0 -11.9973)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Mico\"})}),className:\"framer-11hgwdx\",\"data-framer-name\":\"Mico\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"@mico\"})}),className:\"framer-1krqmq0\",\"data-framer-name\":\"@mico\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eGa2leE9dbCttlUz64AsdTYuKGM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eGa2leE9dbCttlUz64AsdTYuKGM.png\"},className:\"framer-hkms50\",\"data-framer-name\":\"Throne Partner Creator badge\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ity12q\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Txt Me\"})}),className:\"framer-1dz07nl\",\"data-framer-name\":\"Txt Me\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12wsr68\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.584961\" width=\"35\" height=\"35\" rx=\"17.5\" fill=\"#EDF2F7\"/>\\n<g clip-path=\"url(#clip0_17_1784)\">\\n<path d=\"M15.5257 15.5494V14.6503C15.2177 14.6092 14.9046 14.5835 14.5812 14.5835C10.7263 14.5784 7.59009 17.7173 7.59009 21.5805C7.59009 23.9488 8.77067 26.0448 10.5775 27.3137C9.41229 26.0653 8.69881 24.3855 8.69881 22.5463C8.69881 18.7396 11.7478 15.6367 15.5257 15.5494Z\" fill=\"#25F4EE\"/>\\n<path d=\"M15.6952 25.7414C17.4147 25.7414 18.8211 24.3698 18.8828 22.6642L18.8879 7.42186H21.6699C21.6135 7.10849 21.5827 6.78484 21.5827 6.45605H17.7843L17.7791 21.6984C17.7176 23.404 16.3111 24.7756 14.5916 24.7756C14.0578 24.7756 13.5547 24.642 13.1082 24.4057C13.683 25.2123 14.6275 25.7414 15.6952 25.7414Z\" fill=\"#25F4EE\"/>\\n<path d=\"M26.8694 12.5952V11.7476C25.8069 11.7476 24.8213 11.4341 23.9898 10.8896C24.7289 11.7373 25.7299 12.3537 26.8694 12.5952Z\" fill=\"#25F4EE\"/>\\n<path d=\"M23.9899 10.8895C23.1789 9.95969 22.6913 8.7473 22.6913 7.42188H21.675C21.9367 8.87059 22.7991 10.1138 23.9899 10.8895Z\" fill=\"#FE2C55\"/>\\n<path d=\"M14.5866 18.3797C12.826 18.3797 11.3939 19.813 11.3939 21.5751C11.3939 22.8029 12.092 23.8715 13.1083 24.4057C12.7285 23.8818 12.5026 23.2396 12.5026 22.5409C12.5026 20.7788 13.9347 19.3455 15.6953 19.3455C16.0238 19.3455 16.342 19.402 16.6398 19.4945V15.6107C16.3318 15.5696 16.0187 15.5439 15.6953 15.5439C15.6388 15.5439 15.5875 15.549 15.5311 15.549V18.5287C15.2282 18.4362 14.9151 18.3797 14.5866 18.3797Z\" fill=\"#FE2C55\"/>\\n<path d=\"M26.8697 12.5952V15.5492C24.8986 15.5492 23.0713 14.9173 21.5827 13.8488V21.5804C21.5827 25.4384 18.4465 28.5825 14.5865 28.5825C13.098 28.5825 11.7121 28.1099 10.5777 27.3136C11.8558 28.6853 13.678 29.5483 15.6952 29.5483C19.5501 29.5483 22.6915 26.4094 22.6915 22.5461V14.8145C24.1801 15.8831 26.0074 16.515 27.9784 16.515V12.7134C27.5935 12.7134 27.2239 12.6723 26.8697 12.5952Z\" fill=\"#FE2C55\"/>\\n<path d=\"M21.5827 21.5803V13.8486C23.0713 14.9172 24.8986 15.5491 26.8697 15.5491V12.5951C25.7302 12.3537 24.7292 11.7372 23.9901 10.8895C22.7993 10.1138 21.942 8.87059 21.67 7.42188H18.8879L18.8828 22.6642C18.8212 24.3698 17.4147 25.7414 15.6952 25.7414C14.6275 25.7414 13.6882 25.2123 13.1031 24.4109C12.0867 23.8714 11.3886 22.808 11.3886 21.5803C11.3886 19.8181 12.8207 18.3848 14.5814 18.3848C14.9099 18.3848 15.2281 18.4414 15.5258 18.5338V15.5542C11.7479 15.6364 8.69897 18.7393 8.69897 22.546C8.69897 24.3852 9.41246 26.0599 10.5776 27.3134C11.712 28.1097 13.0979 28.5823 14.5865 28.5823C18.4413 28.5823 21.5827 25.4383 21.5827 21.5803Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1784\">\\n<rect width=\"21.6\" height=\"24\" fill=\"white\" transform=\"translate(7 5.75488)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dSMj6Rj8eP2NXs2yqPRztsIeeZo.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dSMj6Rj8eP2NXs2yqPRztsIeeZo.webp\"},className:\"framer-bud958\",\"data-border\":true,\"data-framer-name\":\"67f04ad92d78110e3cd4636d_XTGcFhs4zsg2hgmDIo9lQuVFQLR2%20(1).webp\"})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-8bg4q7 hidden-140azaa\",\"data-framer-name\":\"card3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7of2t2\",\"data-framer-name\":\"6491628cc1eb2dea6908377c_Gradient_Warm.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"81\" viewBox=\"0 0 240 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1805)\">\\n<g clip-path=\"url(#clip1_17_1805)\">\\n<g clip-path=\"url(#clip2_17_1805)\">\\n<path d=\"M244.159 0.584961H-4.15863V80.585H244.159V0.584961Z\" fill=\"url(#paint0_linear_17_1805)\"/>\\n<path d=\"M244.159 0.584961H-4.15863V80.585H244.159V0.584961Z\" fill=\"url(#paint1_linear_17_1805)\"/>\\n<path d=\"M244.159 0.584961H-4.15863V80.585H244.159V0.584961Z\" fill=\"url(#paint2_linear_17_1805)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1805\" x1=\"120\" y1=\"0.584961\" x2=\"120\" y2=\"80.585\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#3B2616\"/>\\n<stop offset=\"1\" stop-color=\"#130C06\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_17_1805\" x1=\"-6.09861\" y1=\"78.8202\" x2=\"174.036\" y2=\"-79.3001\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4CA6FF\"/>\\n<stop offset=\"0.25\" stop-color=\"#4D4DFF\"/>\\n<stop offset=\"0.5\" stop-color=\"#990AFF\"/>\\n<stop offset=\"0.75\" stop-color=\"#D21EB4\"/>\\n<stop offset=\"1\" stop-color=\"#FFC400\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_17_1805\" x1=\"244.159\" y1=\"0.584968\" x2=\"12.7125\" y2=\"114.779\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1805\">\\n<path d=\"M0 12.585C0 5.95754 5.37258 0.584961 12 0.584961H228C234.627 0.584961 240 5.95754 240 12.585V80.585H0V12.585Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1805\">\\n<rect width=\"240\" height=\"80\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1805\">\\n<rect width=\"248.317\" height=\"80\" fill=\"white\" transform=\"translate(-4.15863 0.584961)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"hitscanhan\"})}),className:\"framer-uiya52\",\"data-framer-name\":\"hitscanhan\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"@hitscanhan\"})}),className:\"framer-21cz38\",\"data-framer-name\":\"@hitscanhan\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eGa2leE9dbCttlUz64AsdTYuKGM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eGa2leE9dbCttlUz64AsdTYuKGM.png\"},className:\"framer-wl2mai\",\"data-framer-name\":\"Throne Partner Creator badge\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ngmnny\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Txt Me\"})}),className:\"framer-zwlgtq\",\"data-framer-name\":\"Txt Me\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w01osr\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.584961\" width=\"35\" height=\"35\" rx=\"17.5\" fill=\"#EDF2F7\"/>\\n<path d=\"M28.0743 14.0116C28.0743 11.3408 25.9877 9.17081 23.5673 8.37793C20.5627 7.41812 16.5566 7.54331 13.6771 8.92043C10.13 10.5479 9.04501 14.1785 9.00328 17.7674C8.96155 20.7302 9.25367 28.5339 13.6771 28.6174C16.9321 28.6591 17.4329 24.4443 18.9352 22.3995C20.0202 20.9389 21.3973 20.5633 23.1083 20.1043C26.0712 19.3949 28.0743 17.0997 28.0743 14.0116Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TYnqVvGcMgZin7m8Ml7ta3pbazs.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TYnqVvGcMgZin7m8Ml7ta3pbazs.jpg\"},className:\"framer-wwzx0o\",\"data-border\":true,\"data-framer-name\":\"67f04a76604b3c14610d02e7_oBW35Tml_400x400.jpg\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-owyqbd\",\"data-framer-name\":\"card4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1the1te\",\"data-framer-name\":\"648739118455a30988d78ef9_Gradient_Background.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"81\" viewBox=\"0 0 240 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1824)\">\\n<g clip-path=\"url(#clip1_17_1824)\">\\n<g clip-path=\"url(#clip2_17_1824)\">\\n<path d=\"M240 -11.9973H0V93.167H240V-11.9973Z\" fill=\"url(#paint0_linear_17_1824)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1824\" x1=\"240\" y1=\"-11.9973\" x2=\"-5.80299\" y2=\"77.1702\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1824\">\\n<path d=\"M0 12.585C0 5.95754 5.37258 0.584961 12 0.584961H228C234.627 0.584961 240 5.95754 240 12.585V80.585H0V12.585Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1824\">\\n<rect width=\"240\" height=\"80\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1824\">\\n<rect width=\"240\" height=\"105.164\" fill=\"white\" transform=\"translate(0 -11.9973)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Sunny\"})}),className:\"framer-tdopj2\",\"data-framer-name\":\"Sunny\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"@sunnylady\"})}),className:\"framer-abin0d\",\"data-framer-name\":\"@sunnylady\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cHRMs8Feobmqd1xKPCozzK9IrGo.png\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1871.2+0+0+0+259+0+0+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cHRMs8Feobmqd1xKPCozzK9IrGo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cHRMs8Feobmqd1xKPCozzK9IrGo.png\"},className:\"framer-14eib52\",\"data-framer-name\":\"Throne Partner Creator badge\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11jv6qy\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Txt Me\"})}),className:\"framer-1qk2pte\",\"data-framer-name\":\"Txt Me\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hfpn85\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.584961\" width=\"35\" height=\"35\" rx=\"17.5\" fill=\"#EDF2F7\"/>\\n<g clip-path=\"url(#clip0_17_1837)\">\\n<path d=\"M23.051 9.69531H25.9321L19.6392 16.9359L27.0694 26.7544H21.2314L16.6823 20.8027L11.4509 26.7544H8.56976L15.3176 19.0209L8.19067 9.69531H14.1803L18.3124 15.1542L23.051 9.69531ZM22.0275 25.0106H23.6197L13.3084 11.3254H11.5646L22.0275 25.0106Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1837\">\\n<rect width=\"18.8787\" height=\"17.0591\" fill=\"white\" transform=\"translate(8.19067 9.69531)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wf7KcKzUMpbuHhHcmuuJkUemHg.webp\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1871.2+0+0+0+259+0+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wf7KcKzUMpbuHhHcmuuJkUemHg.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wf7KcKzUMpbuHhHcmuuJkUemHg.webp\"},className:\"framer-qufrbj\",\"data-border\":true,\"data-framer-name\":\"67f04b348e2ef18ade331652_twitch_38433052.webp\"})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-q3eq9l\",\"data-framer-name\":\"card5\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.txt.com/fan-portal-access\",motionChild:true,nodeId:\"IzivTXaG2\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-6h81f5 framer-lux5qc\",\"data-framer-name\":\"Paragraph+Background+Shadow\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Is your\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"favorite\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"creator on\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"TXT?\"})]}),className:\"framer-181ockv\",\"data-framer-name\":\"Is your favorite creator on TXT?\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Creators ->\"})]}),className:\"framer-f34b27\",\"data-framer-name\":\"Discover Creators ->\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:[\"Take a look\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\"},children:\" ->\"})]})}),className:\"framer-1rrht9y\",\"data-framer-name\":\"Take a look ->\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-5369fq\",\"data-framer-name\":\"card6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rryti3\",\"data-framer-name\":\"648739118455a30988d78ef9_Gradient_Background.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"81\" viewBox=\"0 0 240 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1848)\">\\n<g clip-path=\"url(#clip1_17_1848)\">\\n<g clip-path=\"url(#clip2_17_1848)\">\\n<path d=\"M240 -11.9973H0V93.167H240V-11.9973Z\" fill=\"url(#paint0_linear_17_1848)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1848\" x1=\"240\" y1=\"-11.9973\" x2=\"-5.80299\" y2=\"77.1702\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1848\">\\n<path d=\"M0 12.585C0 5.95754 5.37258 0.584961 12 0.584961H228C234.627 0.584961 240 5.95754 240 12.585V80.585H0V12.585Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1848\">\\n<rect width=\"240\" height=\"80\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1848\">\\n<rect width=\"240\" height=\"105.164\" fill=\"white\" transform=\"translate(0 -11.9973)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Chainbrain\"})}),className:\"framer-czpmc4\",\"data-framer-name\":\"Chainbrain\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"@chainbrain\"})}),className:\"framer-dyppky\",\"data-framer-name\":\"@chainbrain\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cHRMs8Feobmqd1xKPCozzK9IrGo.png\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1871.2+0+0+0+259+0+684+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cHRMs8Feobmqd1xKPCozzK9IrGo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+199.8571),pixelHeight:88,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cHRMs8Feobmqd1xKPCozzK9IrGo.png\"},className:\"framer-1snu3kr\",\"data-framer-name\":\"Throne Partner Creator badge\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4jzty\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Txt Me\"})}),className:\"framer-erm29k\",\"data-framer-name\":\"Txt Me\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k00i8d\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.584961\" width=\"35\" height=\"35\" rx=\"17.5\" fill=\"#EDF2F7\"/>\\n<g clip-path=\"url(#clip0_17_1861)\">\\n<g clip-path=\"url(#clip1_17_1861)\">\\n<g clip-path=\"url(#clip2_17_1861)\">\\n<mask id=\"mask0_17_1861\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"7\" y=\"7\" width=\"21\" height=\"21\">\\n<path d=\"M27.6235 7.76758H7.63672V27.7544H27.6235V7.76758Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_17_1861)\">\\n<path d=\"M24.1437 12.4211C24.1437 11.7576 23.6061 11.2219 22.945 11.2219C22.284 11.2219 21.746 11.7576 21.746 12.4211C21.746 13.082 22.284 13.6177 22.945 13.6177C23.6061 13.6177 24.1437 13.082 24.1437 12.4211Z\" fill=\"url(#paint0_linear_17_1861)\"/>\\n<path d=\"M25.7409 21.7811C25.6965 22.7544 25.5337 23.2832 25.3986 23.6343C25.2171 24.1 25.0006 24.433 24.6494 24.7822C24.3021 25.1315 23.9691 25.3474 23.5035 25.5271C23.1524 25.6642 22.6215 25.8274 21.6483 25.8738C20.5962 25.9201 20.2845 25.93 17.6164 25.93C14.9508 25.93 14.6366 25.9201 13.5845 25.8738C12.6113 25.8274 12.083 25.6642 11.7318 25.5271C11.2637 25.3474 10.9332 25.1315 10.584 24.7822C10.2323 24.433 10.0157 24.1 9.83668 23.6343C9.7015 23.2832 9.53629 22.7544 9.49433 21.7811C9.44306 20.729 9.43367 20.4124 9.43367 17.7497C9.43367 15.0817 9.44306 14.7675 9.49433 13.7153C9.53629 12.7421 9.7015 12.2139 9.83668 11.8597C10.0157 11.3945 10.2323 11.0636 10.584 10.7143C10.9332 10.3656 11.2637 10.149 11.7318 9.96754C12.083 9.82992 12.6113 9.66911 13.5845 9.62275C14.6366 9.57636 14.9508 9.56453 17.6164 9.56453C20.2845 9.56453 20.5962 9.57636 21.6483 9.62275C22.6215 9.66911 23.1524 9.82992 23.5035 9.96754C23.9691 10.149 24.3021 10.3656 24.6494 10.7143C25.0006 11.0636 25.2171 11.3945 25.3986 11.8597C25.5337 12.2139 25.6965 12.7421 25.7409 13.7153C25.7898 14.7675 25.8015 15.0817 25.8015 17.7497C25.8015 20.4124 25.7898 20.729 25.7409 21.7811ZM27.5379 13.6335C27.4891 12.57 27.3213 11.8434 27.0723 11.2106C26.8187 10.554 26.4788 9.99761 25.9224 9.44122C25.3685 8.8873 24.8122 8.54743 24.1556 8.29094C23.5202 8.0443 22.7962 7.8746 21.7322 7.82825C20.6682 7.77694 20.3284 7.76758 17.6164 7.76758C14.9069 7.76758 14.5646 7.77694 13.5006 7.82825C12.4391 7.8746 11.7155 8.0443 11.0772 8.29094C10.4232 8.54743 9.86675 8.8873 9.31284 9.44122C8.75644 9.99761 8.41657 10.554 8.16056 11.2106C7.91392 11.8434 7.74622 12.57 7.69491 13.6335C7.64856 14.6974 7.63672 15.0378 7.63672 17.7497C7.63672 20.4593 7.64856 20.7991 7.69491 21.8631C7.74622 22.9245 7.91392 23.6507 8.16056 24.2864C8.41657 24.9405 8.75644 25.4995 9.31284 26.0534C9.86675 26.6073 10.4232 26.9496 11.0772 27.2056C11.7155 27.4522 12.4391 27.62 13.5006 27.6687C14.5646 27.7176 14.9069 27.7295 17.6164 27.7295C20.3284 27.7295 20.6682 27.7176 21.7322 27.6687C22.7962 27.62 23.5202 27.4522 24.1556 27.2056C24.8122 26.9496 25.3685 26.6073 25.9224 26.0534C26.4788 25.4995 26.8187 24.9405 27.0723 24.2864C27.3213 23.6507 27.4891 22.9245 27.5379 21.8631C27.5868 20.7991 27.5986 20.4593 27.5986 17.7497C27.5986 15.0378 27.5868 14.6974 27.5379 13.6335Z\" fill=\"url(#paint1_linear_17_1861)\"/>\\n<path d=\"M17.6164 21.0739C15.78 21.0739 14.2899 19.5862 14.2899 17.7497C14.2899 15.9104 15.78 14.4208 17.6164 14.4208C19.4534 14.4208 20.9455 15.9104 20.9455 17.7497C20.9455 19.5862 19.4534 21.0739 17.6164 21.0739ZM17.6164 12.6213C14.7856 12.6213 12.4929 14.9189 12.4929 17.7497C12.4929 20.5781 14.7856 22.8733 17.6164 22.8733C20.4473 22.8733 22.7424 20.5781 22.7424 17.7497C22.7424 14.9189 20.4473 12.6213 17.6164 12.6213Z\" fill=\"url(#paint2_linear_17_1861)\"/>\\n</g>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1861\" x1=\"7.8167\" y1=\"27.5231\" x2=\"25.9359\" y2=\"9.40394\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD521\"/>\\n<stop offset=\"0.05\" stop-color=\"#FFD521\"/>\\n<stop offset=\"0.501119\" stop-color=\"#F50000\"/>\\n<stop offset=\"0.95\" stop-color=\"#B900B4\"/>\\n<stop offset=\"0.950079\" stop-color=\"#B900B4\"/>\\n<stop offset=\"1\" stop-color=\"#B900B4\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_17_1861\" x1=\"7.81677\" y1=\"27.5479\" x2=\"25.9509\" y2=\"9.41385\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD521\"/>\\n<stop offset=\"0.05\" stop-color=\"#FFD521\"/>\\n<stop offset=\"0.501119\" stop-color=\"#F50000\"/>\\n<stop offset=\"0.95\" stop-color=\"#B900B4\"/>\\n<stop offset=\"0.950079\" stop-color=\"#B900B4\"/>\\n<stop offset=\"1\" stop-color=\"#B900B4\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_17_1861\" x1=\"7.8215\" y1=\"27.5485\" x2=\"25.9512\" y2=\"9.41872\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD521\"/>\\n<stop offset=\"0.05\" stop-color=\"#FFD521\"/>\\n<stop offset=\"0.501119\" stop-color=\"#F50000\"/>\\n<stop offset=\"0.95\" stop-color=\"#B900B4\"/>\\n<stop offset=\"0.950079\" stop-color=\"#B900B4\"/>\\n<stop offset=\"1\" stop-color=\"#B900B4\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1861\">\\n<rect width=\"19.9868\" height=\"19.9868\" fill=\"white\" transform=\"translate(7.63672 7.76758)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1861\">\\n<rect width=\"19.9868\" height=\"19.9868\" fill=\"white\" transform=\"translate(7.63672 7.76758)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1861\">\\n<rect width=\"19.9868\" height=\"19.9868\" fill=\"white\" transform=\"translate(7.63672 7.76758)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jVEKW2VMRtEJepyY8lXmQvUlxc.webp\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1871.2+0+0+0+259+0+684+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jVEKW2VMRtEJepyY8lXmQvUlxc.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jVEKW2VMRtEJepyY8lXmQvUlxc.webp\"},className:\"framer-g1pfxq\",\"data-border\":true,\"data-framer-name\":\"67f04aaecec9a6c9a0ccce54_twitch_38547166.webp\"})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lhtwnu hidden-140azaa\",\"data-framer-name\":\"card7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rmivq5\",\"data-framer-name\":\"648739118455a30988d78ef9_Gradient_Background.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"81\" viewBox=\"0 0 240 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1874)\">\\n<g clip-path=\"url(#clip1_17_1874)\">\\n<g clip-path=\"url(#clip2_17_1874)\">\\n<path d=\"M240 -11.9973H0V93.167H240V-11.9973Z\" fill=\"url(#paint0_linear_17_1874)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_1874\" x1=\"240\" y1=\"-11.9973\" x2=\"-5.80299\" y2=\"77.1702\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_1874\">\\n<path d=\"M0 12.585C0 5.95754 5.37258 0.584961 12 0.584961H228C234.627 0.584961 240 5.95754 240 12.585V80.585H0V12.585Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1874\">\\n<rect width=\"240\" height=\"80\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1874\">\\n<rect width=\"240\" height=\"105.164\" fill=\"white\" transform=\"translate(0 -11.9973)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"MissOoky\"})}),className:\"framer-10hxaxq\",\"data-framer-name\":\"MissOoky\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"@missooky\"})}),className:\"framer-gdm4hd\",\"data-framer-name\":\"@missooky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qt20b6\",\"data-framer-name\":\"Throne Partner Creator badge\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"23\" viewBox=\"0 0 80 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_1880)\">\\n<g clip-path=\"url(#clip1_17_1880)\">\\n<g clip-path=\"url(#clip2_17_1880)\">\\n<path d=\"M76.6953 0.582764H2.85026C1.27611 0.582764 0 1.85887 0 3.43303V19.0613C0 20.6355 1.27611 21.9116 2.85026 21.9116H76.6953C78.2695 21.9116 79.5456 20.6355 79.5456 19.0613V3.43303C79.5456 1.85887 78.2695 0.582764 76.6953 0.582764Z\" fill=\"#718096\"/>\\n<path d=\"M15.1092 11.5347C15.0635 11.6272 15.0033 11.7108 14.9311 11.7841L12.5407 14.2341C12.4992 14.292 12.4279 14.3285 12.3495 14.3285C12.2712 14.3285 12.1995 14.292 12.1533 14.228L9.7671 11.7837C9.75544 11.7725 9.74284 11.7589 9.73119 11.7454C9.48129 11.4647 9.43327 11.0593 9.60951 10.7137L12.1318 5.7624C12.1808 5.68627 12.2609 5.64331 12.3495 5.64331C12.4382 5.64331 12.5179 5.6858 12.5645 5.75726L15.0928 10.7212C15.2257 10.9813 15.2318 11.2858 15.1092 11.5347ZM12.426 15.8266L6.12814 9.41214L6.10808 9.3916C6.06146 9.35424 6.00784 9.33508 5.95003 9.33508C5.86564 9.33835 5.79151 9.37525 5.74582 9.43596C5.70292 9.49293 5.69034 9.56673 5.70992 9.64518L7.54268 15.9634C7.58651 16.1143 7.65738 16.2544 7.75482 16.3786C7.76648 16.3945 7.77953 16.41 7.79212 16.4249C8.00985 16.6775 8.33808 16.8162 8.67843 16.8162C8.81038 16.8162 8.94418 16.7957 9.0738 16.7518C10.0175 16.4389 11.0054 16.2633 12.0125 16.2311C12.0977 16.2246 12.1827 16.2194 12.267 16.2152C12.3369 16.2114 12.4017 16.1778 12.4437 16.1232C12.4853 16.07 12.5011 16.0026 12.4885 15.9377C12.4806 15.899 12.459 15.8612 12.426 15.8266ZM18.8871 9.37478C18.8073 9.32014 18.7057 9.32341 18.5995 9.38692L18.5733 9.40281L13.158 14.9281C13.068 15.0197 13.0676 15.1634 13.1571 15.255L14.1007 16.2217C14.2126 16.3366 14.3563 16.4151 14.5171 16.4492C14.9451 16.5393 15.3699 16.658 15.7801 16.8013C15.8752 16.8344 15.9745 16.8508 16.0743 16.8508C16.1979 16.8508 16.3214 16.8256 16.4393 16.7751C16.6427 16.692 16.8184 16.5608 16.9476 16.395C17.044 16.2712 17.1159 16.1311 17.1601 15.9789L18.9934 9.6578C19.0008 9.62837 19.0037 9.59896 19.0013 9.57373C19.0013 9.4934 18.9584 9.41962 18.8871 9.37478Z\" fill=\"white\"/>\\n<path d=\"M25.6572 16.3899V6.71631H29.2849C30.028 6.71631 30.6515 6.85486 31.1553 7.13197C31.6623 7.40907 32.0449 7.7901 32.3031 8.27504C32.5644 8.75683 32.6952 9.30474 32.6952 9.9188C32.6952 10.5391 32.5644 11.0902 32.3031 11.572C32.0418 12.0538 31.656 12.4332 31.1459 12.7104C30.6357 12.9843 30.0075 13.1213 29.2612 13.1213H26.857V11.6806H29.025C29.4596 11.6806 29.8154 11.6051 30.0925 11.4539C30.3697 11.3028 30.5744 11.0949 30.7066 10.8304C30.842 10.5659 30.9097 10.262 30.9097 9.9188C30.9097 9.57555 30.842 9.27326 30.7066 9.0119C30.5744 8.75054 30.3681 8.54743 30.0879 8.40257C29.8107 8.25457 29.4533 8.18057 29.0156 8.18057H27.4096V16.3899H25.6572ZM36.0996 16.5363C35.6399 16.5363 35.2257 16.4545 34.8573 16.2907C34.4921 16.1239 34.2024 15.8783 33.9882 15.5539C33.7772 15.2296 33.6717 14.8296 33.6717 14.3541C33.6717 13.9448 33.7473 13.6063 33.8985 13.3386C34.0496 13.0709 34.2559 12.8568 34.5172 12.6962C34.7786 12.5356 35.073 12.4144 35.4005 12.3324C35.7312 12.2474 36.0728 12.186 36.4255 12.1483C36.8506 12.1042 37.1954 12.0648 37.46 12.0301C37.7244 11.9924 37.9165 11.9357 38.0362 11.8601C38.1589 11.7814 38.2204 11.6602 38.2204 11.4964V11.4681C38.2204 11.1123 38.1149 10.8367 37.904 10.6415C37.693 10.4463 37.3891 10.3486 36.9923 10.3486C36.5735 10.3486 36.2412 10.44 35.9956 10.6226C35.7532 10.8052 35.5895 11.0209 35.5044 11.2697L33.9079 11.043C34.0338 10.6021 34.2417 10.2337 34.5314 9.93769C34.8211 9.63854 35.1754 9.41496 35.5941 9.26696C36.013 9.11581 36.4759 9.04024 36.9828 9.04024C37.3324 9.04024 37.6803 9.08118 38.0267 9.16304C38.3731 9.24491 38.6896 9.38032 38.9762 9.56926C39.2627 9.75505 39.4925 10.0085 39.6658 10.3297C39.8421 10.6509 39.9303 11.0524 39.9303 11.5342V16.3899H38.2865V15.3932H38.2298C38.1259 15.5948 37.9795 15.7837 37.7906 15.9601C37.6048 16.1332 37.3701 16.2735 37.0868 16.3804C36.8065 16.4844 36.4775 16.5363 36.0996 16.5363ZM36.5436 15.2799C36.8868 15.2799 37.1844 15.2122 37.4363 15.0768C37.6882 14.9383 37.8819 14.7556 38.0173 14.5289C38.1559 14.3021 38.2251 14.0549 38.2251 13.7873V12.9323C38.1716 12.9764 38.0803 13.0173 37.9512 13.0552C37.8252 13.093 37.6835 13.126 37.526 13.1544C37.3687 13.1827 37.2128 13.2079 37.0585 13.2299C36.9041 13.252 36.7703 13.2708 36.6569 13.2866C36.4019 13.3212 36.1736 13.3779 35.9721 13.4567C35.7705 13.5354 35.6115 13.6456 35.4949 13.7873C35.3785 13.9258 35.3202 14.1053 35.3202 14.3258C35.3202 14.6407 35.4352 14.8784 35.665 15.0391C35.8949 15.1996 36.1877 15.2799 36.5436 15.2799ZM41.6496 16.3899V9.13471H43.3075V10.3439H43.3832C43.5154 9.9251 43.7421 9.60232 44.0633 9.3756C44.3876 9.14573 44.7577 9.03079 45.1733 9.03079C45.2677 9.03079 45.3732 9.03551 45.4898 9.04496C45.6095 9.05126 45.7087 9.06227 45.7874 9.07802V10.6509C45.7149 10.6257 45.6 10.6037 45.4425 10.5848C45.2882 10.5628 45.1387 10.5517 44.9938 10.5517C44.682 10.5517 44.4018 10.6194 44.153 10.7548C43.9074 10.8871 43.7138 11.0713 43.5721 11.3075C43.4304 11.5437 43.3595 11.816 43.3595 12.1247V16.3899H41.6496ZM50.9359 9.13471V10.4573H46.7651V9.13471H50.9359ZM47.7948 7.39648H49.5047V14.2076C49.5047 14.4376 49.5393 14.6139 49.6087 14.7367C49.681 14.8563 49.7755 14.9383 49.892 14.9824C50.0085 15.0264 50.1377 15.0484 50.2793 15.0484C50.3864 15.0484 50.484 15.0405 50.5722 15.0249C50.6635 15.0091 50.7328 14.9949 50.78 14.9824L51.0682 16.3191C50.9769 16.3506 50.8461 16.3852 50.6761 16.4229C50.5092 16.4608 50.3045 16.4828 50.062 16.4891C49.6338 16.5017 49.2481 16.4371 48.9048 16.2954C48.5616 16.1506 48.2892 15.9271 48.0876 15.6248C47.8892 15.3224 47.7916 14.9445 47.7948 14.4911V7.39648ZM54.0759 12.1388V16.3899H52.3659V9.13471H54.0002V10.3675H54.0852C54.2522 9.9613 54.5183 9.63854 54.8835 9.39922C55.252 9.1599 55.7069 9.04024 56.2485 9.04024C56.7492 9.04024 57.1853 9.1473 57.557 9.36143C57.9317 9.57555 58.2215 9.88574 58.4261 10.2919C58.6339 10.6982 58.7363 11.191 58.7331 11.7704V16.3899H57.0232V12.0349C57.0232 11.55 56.8972 11.1705 56.6453 10.8965C56.3965 10.6226 56.0517 10.4856 55.6109 10.4856C55.3117 10.4856 55.0457 10.5517 54.8127 10.684C54.5828 10.8131 54.4017 11.0005 54.2695 11.2461C54.1403 11.4917 54.0759 11.7893 54.0759 12.1388ZM63.6833 16.5316C62.9559 16.5316 62.3276 16.3804 61.7986 16.0781C61.2728 15.7728 60.8681 15.3413 60.5847 14.784C60.3013 14.2234 60.1596 13.5637 60.1596 12.8048C60.1596 12.0585 60.3013 11.4035 60.5847 10.8399C60.8713 10.2731 61.2712 9.83219 61.7844 9.5173C62.2977 9.19926 62.9008 9.04024 63.5936 9.04024C64.0407 9.04024 64.4626 9.11266 64.8594 9.25751C65.2593 9.39922 65.612 9.61965 65.9175 9.9188C66.226 10.2179 66.4685 10.599 66.6449 11.0619C66.8212 11.5216 66.9093 12.0696 66.9093 12.7057V13.2299H60.9626V12.0775H65.2704C65.2672 11.7499 65.1963 11.4586 65.0578 11.2036C64.9193 10.9454 64.7256 10.7423 64.4768 10.5943C64.2312 10.4463 63.9447 10.3723 63.6171 10.3723C63.2676 10.3723 62.9605 10.4573 62.6961 10.6273C62.4315 10.7942 62.2253 11.0146 62.0773 11.2886C61.9324 11.5594 61.8585 11.857 61.8553 12.1813V13.1874C61.8553 13.6093 61.9324 13.9715 62.0867 14.2738C62.241 14.573 62.4568 14.8028 62.7339 14.9634C63.0109 15.1209 63.3353 15.1996 63.7069 15.1996C63.9556 15.1996 64.1808 15.165 64.3824 15.0957C64.5839 15.0233 64.7586 14.9178 64.9066 14.7792C65.0546 14.6407 65.1665 14.469 65.242 14.2643L66.8385 14.4439C66.7378 14.8658 66.5457 15.2343 66.2623 15.5491C65.982 15.8609 65.6231 16.1034 65.1853 16.2765C64.7476 16.4466 64.2469 16.5316 63.6833 16.5316ZM68.356 16.3899V9.13471H70.0139V10.3439H70.0895C70.2217 9.9251 70.4484 9.60232 70.7696 9.3756C71.0939 9.14573 71.464 9.03079 71.8796 9.03079C71.9741 9.03079 72.0796 9.03551 72.1961 9.04496C72.3157 9.05126 72.4149 9.06227 72.4937 9.07802V10.6509C72.4212 10.6257 72.3063 10.6037 72.1489 10.5848C71.9946 10.5628 71.845 10.5517 71.7001 10.5517C71.3884 10.5517 71.1081 10.6194 70.8594 10.7548C70.6138 10.8871 70.4201 11.0713 70.2784 11.3075C70.1367 11.5437 70.0658 11.816 70.0658 12.1247V16.3899H68.356Z\" fill=\"white\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1880\">\\n<rect width=\"80\" height=\"21.71\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1880\">\\n<rect width=\"80\" height=\"21.71\" fill=\"white\" transform=\"translate(0 0.584961)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1880\">\\n<rect width=\"80\" height=\"21.7143\" fill=\"white\" transform=\"translate(0 0.582764)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iu00s8\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"View Wishlist\"})}),className:\"framer-1etbo99\",\"data-framer-name\":\"View Wishlist\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qpf1ev\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.584961\" width=\"35\" height=\"35\" rx=\"17.5\" fill=\"#EDF2F7\"/>\\n<g clip-path=\"url(#clip0_17_1888)\">\\n<g clip-path=\"url(#clip1_17_1888)\">\\n<g clip-path=\"url(#clip2_17_1888)\">\\n<path d=\"M12.0623 7.58496L8.3125 11.3348V24.8352H12.8131V28.585L16.5629 24.8352H19.5606L26.3121 18.085V7.58496H12.0623ZM24.812 17.3355L21.8129 20.3345H18.8125L16.1875 22.9595V20.3345H12.8131V9.08514H24.812V17.3355Z\" fill=\"#0B0B2B\"/>\\n<path d=\"M22.5625 11.7102H21.0624V16.2081H22.5625V11.7102ZM18.4373 11.7102H16.9371V16.2081H18.4373V11.7102Z\" fill=\"#0B0B2B\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_1888\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(7 7.58496)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_1888\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(7 7.58496)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_1888\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(7 7.58496)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2209.2+0+0+0+259+0+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2EtNX3DlttZWlmvhhYXwDqKiHg.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2987.2+182+0+248+40+35),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2EtNX3DlttZWlmvhhYXwDqKiHg.webp\"},className:\"framer-1urkz2z\",\"data-border\":true,\"data-framer-name\":\"67f04b0be8513c4dcd4e5e41_twitch_556677859.webp\"})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{y:(componentViewport?.y||0)+0+2209.2+0+0+0+606},YmLpajpHy:{y:(componentViewport?.y||0)+0+1871.2+0+0+0+1290}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+2987.2+182+0+650,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12qhikn-container\",nodeId:\"haMqEUfOx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{variant:\"kU2dWXrto\"}},children:/*#__PURE__*/_jsx(CTAWhite,{height:\"100%\",id:\"haMqEUfOx\",layoutId:\"haMqEUfOx\",variant:\"oMGsw81V3\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlj7tt\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvziz3\",\"data-framer-name\":\"process\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9hgfwf\",\"data-framer-name\":\"Frame 33\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Easy. Simple. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Easy. Simple. \"})}),className:\"framer-6x7b2n\",\"data-framer-name\":\"Easy. Simple.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Secure!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 11, 43)\"},children:\"Secure!\"})}),className:\"framer-j7lv67\",\"data-framer-name\":\"Secure!\",fonts:[\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-129uf6a\",\"data-styles-preset\":\"dTavWeEB4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Deliver more than just messages. Share photos, videos, audio and exclusive content directly with your fans.\"})}),className:\"framer-xrn40x\",\"data-framer-name\":\"Deliver more than just messages. Share photos, videos, audio and exclusive content directly with your fans.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbqrt1\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qlo5ac\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cq5b0a\",\"data-framer-name\":\"Section 1\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oub4xu\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6wq6mg\",\"data-border\":true,\"data-framer-name\":\"Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"1\"})}),className:\"framer-1nni5e9\",\"data-framer-name\":\"1\",fonts:[\"Inter-Light\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-249f5d19-f3e8-4333-a04e-f5f03574d2cd, rgb(39, 43, 45))\"},children:\"Select Your Price\"})}),className:\"framer-1fhl4jo\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12f47o2\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:5.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:45,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1600,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u8g657\",\"data-framer-name\":\"scrollImage01\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+0+0+0+0+113.2+232+42),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"556px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+0+0+0+0+113.2+232+536-494),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px) * 0.7263)`,src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+0+0+0+0+113.2+232+42),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"556px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"},className:\"framer-1aq5b45\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j7jnrj\",\"data-framer-name\":\"Frame 25\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17f1hha\",\"data-framer-name\":\"Frame 14\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w8clvv\",\"data-framer-name\":\"Frame 26\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNzAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(24, 25, 27)\"},children:\"Lacey Dash\"})}),className:\"framer-x9800x\",\"data-framer-name\":\"Heading 1 \u2192 Viking Barbie\",fonts:[\"GF;SF Pro Text-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17npuqr\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.84995 8.6201C3.70399 7.96262 3.7264 7.27894 3.91511 6.63244C4.10381 5.98593 4.4527 5.39754 4.92942 4.92182C5.40614 4.4461 5.99526 4.09844 6.64216 3.91109C7.28905 3.72374 7.97278 3.70276 8.62995 3.8501C8.99166 3.2844 9.48995 2.81886 10.0789 2.49638C10.6678 2.17391 11.3285 2.00488 11.9999 2.00488C12.6714 2.00488 13.332 2.17391 13.921 2.49638C14.5099 2.81886 15.0082 3.2844 15.3699 3.8501C16.0281 3.70212 16.713 3.72301 17.3609 3.91081C18.0089 4.09862 18.5988 4.44724 19.0758 4.92425C19.5528 5.40126 19.9014 5.99117 20.0892 6.6391C20.277 7.28703 20.2979 7.97193 20.1499 8.6301C20.7156 8.99181 21.1812 9.4901 21.5037 10.079C21.8261 10.668 21.9952 11.3286 21.9952 12.0001C21.9952 12.6715 21.8261 13.3322 21.5037 13.9211C21.1812 14.5101 20.7156 15.0084 20.1499 15.3701C20.2973 16.0273 20.2763 16.711 20.089 17.3579C19.9016 18.0048 19.554 18.5939 19.0782 19.0706C18.6025 19.5473 18.0141 19.8962 17.3676 20.0849C16.7211 20.2736 16.0374 20.2961 15.3799 20.1501C15.0187 20.718 14.52 21.1855 13.9301 21.5094C13.3401 21.8333 12.678 22.0032 12.0049 22.0032C11.3319 22.0032 10.6698 21.8333 10.0798 21.5094C9.48987 21.1855 8.99119 20.718 8.62995 20.1501C7.97278 20.2974 7.28905 20.2765 6.64216 20.0891C5.99526 19.9018 5.40614 19.5541 4.92942 19.0784C4.4527 18.6027 4.10381 18.0143 3.91511 17.3678C3.7264 16.7213 3.70399 16.0376 3.84995 15.3801C3.27991 15.0193 2.81036 14.5203 2.485 13.9293C2.15963 13.3384 1.98901 12.6747 1.98901 12.0001C1.98901 11.3255 2.15963 10.6618 2.485 10.0709C2.81036 9.47992 3.27991 8.98085 3.84995 8.6201Z\" stroke=\"#0086E6\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9 12L11 14L15 10\" stroke=\"#0086E6\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymcsxg\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ox239b\",\"data-border\":true,\"data-framer-name\":\"Overlay+Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(255, 68, 120)\"},children:\"Singer\"})}),className:\"framer-zie51t\",\"data-framer-name\":\"Singer\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qfg7jf\",\"data-border\":true,\"data-framer-name\":\"Background+Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(34, 197, 94)\"},children:\"Fast Responder\"})}),className:\"framer-cfx561\",\"data-framer-name\":\"Fast Responder\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtcmVndWxhcg==\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Welcome to my page. This is my number and i run it! no assistants or anything.\"})}),className:\"framer-mwwb84\",\"data-framer-name\":\"Placeholder\",fonts:[\"GF;SF Pro Text-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5yd2c\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Text Me - $50.00\"})}),className:\"framer-rjxjb1\",\"data-framer-name\":\"Text Me - $50.00\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jeqa4p\",\"data-framer-name\":\"Frame 16\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7l3gn4\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(22, 101, 52)\"},children:\"16 spots left!\"})}),className:\"framer-tiok26\",\"data-framer-name\":\"16 spots left!\",fonts:[\"GF;SF Pro Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f04ukt\",\"data-framer-name\":\"Frame b\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:153,intrinsicWidth:286,svg:'<svg width=\"286\" height=\"153\" viewBox=\"0 0 286 153\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_dd_48_83)\">\\n<rect x=\"0.219727\" y=\"84.4604\" width=\"276.735\" height=\"71.3107\" rx=\"16.6041\" transform=\"rotate(-17.7463 0.219727 84.4604)\" fill=\"white\"/>\\n<rect x=\"1.06933\" y=\"84.8981\" width=\"275.384\" height=\"69.9591\" rx=\"15.9283\" transform=\"rotate(-17.7463 1.06933 84.8981)\" stroke=\"black\" stroke-opacity=\"0.03\" stroke-width=\"1.35156\"/>\\n<g clip-path=\"url(#clip0_48_83)\">\\n<path d=\"M32.6864 85.6923L20.8887 89.4679C18.324 90.2887 16.9103 93.0332 17.731 95.5979L21.5067 107.396C22.3275 109.96 25.0719 111.374 27.6366 110.553L39.4344 106.778C41.9991 105.957 43.4128 103.212 42.592 100.648L38.8164 88.8499C37.9956 86.2852 35.2511 84.8715 32.6864 85.6923Z\" fill=\"url(#paint0_linear_48_83)\"/>\\n<path d=\"M27.9557 91.2298C25.9032 91.8867 24.152 93.1958 23.0875 94.8692C22.0231 96.5425 21.7324 98.4431 22.2795 100.153C22.6373 101.264 23.3342 102.246 24.3026 103.002C25.2709 103.758 26.4778 104.264 27.8058 104.469C27.7193 105.25 27.4668 106.036 27.0588 106.797C28.1403 106.229 29.0807 105.462 29.8068 104.556C30.5738 104.504 31.3399 104.358 32.0817 104.122C34.1342 103.465 35.8853 102.156 36.9498 100.483C38.0143 98.8094 38.305 96.9088 37.7578 95.1992C37.2107 93.4896 35.8706 92.1109 34.0323 91.3665C32.1941 90.6221 30.0083 90.5729 27.9557 91.2298Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M52.5545 95.4604L53.8739 95.0381L52.0146 89.2284L52.1108 89.1975L56.2352 94.2825L57.2318 93.9635L57.6375 87.4288L57.7394 87.3962L59.5987 93.206L60.9125 92.7856L58.2975 84.6145L56.6213 85.1509L56.181 92.221L56.0847 92.2518L51.6156 86.7529L49.9395 87.2893L52.5545 95.4604Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M62.9283 92.1404L68.2172 90.4478L67.8239 89.2191L63.996 90.4441L63.2476 88.1055L66.866 86.9475L66.4945 85.7866L62.8761 86.9446L62.1675 84.7306L65.9954 83.5055L65.6022 82.2768L60.3133 83.9694L62.9283 92.1404Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M72.9314 89.1639C74.8906 88.5369 75.8005 87.147 75.2912 85.5558L75.2894 85.5502C74.8944 84.3157 73.9541 83.855 72.1167 84.0435L71.1792 84.1376C70.0911 84.2486 69.5618 84.0185 69.3769 83.4409L69.3751 83.4352C69.1522 82.7387 69.6618 82.1074 70.5678 81.8175C71.5003 81.5128 72.2512 81.7719 72.5561 82.3735L72.5892 82.4378L73.9878 81.9902L73.9586 81.9184C73.4363 80.6373 71.9923 80.007 70.1802 80.5869C68.4135 81.1523 67.4718 82.5399 67.9393 84.0008L67.9411 84.0065C68.3307 85.224 69.3056 85.7734 71.0884 85.5899L72.0241 85.4902C73.1499 85.3797 73.6887 85.6005 73.8772 86.1894L73.879 86.1951C74.1037 86.8972 73.5687 87.6053 72.5834 87.9206C71.5472 88.2522 70.6717 88.033 70.3845 87.3696L70.3607 87.3148L68.9451 87.7678L68.9761 87.8453C69.5293 89.2226 71.0344 89.771 72.9314 89.1639Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M80.5985 86.7102C82.5578 86.0831 83.4676 84.6933 82.9584 83.1021L82.9566 83.0964C82.5615 81.862 81.6213 81.4013 79.7839 81.5898L78.8464 81.6838C77.7582 81.7949 77.2289 81.5647 77.044 80.9872L77.0422 80.9815C76.8193 80.285 77.3289 79.6537 78.235 79.3638C79.1675 79.0591 79.9183 79.3182 80.2232 79.9198L80.2563 79.9841L81.655 79.5365L81.6257 79.4647C81.1034 78.1836 79.6594 77.5533 77.8474 78.1332C76.0806 78.6986 75.1389 80.0862 75.6064 81.5471L75.6082 81.5528C75.9979 82.7702 76.9728 83.3197 78.7556 83.1362L79.6913 83.0365C80.817 82.9259 81.3558 83.1468 81.5443 83.7357L81.5461 83.7413C81.7708 84.4435 81.2359 85.1516 80.2506 85.4669C79.2143 85.7985 78.3389 85.5793 78.0516 84.9159L78.0279 84.861L76.6122 85.3141L76.6432 85.3916C77.1964 86.7689 78.7016 87.3172 80.5985 86.7102Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M84.7576 85.1544L86.2864 84.6651L86.29 82.3355L89.3138 81.3678L90.6749 83.2607L92.2038 82.7714L86.6896 75.5281L85.0418 76.0555L84.7576 85.1544ZM86.3032 77.3248L86.3995 77.294L88.5908 80.3569L86.2974 81.0909L86.3032 77.3248Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M96.7821 81.5309C98.9622 80.8332 99.9221 79.034 99.2462 76.9219L98.92 75.9026L95.5281 76.9881L95.8851 78.1037L97.8443 77.4767L97.893 77.6483C98.2476 78.8146 97.6464 79.8622 96.4007 80.2609C94.9454 80.7266 93.6566 79.8594 93.0567 77.9851L93.0531 77.9737C92.4623 76.1277 92.9912 74.6788 94.4181 74.2221C95.4657 73.8868 96.3799 74.1686 96.9324 74.9781L96.9675 75.0293L98.4171 74.5654L98.3933 74.5106C97.6048 73.0025 95.8996 72.3559 94.014 72.9593C91.6867 73.7042 90.732 75.8512 91.5675 78.4617L91.5711 78.473C92.4156 81.1118 94.4152 82.2884 96.7821 81.5309Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M101.989 79.6399L107.278 77.9473L106.884 76.7185L103.056 77.9436L102.308 75.6049L105.926 74.4469L105.555 73.2861L101.937 74.4441L101.228 72.23L105.056 71.005L104.663 69.7762L99.3738 71.4688L101.989 79.6399Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M111.992 76.6633C113.951 76.0363 114.861 74.6464 114.352 73.0553L114.35 73.0496C113.955 71.8152 113.015 71.3545 111.177 71.543L110.24 71.637C109.152 71.748 108.622 71.5179 108.437 70.9403L108.436 70.9347C108.213 70.2382 108.722 69.6069 109.628 69.3169C110.561 69.0123 111.312 69.2714 111.617 69.8729L111.65 69.9373L113.048 69.4897L113.019 69.4179C112.497 68.1368 111.053 67.5064 109.241 68.0863C107.474 68.6517 106.532 70.0393 107 71.5003L107.002 71.5059C107.391 72.7234 108.366 73.2729 110.149 73.0894L111.085 72.9897C112.21 72.8791 112.749 73.0999 112.938 73.6888L112.939 73.6945C113.164 74.3967 112.629 75.1047 111.644 75.42C110.608 75.7517 109.732 75.5324 109.445 74.869L109.421 74.8142L108.006 75.2673L108.037 75.3447C108.59 76.7221 110.095 77.2704 111.992 76.6633Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M231.219 36.8767L232.5 36.4665L231.451 33.1874C231.181 32.3431 231.483 31.6562 232.245 31.4124C233.022 31.1636 233.519 31.4926 233.799 32.3678L234.868 35.7087L236.15 35.2985L234.985 31.659C234.557 30.3206 233.63 29.7829 232.374 30.1849C231.561 30.4452 231.137 30.9837 231.062 31.6717L230.975 31.6997L230.7 30.84L229.418 31.2502L231.219 36.8767Z\" fill=\"#8D8D91\"/>\\n<path d=\"M240.13 34.1498C241.813 33.6111 242.485 32.1816 241.902 30.3593L241.898 30.349C241.318 28.5369 239.936 27.7648 238.258 28.3019C236.585 28.8373 235.905 30.2752 236.483 32.0821L236.486 32.0924C237.069 33.9147 238.441 34.6901 240.13 34.1498ZM239.797 33.1099C238.906 33.3949 238.174 32.8631 237.795 31.6791L237.792 31.6688C237.413 30.4848 237.699 29.6216 238.589 29.3366C239.475 29.0532 240.208 29.5902 240.587 30.7742L240.591 30.7845C240.969 31.9685 240.687 32.8249 239.797 33.1099Z\" fill=\"#8D8D91\"/>\\n<path d=\"M244.932 32.4879L246.26 32.0629L246.047 27.6366L246.134 27.6085L248.536 31.3347L249.879 30.9047L249.602 24.7905L248.331 25.1974L248.752 29.722L248.664 29.75L246.22 25.8729L245 26.2633L245.272 30.8357L245.184 30.8637L242.895 26.9372L241.608 27.349L244.932 32.4879Z\" fill=\"#8D8D91\"/>\\n<g clip-path=\"url(#clip1_48_83)\">\\n<path d=\"M30.2912 134.845L26.7253 123.702L28.4549 123.149L36.386 129.072L36.5095 129.032L34.0531 121.357L35.9681 120.744L39.534 131.887L37.8121 132.438L29.8811 126.514L29.7575 126.554L32.2139 134.229L30.2912 134.845Z\" fill=\"white\"/>\\n<path d=\"M45.2309 130.251C42.7214 131.054 40.6615 129.857 39.8015 127.17L39.799 127.162C38.9489 124.506 39.9295 122.277 42.331 121.508C44.7324 120.74 46.7537 121.949 47.5692 124.497L47.7718 125.13L41.8725 127.018C42.38 128.524 43.4802 129.142 44.7852 128.725C45.8276 128.391 46.2541 127.676 46.3159 127.23L46.3217 127.169L48.1518 126.583L48.1509 126.66C48.229 127.836 47.5242 129.517 45.2309 130.251ZM42.836 123.007C41.7627 123.35 41.1919 124.333 41.4752 125.724L45.4828 124.441C44.9092 123.101 43.9093 122.663 42.836 123.007Z\" fill=\"white\"/>\\n<path d=\"M51.8615 127.941L46.8748 120.233L48.8053 119.615L52.2394 125.505L52.3707 125.463L51.9634 118.605L53.7935 118.019L57.4593 123.834L57.5906 123.792L56.9594 117.006L58.8666 116.395L59.282 125.567L57.2666 126.212L53.6647 120.622L53.5335 120.664L53.8537 127.304L51.8615 127.941Z\" fill=\"white\"/>\\n<path d=\"M70.3644 123.237L69.9542 121.955C67.8659 122.479 65.9503 121.866 65.2905 120.017L65.2958 120.007L67.0847 119.426L67.0974 119.439C67.498 120.239 68.2622 120.658 69.46 120.411L68.4616 117.291L68.0381 117.325C65.9079 117.504 64.5402 116.955 64.0262 115.348L64.0212 115.333C63.4553 113.565 64.5311 111.952 66.5019 111.168L66.0868 109.871L66.9902 109.582L67.4054 110.879C69.4649 110.399 71.2403 111.158 71.8757 112.904L71.8782 112.912L70.0892 113.493L70.0766 113.48C69.6871 112.609 68.8707 112.266 67.9021 112.431L68.8609 115.427L69.3255 115.389C71.5404 115.208 72.9192 115.686 73.4529 117.354L73.4579 117.369C74.0658 119.269 72.8646 120.862 70.8576 121.666L71.2678 122.948L70.3644 123.237ZM65.8426 114.614C66.0502 115.263 66.6516 115.572 67.8908 115.508L66.9987 112.72C65.988 113.18 65.6251 113.934 65.8377 114.598L65.8426 114.614ZM71.6513 118.135C71.4166 117.401 70.8584 117.12 69.4318 117.211L70.3634 120.122C71.5359 119.636 71.9009 118.915 71.6563 118.15L71.6513 118.135Z\" fill=\"white\"/>\\n<path d=\"M78.9738 119.265L76.0356 110.083L75.9043 110.126L73.7599 112.974L73.1594 111.098L75.4157 108.12L77.4001 107.485L80.966 118.627L78.9738 119.265Z\" fill=\"white\"/>\\n<path d=\"M83.5353 117.805L83.1053 116.461L85.5693 111.553C86.5935 109.539 86.8378 108.84 86.5635 107.983L86.5561 107.959C86.2274 106.932 85.2875 106.416 84.1293 106.787C82.9478 107.165 82.4021 108.199 82.7703 109.35L82.7725 109.383L80.9168 109.968L80.9017 109.948C80.2369 107.871 81.3939 105.9 83.7181 105.156C85.8879 104.462 87.8703 105.283 88.4708 107.159L88.4782 107.183C88.8834 108.449 88.5947 109.648 87.1891 112.251L85.6494 115.128L85.7013 115.29L90.7436 113.676L91.2724 115.329L83.5353 117.805Z\" fill=\"white\"/>\\n<path d=\"M93.4937 117.861L92.6803 113.005L94.6648 112.37L94.8064 117.441L93.4937 117.861Z\" fill=\"white\"/>\\n<path d=\"M102.295 111.801L101.61 109.662L96.1589 111.407L95.6374 109.778C96.2783 106.806 97.0408 103.736 97.8178 100.95L100.636 100.048L102.991 107.407L104.489 106.928L105.016 108.572L103.518 109.052L104.202 111.191L102.295 111.801ZM97.5005 109.215L101.13 108.054L99.2689 102.24L99.1531 102.277C98.5688 104.387 97.9391 106.862 97.4635 109.1L97.5005 109.215Z\" fill=\"white\"/>\\n<path d=\"M111.362 109.206C109.084 109.935 107.103 109.037 106.37 107.254L106.331 107.156L108.168 106.567L108.193 106.619C108.632 107.483 109.706 107.94 110.848 107.574C112.153 107.156 112.755 105.951 112.335 104.638L112.33 104.623C111.915 103.325 110.712 102.706 109.438 103.114C108.813 103.314 108.331 103.672 108.041 104.174C107.894 104.408 107.778 104.683 107.726 104.972L106.019 105.519L104.472 98.8208L111.159 96.6808L111.683 98.3178L106.548 99.9611L107.324 103.45L107.455 103.408C107.679 102.51 108.4 101.786 109.45 101.45C111.527 100.785 113.527 101.847 114.209 103.979L114.214 103.994C114.956 106.311 113.771 108.435 111.362 109.206Z\" fill=\"white\"/>\\n<path d=\"M119.58 106.269L116.641 97.0884L116.51 97.1304L114.366 99.9788L113.765 98.1025L116.021 95.1246L118.006 94.4895L121.572 105.632L119.58 106.269Z\" fill=\"white\"/>\\n<path d=\"M125.21 104.638C124.507 104.863 123.812 104.498 123.592 103.811C123.372 103.124 123.726 102.423 124.429 102.198C125.139 101.97 125.827 102.338 126.047 103.025C126.267 103.712 125.92 104.411 125.21 104.638Z\" fill=\"white\"/>\\n<path d=\"M128.185 103.515L127.755 102.172L130.219 97.2632C131.243 95.2499 131.488 94.5504 131.213 93.6932L131.206 93.6701C130.877 92.6431 129.937 92.1267 128.779 92.4974C127.598 92.8755 127.052 93.9099 127.42 95.0604L127.422 95.0938L125.567 95.6791L125.552 95.6584C124.887 93.5813 126.044 91.6107 128.368 90.8669C130.538 90.1724 132.52 90.9937 133.121 92.87L133.128 92.8932C133.533 94.1596 133.245 95.3586 131.839 97.9621L130.299 100.838L130.351 101.001L135.393 99.3868L135.922 101.039L128.185 103.515Z\" fill=\"white\"/>\\n<path d=\"M138.09 100.346L139.927 89.4065L139.887 89.283L134.142 91.1215L133.621 89.4923L141.373 87.0112L141.905 88.6714L140.175 99.6783L138.09 100.346Z\" fill=\"white\"/>\\n<path d=\"M153.219 95.6572C151.103 96.3343 149.223 95.0886 148.368 92.4169L148.363 92.4015C147.503 89.7143 148.29 87.6239 150.429 86.9394C151.587 86.5687 152.735 86.8312 153.467 87.6015L153.598 87.5595L152.123 82.9496L154.053 82.3318L157.799 94.0379L155.869 94.6557L155.446 93.3353L155.315 93.3773C155.146 94.4445 154.408 95.2766 153.219 95.6572ZM153.302 93.8429C154.615 93.4227 155.094 92.1286 154.553 90.4375L154.548 90.4221C154.007 88.731 152.855 87.9505 151.55 88.3682C150.245 88.7858 149.773 90.0775 150.317 91.7763L150.322 91.7917C150.865 93.4905 151.989 94.263 153.302 93.8429Z\" fill=\"white\"/>\\n<path d=\"M163.357 92.4465C160.848 93.2496 158.788 92.0531 157.928 89.366L157.925 89.3583C157.075 86.702 158.056 84.4729 160.457 83.7043C162.859 82.9358 164.88 84.1447 165.696 86.6928L165.898 87.326L159.999 89.214C160.506 90.72 161.607 91.3383 162.912 90.9207C163.954 90.5871 164.38 89.8717 164.442 89.4263L164.448 89.3649L166.278 88.7792L166.277 88.8561C166.355 90.0314 165.651 91.7126 163.357 92.4465ZM160.962 85.2026C159.889 85.5461 159.318 86.529 159.602 87.9195L163.609 86.637C163.036 85.2968 162.036 84.8591 160.962 85.2026Z\" fill=\"white\"/>\\n<path d=\"M169.387 93.4196L165.789 82.1769L167.712 81.5615L168.134 82.8819L168.265 82.8399C168.435 81.7728 169.18 80.9382 170.362 80.5601C172.478 79.883 174.368 81.1339 175.223 83.8056L175.228 83.821C176.088 86.5082 175.291 88.5934 173.152 89.2779C171.994 89.6486 170.846 89.3861 170.114 88.6158L169.983 88.6578L171.31 92.8043L169.387 93.4196ZM172.031 87.8491C173.343 87.429 173.808 86.1397 173.266 84.4487L173.261 84.4332C172.718 82.7345 171.591 81.9543 170.279 82.3744C168.974 82.792 168.494 84.0862 169.035 85.7773L169.04 85.7927C169.581 87.4838 170.726 88.2667 172.031 87.8491Z\" fill=\"white\"/>\\n<path d=\"M181.684 86.5812C179.152 87.3918 177.094 86.2286 176.219 83.4952L176.214 83.4797C175.347 80.7694 176.368 78.6125 178.877 77.8094C181.394 77.0038 183.468 78.162 184.337 80.88L184.342 80.8955C185.217 83.629 184.209 85.7732 181.684 86.5812ZM181.185 85.0215C182.521 84.5939 182.944 83.3093 182.376 81.5334L182.371 81.5179C181.803 79.7419 180.702 78.9364 179.374 79.3615C178.038 79.789 177.61 81.0838 178.178 82.8598L178.183 82.8752C178.751 84.6512 179.849 85.449 181.185 85.0215Z\" fill=\"white\"/>\\n<path d=\"M190.338 83.8117C188.192 84.4987 186.578 83.9255 185.959 82.5489L185.954 82.5334L187.861 81.923L187.874 81.936C188.262 82.4586 188.957 82.6875 189.915 82.381C190.872 82.0746 191.398 81.4297 191.195 80.7965L191.19 80.781C191.032 80.2869 190.558 80.0812 189.564 80.1692L188.099 80.2978C186.379 80.4566 185.372 79.9445 184.974 78.7013L184.972 78.6936C184.485 77.1724 185.539 75.6774 187.531 75.0399C189.585 74.3825 191.139 75.0089 191.7 76.3361L191.705 76.3515L189.898 76.9298L189.883 76.9091C189.573 76.4208 188.879 76.1663 187.976 76.4554C187.119 76.7297 186.634 77.3444 186.837 77.9776L186.839 77.9853C186.998 78.4795 187.449 78.6669 188.427 78.5838L189.89 78.4476C191.661 78.2894 192.666 78.7425 193.059 79.9702L193.064 79.9857C193.578 81.5918 192.416 83.147 190.338 83.8117Z\" fill=\"white\"/>\\n<path d=\"M193.113 71.8744C192.48 72.0771 191.802 71.7407 191.599 71.1076C191.399 70.4821 191.753 69.8069 192.387 69.6043C193.012 69.4041 193.692 69.7482 193.893 70.3736C194.095 71.0068 193.739 71.6743 193.113 71.8744ZM195.301 82.0362L192.6 73.5964L194.523 72.9811L197.224 81.4209L195.301 82.0362Z\" fill=\"white\"/>\\n<path d=\"M202.392 79.8094C200.454 80.4297 199.451 80.0356 198.93 78.4063L197.422 73.6961L196.11 74.1162L195.633 72.6259L196.945 72.2058L196.283 70.1364L198.237 69.5112L198.899 71.5806L200.683 71.0097L201.16 72.5L199.376 73.0709L200.737 77.3255C201.007 78.1672 201.453 78.4161 202.256 78.1591C202.526 78.0726 202.67 78.018 202.894 77.9207L203.369 79.4032C203.108 79.5462 202.763 79.6908 202.392 79.8094Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_48_83\" x=\"-3.1011\" y=\"-2.10304\" width=\"291.944\" height=\"158.909\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.10694\"/>\\n<feGaussianBlur stdDeviation=\"1.10694\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_48_83\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.10694\"/>\\n<feGaussianBlur stdDeviation=\"1.66041\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_48_83\" result=\"effect2_dropShadow_48_83\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_48_83\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_48_83\" x1=\"33.2549\" y1=\"107.212\" x2=\"27.7924\" y2=\"90.1433\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0CBD2A\"/>\\n<stop offset=\"1\" stop-color=\"#5BF675\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_48_83\">\\n<rect width=\"22.1388\" height=\"22.1388\" fill=\"white\" transform=\"translate(16.2449 90.9541) rotate(-17.7463)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_48_83\">\\n<rect width=\"250.169\" height=\"15.9636\" fill=\"white\" transform=\"translate(26.3669 122.583) rotate(-17.7463)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-56y9vf\",\"data-framer-name\":\"Frame m\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:124,intrinsicWidth:317,svg:'<svg width=\"317\" height=\"124\" viewBox=\"0 0 317 124\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_dd_48_97)\">\\n<rect x=\"0.159668\" y=\"45.02\" width=\"307.786\" height=\"79.312\" rx=\"18.4672\" transform=\"rotate(-8.28109 0.159668 45.02)\" fill=\"white\"/>\\n<rect x=\"0.925736\" y=\"45.5914\" width=\"306.435\" height=\"77.9605\" rx=\"17.7914\" transform=\"rotate(-8.28109 0.925736 45.5914)\" stroke=\"black\" stroke-opacity=\"0.03\" stroke-width=\"1.35156\"/>\\n<g clip-path=\"url(#clip0_48_97)\">\\n<path d=\"M35.5523 52.3098L21.9188 54.2941C18.9551 54.7255 16.9022 57.4778 17.3335 60.4416L19.3179 74.075C19.7492 77.0387 22.5015 79.0917 25.4653 78.6603L39.0987 76.676C42.0625 76.2446 44.1154 73.4923 43.684 70.5286L41.6997 56.8951C41.2683 53.9314 38.516 51.8785 35.5523 52.3098Z\" fill=\"url(#paint0_linear_48_97)\"/>\\n<path d=\"M29.3491 57.5196C26.9772 57.8649 24.8166 58.9808 23.3428 60.6219C21.8689 62.263 21.2024 64.2948 21.49 66.2705C21.6792 67.5552 22.2642 68.7596 23.1882 69.7664C24.1122 70.7733 25.3437 71.5485 26.7631 72.0167C26.5256 72.857 26.1047 73.6738 25.5179 74.4333C26.8082 74.0081 27.9802 73.3389 28.9425 72.4777C29.7934 72.5614 30.6606 72.5413 31.5175 72.418C33.8894 72.0728 36.05 70.9568 37.5238 69.3157C38.9977 67.6746 39.6642 65.6428 39.3766 63.6671C39.0891 61.6915 37.871 59.9339 35.9905 58.781C34.11 57.6281 31.721 57.1744 29.3491 57.5196Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M55.5622 66.66L57.0868 66.4381L56.1097 59.7243L56.2209 59.7081L59.8155 66.0409L60.9672 65.8733L62.6075 58.7786L62.7253 58.7614L63.7025 65.4752L65.2206 65.2542L63.8463 55.8117L61.9094 56.0937L60.1331 63.7695L60.0219 63.7857L56.1248 56.9356L54.1879 57.2175L55.5622 66.66Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M67.5501 64.9152L73.6619 64.0256L73.4552 62.6057L69.0317 63.2495L68.6384 60.547L72.8198 59.9384L72.6245 58.5969L68.4431 59.2055L68.0707 56.6469L72.4942 56.0031L72.2876 54.5831L66.1758 55.4727L67.5501 64.9152Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M79.0685 63.4793C81.3326 63.1497 82.585 61.7914 82.3173 59.9526L82.3164 59.9461C82.1088 58.5196 81.1615 57.8422 79.1113 57.7129L78.0656 57.6446C76.8516 57.5674 76.3129 57.2181 76.2158 56.5507L76.2148 56.5441C76.0977 55.7393 76.7722 55.1399 77.8192 54.9875C78.898 54.8238 79.6743 55.2454 79.8988 55.9612L79.9233 56.0378L81.5396 55.8025L81.5206 55.7184C81.1819 54.2174 79.713 53.2618 77.6191 53.5666C75.5775 53.8637 74.2905 55.2138 74.5362 56.902L74.5372 56.9086C74.7419 58.3155 75.7109 59.0966 77.7004 59.2213L78.7451 59.2831C80.0003 59.3677 80.5511 59.7085 80.6502 60.3891L80.6511 60.3956C80.7692 61.207 80.0528 61.886 78.9142 62.0517C77.7167 62.226 76.7964 61.8253 76.6026 61.045L76.5866 60.9805L74.9506 61.2186L74.9705 61.3093C75.3255 62.9215 76.8764 63.7983 79.0685 63.4793Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M87.9286 62.1897C90.1927 61.8602 91.4451 60.5018 91.1774 58.6631L91.1765 58.6565C90.9689 57.23 90.0216 56.5526 87.9714 56.4234L86.9257 56.355C85.7117 56.2778 85.173 55.9286 85.0759 55.2611L85.0749 55.2546C84.9578 54.4497 85.6323 53.8503 86.6793 53.698C87.758 53.5343 88.5344 53.9559 88.7589 54.6716L88.7834 54.7482L90.3997 54.513L90.3807 54.4289C90.042 52.9279 88.5731 51.9723 86.4792 52.277C84.4376 52.5742 83.1506 53.9242 83.3963 55.6125L83.3973 55.619C83.602 57.0259 84.571 57.807 86.5605 57.9318L87.6052 57.9935C88.8604 58.0781 89.4112 58.419 89.5102 59.0995L89.5112 59.106C89.6293 59.9174 88.9129 60.5964 87.7743 60.7621C86.5768 60.9364 85.6565 60.5358 85.4627 59.7554L85.4466 59.6909L83.8107 59.929L83.8306 60.0197C84.1855 61.6319 85.7365 62.5088 87.9286 62.1897Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M92.7759 61.2436L94.5427 60.9865L94.9727 58.4314L98.467 57.9228L99.614 60.2484L101.381 59.9912L96.6561 51.0364L94.7519 51.3135L92.7759 61.2436ZM95.9036 52.9367L96.0149 52.9206L97.8586 56.6816L95.2085 57.0673L95.9036 52.9367Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M106.63 59.4677C109.15 59.101 110.532 57.3028 110.177 54.862L110.005 53.6842L106.085 54.2547L106.273 55.5438L108.537 55.2142L108.559 55.4115C108.735 56.7558 107.884 57.7951 106.444 58.0047C104.762 58.2494 103.507 57.0623 103.192 54.8963L103.19 54.8833C102.879 52.75 103.725 51.2571 105.374 51.0171C106.584 50.8409 107.536 51.3172 107.994 52.3064L108.023 52.369L109.698 52.1251L109.682 52.0607C109.093 50.262 107.34 49.2408 105.161 49.5579C102.472 49.9493 101.032 52.1302 101.471 55.1468L101.473 55.1599C101.917 58.2093 103.895 59.8658 106.63 59.4677Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M112.688 58.3455L118.8 57.4559L118.593 56.0359L114.17 56.6798L113.776 53.9772L117.958 53.3687L117.763 52.0272L113.581 52.6358L113.209 50.0772L117.632 49.4334L117.426 48.0134L111.314 48.903L112.688 58.3455Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M124.207 56.9096C126.471 56.58 127.723 55.2217 127.455 53.3829L127.454 53.3764C127.247 51.9498 126.3 51.2725 124.249 51.1432L123.204 51.0749C121.99 50.9977 121.451 50.6484 121.354 49.981L121.353 49.9744C121.236 49.1695 121.91 48.5702 122.957 48.4178C124.036 48.2541 124.812 48.6757 125.037 49.3914L125.061 49.4681L126.678 49.2328L126.659 49.1487C126.32 47.6477 124.851 46.6921 122.757 46.9969C120.716 47.294 119.429 48.6441 119.674 50.3323L119.675 50.3389C119.88 51.7458 120.849 52.5269 122.838 52.6516L123.883 52.7134C125.138 52.798 125.689 53.1388 125.788 53.8193L125.789 53.8259C125.907 54.6373 125.191 55.3162 124.052 55.482C122.855 55.6563 121.934 55.2556 121.741 54.4753L121.725 54.4108L120.089 54.6489L120.109 54.7395C120.464 56.3518 122.014 57.2286 124.207 56.9096Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M262.282 35.0678L263.764 34.8523L263.212 31.0629C263.07 30.0873 263.527 29.389 264.408 29.2608C265.306 29.1301 265.791 29.5819 265.938 30.5932L266.5 34.454L267.981 34.2384L267.369 30.0326C267.144 28.4859 266.226 27.7266 264.774 27.9379C263.834 28.0747 263.271 28.5879 263.063 29.329L262.962 29.3437L262.817 28.3503L261.336 28.5658L262.282 35.0678Z\" fill=\"#8D8D91\"/>\\n<path d=\"M272.557 33.706C274.502 33.4229 275.501 31.9776 275.194 29.8717L275.193 29.8598C274.888 27.7658 273.513 26.666 271.574 26.9482C269.64 27.2296 268.631 28.6826 268.935 30.7707L268.936 30.7826C269.243 32.8884 270.606 33.99 272.557 33.706ZM272.382 32.5044C271.353 32.6542 270.647 31.9368 270.448 30.5686L270.446 30.5567C270.247 29.1885 270.718 28.2937 271.748 28.1439C272.771 27.995 273.477 28.7183 273.677 30.0865L273.678 30.0984C273.877 31.4667 273.411 32.3546 272.382 32.5044Z\" fill=\"#8D8D91\"/>\\n<path d=\"M278.13 32.7613L279.665 32.5379L280.24 27.6429L280.341 27.6282L282.294 32.1552L283.847 31.9292L284.661 25.1709L283.192 25.3848L282.826 30.4255L282.725 30.4402L280.753 25.7398L279.343 25.945L278.805 31.0107L278.703 31.0255L276.91 26.2991L275.423 26.5156L278.13 32.7613Z\" fill=\"#8D8D91\"/>\\n<g clip-path=\"url(#clip1_48_97)\">\\n<path d=\"M23.9347 105.794L22.0606 92.9184L24.0594 92.6275L31.6769 100.576L31.8196 100.555L30.5287 91.6859L32.7416 91.3638L34.6157 104.24L32.6259 104.53L25.0084 96.5807L24.8656 96.6015L26.1566 105.471L23.9347 105.794Z\" fill=\"white\"/>\\n<path d=\"M41.1647 103.487C38.2647 103.909 36.2237 102.22 35.7718 99.1146L35.7705 99.1057C35.3237 96.0361 36.8072 93.77 39.5823 93.366C42.3574 92.9621 44.3538 94.658 44.7824 97.6027L44.8888 98.3344L38.0716 99.3266C38.3529 101.072 39.4468 101.951 40.9548 101.732C42.1594 101.556 42.7582 100.85 42.9074 100.372L42.9251 100.306L45.0399 99.9981L45.0248 100.082C44.8956 101.386 43.8149 103.101 41.1647 103.487ZM39.8623 95.1022C38.622 95.2827 37.8161 96.2565 37.8725 97.8338L42.5036 97.1598C42.1195 95.5846 41.1026 94.9216 39.8623 95.1022Z\" fill=\"white\"/>\\n<path d=\"M48.8612 102.166L44.8005 92.7979L47.0313 92.4732L49.7215 99.5628L49.8732 99.5407L50.6808 91.942L52.7956 91.6342L55.7536 98.6848L55.9053 98.6627L56.4541 91.1018L58.6581 90.781L57.4364 100.918L55.1074 101.257L52.1782 94.4669L52.0265 94.4889L51.1634 101.831L48.8612 102.166Z\" fill=\"white\"/>\\n<path d=\"M70.0205 100.39L69.8049 98.9086C67.4182 99.1011 65.4287 98.0785 65.0431 95.9295L65.0507 95.9193L67.1195 95.609L67.1311 95.6256C67.4243 96.5761 68.1859 97.176 69.5452 97.124L69.0205 93.519L68.5498 93.4782C66.18 93.2855 64.7801 92.4322 64.5099 90.5762L64.5073 90.5584C64.2099 88.515 65.685 86.9426 67.9906 86.443L67.7724 84.9439L68.8164 84.7919L69.0346 86.291C71.3819 86.1407 73.1907 87.299 73.5684 89.3307L73.5697 89.3396L71.5008 89.6498L71.4893 89.6333C71.2213 88.6062 70.3885 88.0804 69.2957 88.0846L69.7996 91.5468L70.3161 91.59C72.7792 91.7965 74.2043 92.5732 74.4849 94.5006L74.4875 94.5184C74.807 96.7135 73.1978 98.2417 70.8489 98.7567L71.0645 100.238L70.0205 100.39ZM66.637 90.1026C66.7461 90.8522 67.3492 91.302 68.7205 91.4578L68.2516 88.2365C67.0589 88.5559 66.5227 89.3174 66.6344 90.0848L66.637 90.1026ZM72.3656 95.0277C72.2422 94.18 71.6813 93.7696 70.0996 93.608L70.5892 96.972C71.9643 96.6534 72.4967 95.929 72.3682 95.0456L72.3656 95.0277Z\" fill=\"white\"/>\\n<path d=\"M80.1922 97.6064L78.648 86.9967L78.4963 87.0188L75.6228 89.7515L75.3072 87.5832L78.3271 84.729L80.6203 84.3952L82.4944 97.2713L80.1922 97.6064Z\" fill=\"white\"/>\\n<path d=\"M85.4634 96.8392L85.2374 95.2865L88.8384 90.3521C90.3302 88.3308 90.7262 87.608 90.582 86.6175L90.5781 86.5907C90.4054 85.4039 89.4687 84.6655 88.1302 84.8603C86.765 85.059 85.9771 86.094 86.1706 87.4236L86.1669 87.4606L84.024 87.7633L84.0112 87.7379C83.6618 85.3375 85.2915 83.3873 87.9774 82.9963C90.4848 82.6314 92.5094 83.8949 92.8249 86.0632L92.8288 86.09C93.0418 87.5534 92.5057 88.816 90.4875 91.4151L88.2724 94.289L88.2997 94.4763L94.1265 93.6283L94.4044 95.5378L85.4634 96.8392Z\" fill=\"white\"/>\\n<path d=\"M96.3781 98.7223L96.3739 93.2465L98.6671 92.9127L97.895 98.5015L96.3781 98.7223Z\" fill=\"white\"/>\\n<path d=\"M107.142 93.6839L106.782 91.2122L100.482 92.1291L100.208 90.2463C101.455 87.1034 102.853 83.8747 104.215 80.9611L107.472 80.487L108.71 88.9908L110.441 88.7388L110.717 90.6395L108.986 90.8914L109.346 93.3631L107.142 93.6839ZM102.355 89.9703L106.549 89.3599L105.571 82.6408L105.437 82.6603C104.41 84.8691 103.267 87.4685 102.336 89.8365L102.355 89.9703Z\" fill=\"white\"/>\\n<path d=\"M117.564 92.4951C114.932 92.8782 112.922 91.5305 112.445 89.4404L112.419 89.3257L114.543 89.0166L114.561 89.0777C114.883 90.106 115.978 90.8032 117.299 90.611C118.807 90.3915 119.687 89.179 119.467 87.662L119.464 87.6442C119.246 86.1451 118.04 85.2454 116.567 85.4597C115.845 85.5649 115.251 85.87 114.84 86.3671C114.637 86.5972 114.459 86.8782 114.349 87.1858L112.377 87.4729L111.904 79.8419L119.632 78.7172L119.907 80.6089L113.973 81.4725L114.186 85.4418L114.338 85.4197C114.747 84.4762 115.672 83.8132 116.885 83.6366C119.285 83.2872 121.285 84.8186 121.644 87.2814L121.646 87.2992C122.036 89.9762 120.348 92.0898 117.564 92.4951Z\" fill=\"white\"/>\\n<path d=\"M127.116 90.7767L125.572 80.1671L125.42 80.1892L122.547 82.9219L122.231 80.7536L125.251 77.8993L127.544 77.5655L129.418 90.4417L127.116 90.7767Z\" fill=\"white\"/>\\n<path d=\"M133.591 90.0165C132.779 90.1347 132.083 89.6073 131.967 88.8132C131.852 88.019 132.369 87.315 133.181 87.1968C134.002 87.0773 134.689 87.606 134.805 88.4002C134.92 89.1944 134.412 89.8971 133.591 90.0165Z\" fill=\"white\"/>\\n<path d=\"M137.061 89.3293L136.835 87.7767L140.436 82.8423C141.927 80.821 142.323 80.0981 142.179 79.1077L142.175 79.0809C142.003 77.8941 141.066 77.1557 139.727 77.3505C138.362 77.5492 137.574 78.5842 137.768 79.9138L137.764 79.9507L135.621 80.2535L135.608 80.228C135.259 77.8277 136.889 75.8774 139.575 75.4865C142.082 75.1216 144.107 76.3851 144.422 78.5534L144.426 78.5802C144.639 80.0436 144.103 81.3062 142.085 83.9053L139.87 86.7791L139.897 86.9665L145.724 86.1184L146.002 88.028L137.061 89.3293Z\" fill=\"white\"/>\\n<path d=\"M148.507 87.6634L152.522 75.9985L152.501 75.8558L145.863 76.822L145.589 74.9392L154.547 73.6353L154.827 75.5538L150.916 87.3127L148.507 87.6634Z\" fill=\"white\"/>\\n<path d=\"M165.961 85.287C163.516 85.6428 161.682 83.9325 161.232 80.8451L161.23 80.8272C160.778 77.722 162.023 75.5725 164.495 75.2127C165.833 75.0179 167.045 75.5159 167.707 76.4948L167.858 76.4727L167.083 71.1456L169.314 70.8209L171.283 84.3484L169.052 84.6731L168.83 83.1472L168.678 83.1693C168.297 84.3091 167.335 85.087 165.961 85.287ZM166.384 83.3118C167.901 83.091 168.664 81.7589 168.38 79.8048L168.377 79.7869C168.093 77.8328 166.972 76.7658 165.464 76.9853C163.956 77.2048 163.202 78.5355 163.487 80.4986L163.49 80.5165C163.776 82.4796 164.867 83.5326 166.384 83.3118Z\" fill=\"white\"/>\\n<path d=\"M177.671 83.6191C174.771 84.0411 172.73 82.3518 172.278 79.2465L172.277 79.2376C171.83 76.168 173.314 73.9019 176.089 73.4979C178.864 73.094 180.86 74.7899 181.289 77.7346L181.395 78.4663L174.578 79.4585C174.859 81.2035 175.953 82.0831 177.461 81.8636C178.666 81.6883 179.265 80.9815 179.414 80.5042L179.431 80.4378L181.546 80.13L181.531 80.2142C181.402 81.5179 180.321 83.2333 177.671 83.6191ZM176.369 75.2341C175.128 75.4146 174.322 76.3884 174.379 77.9657L179.01 77.2917C178.626 75.7165 177.609 75.0535 176.369 75.2341Z\" fill=\"white\"/>\\n<path d=\"M184.108 85.7894L182.217 72.7973L184.439 72.474L184.661 73.9998L184.813 73.9777C185.193 72.838 186.164 72.0588 187.53 71.8601C189.975 71.5042 191.819 73.2222 192.269 76.3096L192.271 76.3274C192.723 79.4327 191.468 81.5746 188.996 81.9343C187.657 82.1291 186.446 81.6312 185.784 80.6522L185.632 80.6743L186.33 85.4661L184.108 85.7894ZM188.027 80.1618C189.544 79.941 190.289 78.6115 190.005 76.6573L190.002 76.6395C189.716 74.6764 188.623 73.6145 187.106 73.8352C185.598 74.0547 184.835 75.3868 185.12 77.341L185.123 77.3588C185.407 79.313 186.519 80.3812 188.027 80.1618Z\" fill=\"white\"/>\\n<path d=\"M198.85 80.5365C195.923 80.9625 193.878 79.3101 193.419 76.1513L193.416 76.1335C192.96 73.0015 194.475 70.8219 197.375 70.3998C200.284 69.9765 202.346 71.6263 202.803 74.7672L202.806 74.7851C203.266 77.9439 201.768 80.1119 198.85 80.5365ZM198.588 78.7341C200.131 78.5094 200.83 77.1775 200.532 75.1252L200.529 75.1073C200.23 73.055 199.17 71.97 197.636 72.1934C196.092 72.4181 195.385 73.7602 195.684 75.8125L195.686 75.8304C195.985 77.8827 197.044 78.9587 198.588 78.7341Z\" fill=\"white\"/>\\n<path d=\"M208.85 79.081C206.37 79.4421 204.704 78.5181 204.277 76.8946L204.274 76.8767L206.478 76.5559L206.49 76.5725C206.82 77.2169 207.541 77.595 208.647 77.4339C209.754 77.2729 210.448 76.6615 210.342 75.9298L210.339 75.912C210.256 75.3409 209.773 75.0285 208.667 74.9434L207.036 74.8163C205.12 74.676 204.11 73.9301 203.9 72.4935L203.899 72.4846C203.643 70.7267 205.073 69.2794 207.375 68.9443C209.749 68.5988 211.339 69.5702 211.711 71.1288L211.714 71.1467L209.626 71.4506L209.613 71.4251C209.363 70.8328 208.648 70.4266 207.604 70.5785C206.613 70.7227 205.97 71.3084 206.076 72.0401L206.077 72.0491C206.161 72.6202 206.622 72.9084 207.71 72.9961L209.34 73.1142C211.312 73.2646 212.331 73.9454 212.537 75.3642L212.54 75.3821C212.81 77.2381 211.251 78.7316 208.85 79.081Z\" fill=\"white\"/>\\n<path d=\"M214.078 66.4926C213.346 66.5991 212.664 66.1061 212.557 65.3744C212.452 64.6516 212.964 63.9757 213.696 63.8692C214.419 63.764 215.102 64.2659 215.207 64.9887C215.314 65.7204 214.8 66.3874 214.078 66.4926ZM214.619 78.0409L213.2 68.2879L215.422 67.9645L216.841 77.7175L214.619 78.0409Z\" fill=\"white\"/>\\n<path d=\"M222.806 76.8949C220.566 77.2209 219.538 76.6051 219.264 74.7223L218.472 69.2792L216.955 69.5L216.704 67.7778L218.221 67.557L217.873 65.1656L220.131 64.837L220.479 67.2284L222.54 66.9284L222.791 68.6506L220.73 68.9506L221.445 73.8673C221.587 74.8399 222.03 75.1945 222.958 75.0594C223.27 75.014 223.439 74.9804 223.703 74.9146L223.952 76.6279C223.64 76.7371 223.234 76.8325 222.806 76.8949Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_48_97\" x=\"-3.53376\" y=\"-1.77235\" width=\"323.387\" height=\"130.202\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.23114\"/>\\n<feGaussianBlur stdDeviation=\"1.23114\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_48_97\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.23114\"/>\\n<feGaussianBlur stdDeviation=\"1.84672\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_48_97\" result=\"effect2_dropShadow_48_97\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_48_97\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_48_97\" x1=\"32.24\" y1=\"76.0226\" x2=\"29.3691\" y2=\"56.2978\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0CBD2A\"/>\\n<stop offset=\"1\" stop-color=\"#5BF675\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_48_97\">\\n<rect width=\"24.6229\" height=\"24.6229\" fill=\"white\" transform=\"translate(16.5525 55.0752) rotate(-8.28109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_48_97\">\\n<rect width=\"278.239\" height=\"17.7548\" fill=\"white\" transform=\"translate(21.8723 91.6245) rotate(-8.28109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddlom1\",\"data-border\":true,\"data-framer-name\":\"Frame 404\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x1wm3m\",\"data-framer-name\":\"Frame 135\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ulagp4\",\"data-framer-name\":\"Frame 134\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:306,svg:'<svg width=\"306\" height=\"28\" viewBox=\"0 0 306 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_48_113)\">\\n<path d=\"M21.4061 0.687988H6.28144C2.99351 0.687988 0.328125 3.35338 0.328125 6.6413V21.7659C0.328125 25.0539 2.99351 27.7192 6.28144 27.7192H21.4061C24.694 27.7192 27.3594 25.0539 27.3594 21.7659V6.6413C27.3594 3.35338 24.694 0.687988 21.4061 0.687988Z\" fill=\"url(#paint0_linear_48_113)\"/>\\n<path d=\"M13.8439 5.3667C11.2125 5.36672 8.68897 6.23738 6.82833 7.78717C4.96769 9.33696 3.92238 11.4389 3.92236 13.6307C3.92476 15.0563 4.36989 16.4571 5.21448 17.6971C6.05907 18.937 7.27441 19.9739 8.74237 20.7069C8.3514 21.5822 7.76502 22.403 7.00752 23.1353C8.4765 22.8774 9.85546 22.3357 11.0371 21.5523C11.9482 21.7778 12.8934 21.8931 13.8439 21.8946C16.4752 21.8946 18.9988 21.0239 20.8594 19.4741C22.7201 17.9244 23.7654 15.8224 23.7654 13.6307C23.7654 11.4389 22.7201 9.33696 20.8594 7.78717C18.9988 6.23738 16.4752 5.36672 13.8439 5.3667Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M40.875 19.4412H42.5664V11.9931H42.6898L45.5936 19.4412H46.8712L49.775 11.9931H49.9057V19.4412H51.5898V8.96593H49.4411L46.2977 17.0238H46.1743L43.0238 8.96593H40.875V19.4412Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M54.1742 19.4412H60.9544V17.8659H56.0471V14.8678H60.6858V13.3796H56.0471V10.5412H60.9544V8.96593H54.1742V19.4412Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M66.9144 19.7025C69.4261 19.7025 71.0014 18.4249 71.0014 16.385V16.3777C71.0014 14.7952 70.0794 13.9096 67.8726 13.445L66.7474 13.2054C65.4407 12.9295 64.9108 12.4649 64.9108 11.7245V11.7172C64.9108 10.8243 65.7383 10.2799 66.8998 10.2799C68.0976 10.2726 68.8744 10.8534 69.0051 11.6664L69.0196 11.7535H70.8126L70.8054 11.6592C70.6747 9.97498 69.2301 8.70459 66.9071 8.70459C64.6422 8.70459 63.0306 9.96772 63.0306 11.8406V11.8479C63.0306 13.4087 63.9598 14.4105 66.1013 14.8605L67.2265 15.0928C68.5768 15.3832 69.1212 15.8405 69.1212 16.5955V16.6028C69.1212 17.5029 68.2356 18.1273 66.9724 18.1273C65.644 18.1273 64.7075 17.5465 64.6204 16.6681L64.6131 16.5955H62.7983L62.8056 16.6972C62.9362 18.5047 64.4825 19.7025 66.9144 19.7025Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M76.7435 19.7025C79.2553 19.7025 80.8306 18.4249 80.8306 16.385V16.3777C80.8306 14.7952 79.9086 13.9096 77.7018 13.445L76.5766 13.2054C75.2699 12.9295 74.74 12.4649 74.74 11.7245V11.7172C74.74 10.8243 75.5675 10.2799 76.729 10.2799C77.9268 10.2726 78.7036 10.8534 78.8342 11.6664L78.8488 11.7535H80.6418L80.6346 11.6592C80.5039 9.97498 79.0593 8.70459 76.7363 8.70459C74.4714 8.70459 72.8598 9.96772 72.8598 11.8406V11.8479C72.8598 13.4087 73.789 14.4105 75.9305 14.8605L77.0557 15.0928C78.4059 15.3832 78.9504 15.8405 78.9504 16.5955V16.6028C78.9504 17.5029 78.0647 18.1273 76.8016 18.1273C75.4732 18.1273 74.5367 17.5465 74.4496 16.6681L74.4423 16.5955H72.6275L72.6347 16.6972C72.7654 18.5047 74.3117 19.7025 76.7435 19.7025Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M82.159 19.4412H84.1191L84.9902 16.7335H88.8667L89.7451 19.4412H91.7051L87.9883 8.96593H85.8758L82.159 19.4412ZM86.8704 10.9114H86.9938L88.4021 15.2888H85.462L86.8704 10.9114Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M97.4908 19.7025C100.286 19.7025 102.071 17.9675 102.071 15.2598V13.9531H97.7231V15.3832H100.235L100.228 15.601C100.206 17.0892 99.1169 18.0837 97.5199 18.0837C95.6542 18.0837 94.4782 16.5955 94.4782 14.1927V14.1782C94.4782 11.8116 95.6324 10.3234 97.4618 10.3234C98.8048 10.3234 99.763 10.9913 100.104 12.1383L100.126 12.2109H101.984L101.977 12.1383C101.621 10.0911 99.8792 8.70459 97.4618 8.70459C94.4782 8.70459 92.569 10.8461 92.569 14.1927V14.2072C92.569 17.5901 94.4564 19.7025 97.4908 19.7025Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M104.249 19.4412H111.03V17.8659H106.122V14.8678H110.761V13.3796H106.122V10.5412H111.03V8.96593H104.249V19.4412Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M116.989 19.7025C119.501 19.7025 121.077 18.4249 121.077 16.385V16.3777C121.077 14.7952 120.155 13.9096 117.948 13.445L116.823 13.2054C115.516 12.9295 114.986 12.4649 114.986 11.7245V11.7172C114.986 10.8243 115.813 10.2799 116.975 10.2799C118.173 10.2726 118.95 10.8534 119.08 11.6664L119.095 11.7535H120.888L120.881 11.6592C120.75 9.97498 119.305 8.70459 116.982 8.70459C114.717 8.70459 113.106 9.96772 113.106 11.8406V11.8479C113.106 13.4087 114.035 14.4105 116.176 14.8605L117.302 15.0928C118.652 15.3832 119.196 15.8405 119.196 16.5955V16.6028C119.196 17.5029 118.311 18.1273 117.048 18.1273C115.719 18.1273 114.783 17.5465 114.696 16.6681L114.688 16.5955H112.873L112.881 16.6972C113.011 18.5047 114.558 19.7025 116.989 19.7025Z\" fill=\"#9B9B9F\"/>\\n<path d=\"M270.444 17.8068H272.087V13.603C272.087 12.5207 272.694 11.8344 273.671 11.8344C274.667 11.8344 275.123 12.4019 275.123 13.5238V17.8068H276.766V13.141C276.766 11.4252 275.888 10.4551 274.278 10.4551C273.235 10.4551 272.542 10.9236 272.199 11.6958H272.087V10.5937H270.444V17.8068Z\" fill=\"#8D8D91\"/>\\n<path d=\"M281.821 17.952C283.979 17.952 285.293 16.5397 285.293 14.2036V14.1904C285.293 11.8674 283.973 10.4551 281.821 10.4551C279.676 10.4551 278.35 11.874 278.35 14.1904V14.2036C278.35 16.5397 279.657 17.952 281.821 17.952ZM281.821 16.6189C280.68 16.6189 280.026 15.728 280.026 14.2102V14.197C280.026 12.6791 280.68 11.7816 281.821 11.7816C282.956 11.7816 283.61 12.6791 283.61 14.197V14.2102C283.61 15.728 282.963 16.6189 281.821 16.6189Z\" fill=\"#8D8D91\"/>\\n<path d=\"M288.025 17.8068H289.727L291.126 12.5801H291.239L292.644 17.8068H294.367L296.32 10.5937H294.69L293.496 16.0118H293.383L291.984 10.5937H290.42L289.034 16.0118H288.922L287.721 10.5937H286.071L288.025 17.8068Z\" fill=\"#8D8D91\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_48_113\" x1=\"14.0583\" y1=\"25.9249\" x2=\"14.0583\" y2=\"4.04269\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0CBD2A\"/>\\n<stop offset=\"1\" stop-color=\"#5BF675\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_48_113\">\\n<rect width=\"27.0313\" height=\"27.0313\" fill=\"white\" transform=\"translate(0.328125 0.687988)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qyz1r2\",\"data-framer-name\":\"Title + Time\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20.07px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.56px\"},children:\"You\u2019ve received $50!\"})}),className:\"framer-q318gv\",\"data-framer-name\":\"You\u2019ve received $50!\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqv6nq\",\"data-framer-name\":\"Spacer\",id:elementId1,ref:ref2})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5xqiw\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17j2zf9\",\"data-framer-name\":\"Section 1\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sr95yt\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ays2h\",\"data-border\":true,\"data-framer-name\":\"Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"2\"})}),className:\"framer-6jmd7n\",\"data-framer-name\":\"1\",fonts:[\"Inter-Light\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"Post your number \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"or profile link\"})]})}),className:\"framer-sbu4qr\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhbu03\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:5.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:45,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1600,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ctzuc\",\"data-framer-name\":\"scrollImage02\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+1213.2+0+0+0+113.2+191.5+123),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"556px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+1213.2+0+0+0+113.2+191.5+617-494),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"317px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+1213.2+0+0+0+113.2+191.5+123),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"556px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"},className:\"framer-xp7tms\",\"data-framer-name\":\"image\"})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hi2vp hidden-140azaa\",\"data-framer-name\":\"Frame 3681\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-as1584\",\"data-framer-name\":\"Your logo - post 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3757 34.226C26.6519 34.226 34.1718 26.7061 34.1718 17.4299C34.1718 8.15367 26.6519 0.633789 17.3757 0.633789C8.09946 0.633789 0.57959 8.15367 0.57959 17.4299C0.57959 26.7061 8.09946 34.226 17.3757 34.226Z\" fill=\"black\"/>\\n<path d=\"M5.52825 6.23242L14.716 18.5545L5.47021 28.5701H7.55223L15.6445 19.7987L22.1844 28.5701H29.2647L19.5619 15.5568L28.1657 6.23242H26.0873L18.6333 14.3089L12.6122 6.23242H5.52825ZM8.58961 7.76768H11.8432L26.207 27.0312H22.9534L8.58961 7.76768Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgto6w\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zynika\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jjn302\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13.79px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LaceyDuzit\"})}),className:\"framer-u4c1kh\",\"data-framer-name\":\"LaceyDuzit\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+1213.2+0+0+0+113.2+191.5+314.3999+13.2339+0+0+0+0+2.2965),pixelHeight:627,pixelWidth:627,sizes:\"11.9551px\",src:\"https://framerusercontent.com/images/Al4Gb4DxOf1LtWk9S1eRAdibk.png\",srcSet:\"https://framerusercontent.com/images/Al4Gb4DxOf1LtWk9S1eRAdibk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Al4Gb4DxOf1LtWk9S1eRAdibk.png 627w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+1213.2+0+0+0+113.2+191.5+314.3999+13.2339+0+0+0+0+2.2965),pixelHeight:627,pixelWidth:627,sizes:\"11.9551px\",src:\"https://framerusercontent.com/images/Al4Gb4DxOf1LtWk9S1eRAdibk.png\",srcSet:\"https://framerusercontent.com/images/Al4Gb4DxOf1LtWk9S1eRAdibk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Al4Gb4DxOf1LtWk9S1eRAdibk.png 627w\"},className:\"framer-1rqnyj2\",\"data-framer-name\":\"PngItem_3024199 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13.79px\",\"--framer-text-color\":\"rgb(124, 124, 124)\"},children:\"@msdash\"})}),className:\"framer-175glcq\",\"data-framer-name\":\"@msdash\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vvfddi\",\"data-framer-name\":\"Ellipse 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13.79px\",\"--framer-text-color\":\"rgb(124, 124, 124)\"},children:\"May 29\"})}),className:\"framer-k5i2tp\",\"data-framer-name\":\"May 29\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13.3px\",\"--framer-line-height\":\"16.8px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"This year I\u2019m cutting out the middle. Text me directly on TXT.com  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(77, 124, 255)\"},children:\"#creatorpower #TXT\"})]})}),className:\"framer-15c3rqf\",\"data-framer-name\":\"This year I\u2019m cutting out the middle. Text me directly on TXT.com #creatorpower #TXT\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+1213.2+0+0+0+113.2+191.5+314.3999+13.2339+0+107.4597),pixelHeight:583,pixelWidth:1037,positionX:\"center\",positionY:\"center\",sizes:\"259px\",src:\"https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png\",srcSet:\"https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png?scale-down-to=512 512w,https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png 1037w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+1213.2+0+0+0+113.2+191.5+314.3999+13.2339+0+107.4597),pixelHeight:583,pixelWidth:1037,positionX:\"center\",positionY:\"center\",sizes:\"259px\",src:\"https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png\",srcSet:\"https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png?scale-down-to=512 512w,https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MMbkedzJ8lQE3OisW89WqTVKlg.png 1037w\"},className:\"framer-15lcdl5\",\"data-framer-name\":\"Group 3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wtipyk\",\"data-framer-name\":\"Menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pehnho\",\"data-framer-name\":\"Frame 4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ohyvwr\",\"data-framer-name\":\"comment\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.65137 7.09667C1.65137 4.14102 4.04799 1.74707 7.00431 1.74707H9.92385C12.9263 1.74707 15.3597 4.18114 15.3597 7.1836C15.3597 9.16295 14.2851 10.9818 12.5539 11.9381L7.16814 14.9205V12.453H7.12334C4.12088 12.5198 1.65137 10.1058 1.65137 7.09667ZM7.00431 3.08447C4.78623 3.08447 2.98877 4.88327 2.98877 7.09667C2.98877 9.35019 4.84107 11.1624 7.09325 11.1156L7.32796 11.1089H8.50554V12.6469L11.9072 10.7678C13.2119 10.0456 14.0223 8.6748 14.0223 7.1836C14.0223 4.91671 12.1874 3.08447 9.92385 3.08447H7.00431Z\" fill=\"#6D6D6D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10.7px\",\"--framer-text-color\":\"rgb(109, 109, 109)\"},children:\"13.1k\"})}),className:\"framer-l8p7cu\",\"data-framer-name\":\"13.1k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9qzqc\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uchy1s\",\"data-framer-name\":\"retweet\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_48_255)\">\\n<path d=\"M3.1795 3.00391L6.14318 5.77232L5.23107 6.74863L3.8482 5.45804V11.1086C3.8482 11.8441 4.44735 12.446 5.1856 12.446H8.86345V13.7834H5.1856C3.70844 13.7834 2.5108 12.5864 2.5108 11.1086V5.45804L1.12793 6.74863L0.21582 5.77232L3.1795 3.00391ZM11.2039 4.42155H7.52605V3.08415H11.2039C12.6811 3.08415 13.8787 4.28112 13.8787 5.75895V11.4095L15.2616 10.1189L16.1737 11.0952L13.21 13.8636L10.2463 11.0952L11.1584 10.1189L12.5413 11.4095V5.75895C12.5413 5.02338 11.9421 4.42155 11.2039 4.42155Z\" fill=\"#6D6D6D\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_48_255\">\\n<rect width=\"16.0488\" height=\"16.0488\" fill=\"white\" transform=\"translate(0.169434 0.409668)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10.7px\",\"--framer-text-color\":\"rgb(109, 109, 109)\"},children:\"11.2k\"})}),className:\"framer-1e03h76\",\"data-framer-name\":\"11.2k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-93t3yp\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cvugyr\",\"data-framer-name\":\"like\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.0236 4.08717C11.2065 4.04705 10.2322 4.42821 9.4224 5.53156L8.8841 6.26044L8.34513 5.53156C7.53466 4.42821 6.5597 4.04705 5.74255 4.08717C4.91135 4.13398 4.17177 4.60876 3.79663 5.36439C3.42751 6.11333 3.37334 7.22337 4.11694 8.58752C4.83512 9.90486 6.29489 11.4429 8.8841 13.0076C11.472 11.4429 12.9311 9.90486 13.6493 8.58752C14.3922 7.22337 14.338 6.11333 13.9682 5.36439C13.5931 4.60876 12.8542 4.13398 12.0236 4.08717ZM14.8235 9.22947C13.9201 10.8878 12.148 12.6532 9.22046 14.3584L8.8841 14.559L8.54708 14.3584C5.61884 12.6532 3.84678 10.8878 2.94203 9.22947C2.0326 7.55772 1.99917 5.97959 2.59832 4.76924C3.19146 3.57227 4.36837 2.82333 5.67501 2.75646C6.77903 2.69627 7.92719 3.13093 8.88343 4.10054C9.839 3.13093 10.9872 2.69627 12.0905 2.75646C13.3972 2.82333 14.5741 3.57227 15.1672 4.76924C15.7664 5.97959 15.7329 7.55772 14.8235 9.22947Z\" fill=\"#6D6D6D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10.7px\",\"--framer-text-color\":\"rgb(109, 109, 109)\"},children:\"36.3k\"})}),className:\"framer-9olgm0\",\"data-framer-name\":\"36.3k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3el4o8\",\"data-framer-name\":\"Frame 5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q9i7i9\",\"data-framer-name\":\"view\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.39849 14.4516V2.41504H7.73589V14.4516H6.39849ZM12.584 14.4516V6.09289H13.9214V14.4516H12.584ZM3.22217 14.4516L3.22484 7.76464H4.56224L4.55957 14.4516H3.22217ZM9.40631 14.4516V9.77074H10.7437V14.4516H9.40631Z\" fill=\"#6D6D6D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10.7px\",\"--framer-text-color\":\"rgb(109, 109, 109)\"},children:\"97.4k\"})}),className:\"framer-2yytnu\",\"data-framer-name\":\"97.4k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9cijed\",\"data-framer-name\":\"oea8ot8466nlianr1hq 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.19105 0.409668L11.5956 4.71608L10.506 5.78891L7.96377 3.29572V10.5411H6.41833V3.29572L3.86836 5.78891L2.77882 4.71608L7.19105 0.409668ZM14.1455 9.78556L14.1301 12.4374C14.1301 13.48 13.2646 14.3186 12.1983 14.3186H2.16837C1.09429 14.3186 0.236572 13.4725 0.236572 12.4299V9.78556H1.78201V12.4299C1.78201 12.6414 1.95201 12.8076 2.16837 12.8076H12.1983C12.4146 12.8076 12.5846 12.6414 12.5846 12.4299L12.6001 9.78556H14.1455Z\" fill=\"#6D6D6D\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ivdni\",\"data-framer-name\":\"Frame 3679\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jmu5zq\",\"data-framer-name\":\"Frame 3672\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sfm0zn\",\"data-framer-name\":\"Frame 3671\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+1213.2+0+0+0+113.2+191.5+0+18.91002082824707+0+0+10.85),pixelHeight:164,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zYZ1g32GUOVoutzxEQiWgf2BWI8.png\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+1213.2+0+0+0+113.2+191.5+617-633.4557+18.91002082824707+0+0+10.85),pixelHeight:164,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zYZ1g32GUOVoutzxEQiWgf2BWI8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+1213.2+0+0+0+113.2+191.5+0+18.91002082824707+0+0+10.85),pixelHeight:164,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zYZ1g32GUOVoutzxEQiWgf2BWI8.png\"},className:\"framer-15y9owj\",\"data-framer-name\":\"Your logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10.45px\",\"--framer-text-color\":\"rgb(60, 60, 59)\"},children:\"User Name\"})}),className:\"framer-8tm6bp\",\"data-framer-name\":\"User Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gg1vwm\",\"data-framer-name\":\"More info\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"6\" viewBox=\"0 0 23 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.31999 0.906738C4.63166 0.906738 5.69876 1.97386 5.69876 3.28553C5.69876 4.59719 4.63166 5.66431 3.31999 5.66431C2.00832 5.66431 0.941162 4.59719 0.941162 3.28553C0.941162 1.97386 2.00832 0.906738 3.31999 0.906738Z\" fill=\"#454B60\"/>\\n<path d=\"M11.5677 0.906738C12.8794 0.906738 13.9465 1.97386 13.9465 3.28553C13.9465 4.59719 12.8794 5.66431 11.5677 5.66431C10.2561 5.66431 9.18896 4.59719 9.18896 3.28553C9.18896 1.97386 10.2561 0.906738 11.5677 0.906738Z\" fill=\"#454B60\"/>\\n<path d=\"M19.816 0.906738C21.1277 0.906738 22.1948 1.97386 22.1948 3.28553C22.1948 4.59719 21.1277 5.66431 19.816 5.66431C18.5044 5.66431 17.4373 4.59719 17.4373 3.28553C17.4373 1.97386 18.4821 0.906738 19.816 0.906738Z\" fill=\"#454B60\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vfmc57\",\"data-framer-name\":\"Frame 3677\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"38.01px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"38.01px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Share the moment with your Fans\"})}),className:\"framer-davaa\",\"data-framer-name\":\"Share the moment with your Fans\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6irkml\",\"data-framer-name\":\"bottom row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10n7uyg\",\"data-framer-name\":\"Frame 3675\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:246,svg:'<svg width=\"246\" height=\"17\" viewBox=\"0 0 246 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.38414 16.7013L16.2846 11.1206C17.0413 10.5085 17.6539 9.68043 17.9601 8.70831C19.2213 4.72982 15.618 0.481264 11.366 2.15547C10.2129 2.60553 9.38414 4.11774 9.38414 4.11774C9.38414 4.11774 8.55536 2.60553 7.40228 2.15547C3.13229 0.481264 -0.471067 4.72982 0.808128 8.70831C1.11441 9.68043 1.72697 10.4905 2.48368 11.1206L9.38414 16.7013Z\" fill=\"#E64652\"/>\\n<path d=\"M48.5719 12.7242C49.3788 11.1765 49.6722 9.32287 49.2137 7.36124C48.5169 4.40978 46.0413 2.08823 43.0156 1.53033C37.4592 0.504523 32.6547 5.18363 33.6633 10.6366C34.2318 13.714 36.7257 16.1976 39.8248 16.8275C41.4935 17.1694 43.0889 16.9715 44.5009 16.4136C44.8493 16.2696 45.2161 16.2336 45.5645 16.3416L47.9301 17.0615C48.4802 17.2234 49.012 16.7555 48.902 16.2156L48.4252 13.6961C48.3519 13.3721 48.4252 13.0302 48.5719 12.7242Z\" stroke=\"#3C3C3B\" stroke-width=\"1.6168\" stroke-miterlimit=\"10\"/>\\n<path d=\"M66.4878 2.44385H82.6579L72.3204 16.2272V7.4229L66.4878 2.44385Z\" stroke=\"#3C3C3B\" stroke-width=\"1.6168\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/>\\n<path d=\"M72.3203 7.4229L82.6578 2.44385\" stroke=\"#3C3C3B\" stroke-width=\"1.6168\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/>\\n<path d=\"M114.549 6.32129C115.861 6.32129 116.928 7.3884 116.928 8.70006C116.928 10.0117 115.861 11.0788 114.549 11.0788C113.238 11.0788 112.17 10.0117 112.17 8.70006C112.17 7.3884 113.238 6.32129 114.549 6.32129Z\" fill=\"#454B60\"/>\\n<path d=\"M122.871 6.32129C124.182 6.32129 125.249 7.3884 125.249 8.70006C125.249 10.0117 124.182 11.0788 122.871 11.0788C121.559 11.0788 120.492 10.0117 120.492 8.70006C120.492 7.3884 121.559 6.32129 122.871 6.32129Z\" fill=\"#4D7CFF\"/>\\n<path d=\"M131.192 6.32129C132.503 6.32129 133.571 7.3884 133.571 8.70006C133.571 10.0117 132.503 11.0788 131.192 11.0788C129.88 11.0788 128.813 10.0117 128.813 8.70006C128.813 7.3884 129.88 6.32129 131.192 6.32129Z\" fill=\"#454B60\"/>\\n<path d=\"M244.083 16.4992L237.949 11.4249L231.814 16.4992C231.37 16.8631 230.703 16.5634 230.703 16.0067V1.79034C230.703 1.21227 231.192 0.741211 231.792 0.741211H244.106C244.706 0.741211 245.195 1.21227 245.195 1.79034V16.0067C245.195 16.5634 244.528 16.8631 244.083 16.4992Z\" stroke=\"#3C3C3B\" stroke-width=\"0.950288\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kpu9ud\",\"data-framer-name\":\"Frame 3676\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16ui1wb\",\"data-framer-name\":\"Likes icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"10\" viewBox=\"0 0 11 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.77297 9.17275L9.84726 5.79869C10.3048 5.41882 10.6534 4.92723 10.8495 4.34626C11.5903 1.93301 9.47689 -0.63668 6.94951 0.368845C6.27409 0.636985 5.77297 1.55314 5.77297 1.55314C5.77297 1.55314 5.29363 0.636985 4.59643 0.368845C2.06905 -0.63668 -0.0443647 1.93301 0.696418 4.34626C0.87072 4.92723 1.24113 5.44117 1.69867 5.79869L5.77297 9.17275Z\" fill=\"#3C3C3B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.5px\",\"--framer-text-color\":\"rgb(60, 60, 59)\"},children:\"362 likes\"})}),className:\"framer-v2qt2t\",\"data-framer-name\":\"362 likes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"9.5px\",\"--framer-text-color\":\"rgb(60, 60, 59)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"yourname\"}),\" my TXT.com account is live! Now we can finally chat 1 on 1 \uD83E\uDEF6  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(77, 124, 255)\"},children:\"#creatorpower #ilovemyfans\"}),\" \"]})}),className:\"framer-zkv8x2\",\"data-framer-name\":\"yourname my TXT.com account is live! Now we can finally chat 1 on 1 \uD83E\uDEF6 #creatorpower #ilovemyfans\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sez6e9\",\"data-framer-name\":\"Spacer\",id:elementId3,ref:ref4})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ui3ydc\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xevidi\",\"data-framer-name\":\"Section 1\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-118ujed\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lc5a2g\",\"data-border\":true,\"data-framer-name\":\"Border\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"3\"})}),className:\"framer-a393g4\",\"data-framer-name\":\"1\",fonts:[\"Inter-Light\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Send locked content & request \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"tips from fans\"})]}),className:\"framer-179lop0\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hn9x9e\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:5.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:45,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1600,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18jp4kl\",\"data-framer-name\":\"scrollImage03\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+0),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"556px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+2426.4+0+0+0+502+209+0),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"351px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+0),pixelHeight:1976,pixelWidth:2224,positionX:\"center\",positionY:\"center\",sizes:\"556px\",src:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png\",srcSet:\"https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXimyIc9JwB2gtEhxWW9MxUR6VQ.png 2224w\"},className:\"framer-vvxnfy\",\"data-framer-name\":\"image\"})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ldegv hidden-140azaa\",\"data-framer-name\":\"Frame 3678\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+41+17.1053),pixelHeight:668,pixelWidth:659,positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/5vLk2WujVyD4MTst9L4ZnHhe5m0.png\",srcSet:\"https://framerusercontent.com/images/5vLk2WujVyD4MTst9L4ZnHhe5m0.png 659w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+41+17.1053),pixelHeight:668,pixelWidth:659,positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/5vLk2WujVyD4MTst9L4ZnHhe5m0.png\",srcSet:\"https://framerusercontent.com/images/5vLk2WujVyD4MTst9L4ZnHhe5m0.png 659w\"},className:\"framer-xpawq3\",\"data-framer-name\":\"Frame 3670\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+41+18.1036),pixelHeight:660,pixelWidth:668,positionX:\"center\",positionY:\"center\",sizes:\"167px\",src:\"https://framerusercontent.com/images/USMDGjXVe8NFIXjofYJhPbgYkM.png\",srcSet:\"https://framerusercontent.com/images/USMDGjXVe8NFIXjofYJhPbgYkM.png?scale-down-to=512 512w,https://framerusercontent.com/images/USMDGjXVe8NFIXjofYJhPbgYkM.png 668w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+41+18.1036),pixelHeight:660,pixelWidth:668,positionX:\"center\",positionY:\"center\",sizes:\"167px\",src:\"https://framerusercontent.com/images/USMDGjXVe8NFIXjofYJhPbgYkM.png\",srcSet:\"https://framerusercontent.com/images/USMDGjXVe8NFIXjofYJhPbgYkM.png?scale-down-to=512 512w,https://framerusercontent.com/images/USMDGjXVe8NFIXjofYJhPbgYkM.png 668w\"},className:\"framer-199u4gr\",\"data-framer-name\":\"Frame 3668\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+41+-.395),pixelHeight:805,pixelWidth:815,positionX:\"center\",positionY:\"center\",sizes:\"204px\",src:\"https://framerusercontent.com/images/tB4Zvq1ZcfsCJ0G21g7nNv09k.png\",srcSet:\"https://framerusercontent.com/images/tB4Zvq1ZcfsCJ0G21g7nNv09k.png?scale-down-to=512 512w,https://framerusercontent.com/images/tB4Zvq1ZcfsCJ0G21g7nNv09k.png 815w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+41+-.395),pixelHeight:805,pixelWidth:815,positionX:\"center\",positionY:\"center\",sizes:\"204px\",src:\"https://framerusercontent.com/images/tB4Zvq1ZcfsCJ0G21g7nNv09k.png\",srcSet:\"https://framerusercontent.com/images/tB4Zvq1ZcfsCJ0G21g7nNv09k.png?scale-down-to=512 512w,https://framerusercontent.com/images/tB4Zvq1ZcfsCJ0G21g7nNv09k.png 815w\"},className:\"framer-tzzc2r\",\"data-framer-name\":\"Frame 3667\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127ba7t\",\"data-framer-name\":\"\uD83D\uDDBC\uFE0F PLACE YOUR SCREEN HERE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f9ohn2\",\"data-framer-name\":\"3-frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rnzucu\",\"data-border\":true,\"data-framer-name\":\"4-border-primary\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13qytw4\",\"data-border\":true,\"data-framer-name\":\"3-border-dark\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tbcuua\",\"data-border\":true,\"data-framer-name\":\"3-border-highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gwcyk\",\"data-border\":true,\"data-framer-name\":\"3-border-bezel-reflect\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uxf64n\",\"data-framer-name\":\"\uD83D\uDDBC\uFE0F PLACE YOUR SCREEN HERE\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-112b74g\",\"data-framer-name\":\"Accessory Bar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0zmaf\",\"data-framer-name\":\"Frame 3679\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15yvr3k\",\"data-framer-name\":\"Frame 3680\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"12.9184\" cy=\"12.5202\" r=\"11.9606\" fill=\"#E6E6E6\"/>\\n<line x1=\"12.9677\" y1=\"7.62765\" x2=\"12.9677\" y2=\"17.4136\" stroke=\"#808080\" stroke-width=\"1.08733\" stroke-linecap=\"round\"/>\\n<line x1=\"17.8113\" y1=\"12.57\" x2=\"8.02538\" y2=\"12.57\" stroke=\"#808080\" stroke-width=\"1.08733\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9xl0nx\",\"data-border\":true,\"data-framer-name\":\"Frame 3678\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"8.97px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"11.61px\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"iMessage\"})}),className:\"framer-8056u\",\"data-framer-name\":\"Placeholder Label\",fonts:[\"GF;SF Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"8.97px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"11.61px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(60, 60, 67, 0.6)\"},children:\"\uDBC0\uDEB1\"})}),className:\"framer-p19tzh\",\"data-framer-name\":\"Dictation\",fonts:[\"GF;SF Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g80apy\",\"data-framer-name\":\"Rectangle 81\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8z9za\",\"data-framer-name\":\"iOS Home Indicator\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-447ow4\",\"data-framer-name\":\"Home Indicator\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3xuy1\",\"data-framer-name\":\"Frame 432\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h6l1wj\",\"data-framer-name\":\"Frame 433\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.87943 6.30518L2.5979 11.3226L7.87943 16.3401\" stroke=\"#0085FF\" stroke-width=\"1.58446\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ft782r\",\"data-framer-name\":\"Frame 431\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+582-469+9.5068+38.5552+0+0+0),pixelHeight:104,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YLZbCh5w2ZFXYUn0Jf1FHwCAE.png\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+2426.4+0+0+0+502+209+582-569+9.5068+38.5552+0+0+0),pixelHeight:104,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YLZbCh5w2ZFXYUn0Jf1FHwCAE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+582-469+9.5068+38.5552+0+0+0),pixelHeight:104,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YLZbCh5w2ZFXYUn0Jf1FHwCAE.png\"},className:\"framer-vsfatb\",\"data-framer-name\":\"Ellipse 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3juap\",\"data-framer-name\":\"Frame 430\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNjAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"5.81px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"James Student\"})}),className:\"framer-w0mfdh\",\"data-framer-name\":\"James Student\",fonts:[\"GF;SF Pro Text-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vl1q8n\",\"data-framer-name\":\"Vector 60\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:5,svg:'<svg width=\"5\" height=\"6\" viewBox=\"-1 -1 5 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.317075 -0.00195312L2.42969 1.58251L0.317075 3.16697\" stroke=\"black\" stroke-opacity=\"0.3\" stroke-width=\"0.528153\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zx8uke\",\"data-framer-name\":\"Frame 434\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtcmVndWxhcg==\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"13.73px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 133, 255)\"},children:\"\uDBC0\uDF49\"})}),className:\"framer-mgmf17\",\"data-framer-name\":\"\uDBC0\uDF49\",fonts:[\"GF;SF Pro Text-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNzAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"5.28px\",\"--framer-font-weight\":\"699\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(130, 130, 130)\"},children:\"iMessage\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNzAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"5.28px\",\"--framer-font-weight\":\"699\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(130, 130, 130)\"},children:\"Today 9:32 AM\"})]}),className:\"framer-1cre5s0\",\"data-framer-name\":\"iMessage Today 9:32 AM\",fonts:[\"GF;SF Pro Text-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wugpkf\",\"data-framer-name\":\"iOS Status Bar\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNjAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"8.98px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"11.62px\",\"--framer-text-alignment\":\"center\"},children:\"9:41\"})}),className:\"framer-1dusr7z\",\"data-framer-name\":\"Time\",fonts:[\"GF;SF Pro Text-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k2yezy\",\"data-framer-name\":\"wrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"8\" viewBox=\"0 0 43 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7609 1.33439C10.7609 1.00004 10.5087 0.729004 10.1975 0.729004H9.63418C9.32304 0.729004 9.07081 1.00004 9.07081 1.33439V6.58104C9.07081 6.91538 9.32304 7.18642 9.63418 7.18642H10.1975C10.5087 7.18642 10.7609 6.91538 10.7609 6.58104V1.33439ZM6.83455 2.02049H7.39791C7.70905 2.02049 7.96128 2.29803 7.96128 2.6404V6.56651C7.96128 6.90888 7.70905 7.18642 7.39791 7.18642H6.83455C6.52341 7.18642 6.27119 6.90888 6.27119 6.56651V2.6404C6.27119 2.29803 6.52341 2.02049 6.83455 2.02049ZM4.54671 3.41959H3.98335C3.67221 3.41959 3.41999 3.70067 3.41999 4.0474V6.55861C3.41999 6.90534 3.67221 7.18642 3.98335 7.18642H4.54671C4.85785 7.18642 5.11008 6.90534 5.11008 6.55861V4.0474C5.11008 3.70067 4.85785 3.41959 4.54671 3.41959ZM1.74709 4.71108H1.18372C0.872588 4.71108 0.620361 4.98814 0.620361 5.32992V6.56759C0.620361 6.90936 0.872588 7.18642 1.18372 7.18642H1.74709C2.05823 7.18642 2.31045 6.90936 2.31045 6.56759V5.32992C2.31045 4.98814 2.05823 4.71108 1.74709 4.71108Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.5133 2.00472C20.8269 2.00478 22.0902 2.49178 23.0422 3.36507C23.1139 3.43249 23.2285 3.43164 23.2991 3.36316L23.9844 2.69586C24.0201 2.66113 24.04 2.61408 24.0397 2.56513C24.0395 2.51618 24.019 2.46936 23.9828 2.43504C21.4841 0.124519 17.5421 0.124519 15.0434 2.43504C15.0072 2.46934 14.9867 2.51614 14.9863 2.56509C14.986 2.61404 15.0059 2.6611 15.0416 2.69586L15.7271 3.36316C15.7977 3.43174 15.9123 3.4326 15.984 3.36507C16.9361 2.49172 18.1996 2.00472 19.5133 2.00472ZM19.5115 4.23368C20.2284 4.23363 20.9197 4.50391 21.4511 4.99199C21.5229 5.06126 21.6362 5.05976 21.7062 4.9886L22.3861 4.29181C22.4219 4.25526 22.4418 4.20568 22.4413 4.15415C22.4407 4.10263 22.4199 4.05347 22.3833 4.01767C20.7652 2.49086 18.2592 2.49086 16.6411 4.01767C16.6045 4.05347 16.5837 4.10266 16.5832 4.1542C16.5827 4.20573 16.6026 4.25531 16.6385 4.29181L17.3182 4.9886C17.3883 5.05976 17.5015 5.06126 17.5733 4.99199C18.1044 4.50423 18.7951 4.23398 19.5115 4.23368ZM20.8448 5.7091C20.8458 5.76474 20.8262 5.81838 20.7907 5.85736L19.6411 7.15384C19.6074 7.19194 19.5614 7.21338 19.5135 7.21338C19.4656 7.21338 19.4196 7.19194 19.3859 7.15384L18.2361 5.85736C18.2006 5.81835 18.1811 5.76469 18.1821 5.70905C18.1832 5.65341 18.2047 5.60072 18.2417 5.56342C18.9759 4.86949 20.0511 4.86949 20.7853 5.56342C20.8223 5.60075 20.8438 5.65346 20.8448 5.7091Z\" fill=\"black\"/>\\n<rect opacity=\"0.35\" x=\"28.529\" y=\"0.788491\" width=\"12.6757\" height=\"6.33784\" rx=\"2.00698\" stroke=\"black\" stroke-width=\"0.528153\"/>\\n<path opacity=\"0.4\" d=\"M41.9968 3.0498V5.20228C42.4218 5.01998 42.6982 4.59589 42.6982 4.12604C42.6982 3.65619 42.4218 3.23211 41.9968 3.0498\" fill=\"black\"/>\\n<rect x=\"29.3213\" y=\"1.58057\" width=\"11.0912\" height=\"4.75338\" rx=\"1.32038\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6o7ju8\",\"data-framer-name\":\"camera\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:66,svg:'<svg width=\"66\" height=\"20\" viewBox=\"0 0 66 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.335693\" y=\"0.900879\" width=\"65.491\" height=\"19.0135\" rx=\"9.50676\" fill=\"black\"/>\\n<g opacity=\"0.75\">\\n<rect x=\"48.0469\" y=\"5.83184\" width=\"9.15168\" height=\"9.15168\" rx=\"4.57584\" fill=\"#121212\"/>\\n<rect x=\"48.0469\" y=\"5.83184\" width=\"9.15168\" height=\"9.15168\" rx=\"4.57584\" stroke=\"#0E0E0E\" stroke-width=\"0.355081\"/>\\n<g filter=\"url(#filter0_f_49_746)\">\\n<path d=\"M51.5666 8.29541C49.7649 8.76488 49.1644 11.4643 51.5666 12.5206C50.9661 11.1122 50.9661 9.82119 51.5666 8.29541Z\" fill=\"#50A99A\"/>\\n</g>\\n<g filter=\"url(#filter1_f_49_746)\">\\n<path d=\"M51.1704 9.27051C50.2695 9.5233 49.9693 10.9768 51.1704 11.5456C50.8701 10.7873 50.8701 10.0921 51.1704 9.27051Z\" fill=\"#50A99A\"/>\\n</g>\\n<g opacity=\"0.4\" filter=\"url(#filter2_f_49_746)\">\\n<path d=\"M51.5423 8.90347C50.7702 9.00691 50.2061 10.9058 51.1386 11.41C50.8085 10.7328 50.9735 9.3786 51.5423 8.90347Z\" fill=\"#D0FFF7\"/>\\n</g>\\n<g filter=\"url(#filter3_f_49_746)\">\\n<path d=\"M53.1511 8.29541C54.9529 8.76488 55.5534 11.4643 53.1511 12.5206C53.7517 11.1122 53.7517 9.82119 53.1511 8.29541Z\" fill=\"#3E518C\"/>\\n</g>\\n<g filter=\"url(#filter4_f_49_746)\">\\n<path d=\"M53.5471 9.27002C54.448 9.52281 54.7483 10.9764 53.5471 11.5451C53.8474 10.7868 53.8474 10.0916 53.5471 9.27002Z\" fill=\"#26408D\"/>\\n</g>\\n<g opacity=\"0.5\" filter=\"url(#filter5_f_49_746)\">\\n<path d=\"M53.1752 8.90347C53.9473 9.00691 54.5114 10.9058 53.579 11.41C53.909 10.7328 53.744 9.3786 53.1752 8.90347Z\" fill=\"#0D308C\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_49_746\" x=\"48.993\" y=\"7.30625\" width=\"3.56278\" height=\"6.20341\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.494578\" result=\"effect1_foregroundBlur_49_746\"/>\\n</filter>\\n<filter id=\"filter1_f_49_746\" x=\"49.389\" y=\"8.28135\" width=\"2.77055\" height=\"4.25321\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.494578\" result=\"effect1_foregroundBlur_49_746\"/>\\n</filter>\\n<filter id=\"filter2_f_49_746\" x=\"49.9934\" y=\"8.24388\" width=\"2.20828\" height=\"3.82571\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.329718\" result=\"effect1_foregroundBlur_49_746\"/>\\n</filter>\\n<filter id=\"filter3_f_49_746\" x=\"52.162\" y=\"7.30625\" width=\"3.56278\" height=\"6.20341\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.494578\" result=\"effect1_foregroundBlur_49_746\"/>\\n</filter>\\n<filter id=\"filter4_f_49_746\" x=\"52.558\" y=\"8.28086\" width=\"2.77055\" height=\"4.25321\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.494578\" result=\"effect1_foregroundBlur_49_746\"/>\\n</filter>\\n<filter id=\"filter5_f_49_746\" x=\"52.5159\" y=\"8.24388\" width=\"2.20828\" height=\"3.82571\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.329718\" result=\"effect1_foregroundBlur_49_746\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1836qmk\",\"data-framer-name\":\"0-antenna\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12clgql\",\"data-framer-name\":\"Rectangle 76\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rrurgc\",\"data-framer-name\":\"Rectangle 77\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hymquw\",\"data-framer-name\":\"Rectangle 78\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vw65z6\",\"data-framer-name\":\"Rectangle 79\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ldzylm\",\"data-framer-name\":\"Rectangle 80\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yaoy67\",\"data-framer-name\":\"Rectangle 76\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4a1va\",\"data-framer-name\":\"Frame 3687\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yuk1oc\",\"data-framer-name\":\"Frame 436\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:152,svg:'<svg width=\"152\" height=\"33\" viewBox=\"0 0 152 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"151.052\" height=\"32.6757\" rx=\"10.5631\" transform=\"matrix(-1 0 0 1 151.285 0.00634766)\" fill=\"url(#paint0_linear_49_775)\"/>\\n<path d=\"M9.14294 14.3442V8.44995H7.00332V7.70454H12.1108V8.44995H9.97117V14.3442H9.14294ZM13.3347 14.3442V7.41466H14.1354V10.1294H14.209C14.4575 9.60488 14.9222 9.2966 15.6538 9.2966C16.7673 9.2966 17.3885 9.95458 17.3885 11.1325V14.3442H16.5879V11.3258C16.5879 10.4331 16.2198 10.0052 15.4283 10.0052C14.6369 10.0052 14.1354 10.539 14.1354 11.4086V14.3442H13.3347ZM20.1999 14.4317C19.2566 14.4317 18.5434 13.8611 18.5434 12.9592V12.95C18.5434 12.0666 19.1968 11.5558 20.3517 11.4868L21.7735 11.3994V10.9485C21.7735 10.3365 21.4008 10.0052 20.66 10.0052C20.0665 10.0052 19.6753 10.2261 19.5465 10.6126L19.5419 10.6264H18.7413L18.7459 10.5988C18.8747 9.82115 19.6293 9.2966 20.6876 9.2966C21.8978 9.2966 22.5742 9.91777 22.5742 10.9485V14.3442H21.7735V13.6126H21.6999C21.387 14.1418 20.8671 14.4317 20.1999 14.4317ZM19.3625 12.9408C19.3625 13.4424 19.7904 13.7369 20.3655 13.7369C21.18 13.7369 21.7735 13.2031 21.7735 12.4945V12.0436L20.4484 12.1264C19.6938 12.1724 19.3625 12.4393 19.3625 12.9316V12.9408ZM24.0374 14.3442V9.38402H24.838V10.1294H24.9116C25.1601 9.60488 25.6248 9.2966 26.3565 9.2966C27.47 9.2966 28.0912 9.95458 28.0912 11.1325V14.3442H27.2905V11.3258C27.2905 10.4331 26.9224 10.0052 26.131 10.0052C25.3396 10.0052 24.838 10.539 24.838 11.4086V14.3442H24.0374ZM29.5866 14.3442V7.41466H30.3872V11.5512H30.4608L32.605 9.38402H33.5759L31.4133 11.4684L33.7186 14.3442H32.7109L30.8519 12.0114L30.3872 12.4623V14.3442H29.5866ZM36.1757 14.4317C35.0713 14.4317 34.3121 13.8979 34.2201 13.0789H35.0391C35.1726 13.493 35.5683 13.7645 36.2033 13.7645C36.8705 13.7645 37.3444 13.447 37.3444 12.9961V12.9869C37.3444 12.651 37.0913 12.4163 36.4794 12.269L35.7109 12.085C34.7815 11.8641 34.3627 11.4592 34.3627 10.746V10.7414C34.3627 9.91777 35.1542 9.2966 36.2079 9.2966C37.2478 9.2966 37.9702 9.81654 38.0806 10.6264H37.2938C37.188 10.2353 36.8014 9.96379 36.2033 9.96379C35.6143 9.96379 35.1818 10.2675 35.1818 10.7046V10.7138C35.1818 11.0497 35.4303 11.2614 36.0146 11.404L36.7784 11.5881C37.7125 11.8135 38.1634 12.2184 38.1634 12.927V12.9362C38.1634 13.8197 37.303 14.4317 36.1757 14.4317ZM44.3338 14.5007C42.8798 14.5007 41.9411 13.7369 41.8445 12.6556L41.8399 12.6049H42.6681L42.6727 12.6556C42.7325 13.3181 43.4227 13.7369 44.3798 13.7369C45.2817 13.7369 45.9397 13.2721 45.9397 12.5957V12.5911C45.9397 12.039 45.5577 11.6617 44.6467 11.4592L43.9105 11.2982C42.5807 11.0037 42.0055 10.3917 42.0055 9.43003V9.42543C42.0101 8.32572 42.9718 7.5481 44.343 7.5481C45.6682 7.5481 46.593 8.33032 46.6621 9.3196L46.6667 9.38402H45.8384L45.8292 9.3242C45.7372 8.73984 45.185 8.30731 44.32 8.31191C43.4918 8.31652 42.8522 8.70763 42.8522 9.40243V9.40703C42.8522 9.93618 43.2157 10.2951 44.1175 10.4929L44.8537 10.6586C46.2387 10.9669 46.7863 11.5236 46.7863 12.4807V12.4853C46.7863 13.7277 45.8154 14.5007 44.3338 14.5007ZM49.4275 14.4317C48.4842 14.4317 47.771 13.8611 47.771 12.9592V12.95C47.771 12.0666 48.4244 11.5558 49.5793 11.4868L51.0011 11.3994V10.9485C51.0011 10.3365 50.6284 10.0052 49.8876 10.0052C49.294 10.0052 48.9029 10.2261 48.7741 10.6126L48.7695 10.6264H47.9688L47.9734 10.5988C48.1023 9.82115 48.8569 9.2966 49.9152 9.2966C51.1253 9.2966 51.8017 9.91777 51.8017 10.9485V14.3442H51.0011V13.6126H50.9275C50.6146 14.1418 50.0946 14.4317 49.4275 14.4317ZM48.59 12.9408C48.59 13.4424 49.0179 13.7369 49.5931 13.7369C50.4075 13.7369 51.0011 13.2031 51.0011 12.4945V12.0436L49.6759 12.1264C48.9213 12.1724 48.59 12.4393 48.59 12.9316V12.9408ZM53.2649 14.3442V9.38402H54.0656V10.1202H54.1392C54.3279 9.60028 54.7926 9.2966 55.4644 9.2966C55.6162 9.2966 55.7865 9.315 55.8647 9.3288V10.1064C55.699 10.0788 55.5472 10.0604 55.3724 10.0604C54.6085 10.0604 54.0656 10.5436 54.0656 11.2706V14.3442H53.2649ZM58.216 14.4317C57.2727 14.4317 56.5595 13.8611 56.5595 12.9592V12.95C56.5595 12.0666 57.2129 11.5558 58.3678 11.4868L59.7896 11.3994V10.9485C59.7896 10.3365 59.4169 10.0052 58.6761 10.0052C58.0825 10.0052 57.6914 10.2261 57.5626 10.6126L57.558 10.6264H56.7573L56.7619 10.5988C56.8908 9.82115 57.6454 9.2966 58.7037 9.2966C59.9138 9.2966 60.5902 9.91777 60.5902 10.9485V14.3442H59.7896V13.6126H59.716C59.4031 14.1418 58.8832 14.4317 58.216 14.4317ZM57.3785 12.9408C57.3785 13.4424 57.8064 13.7369 58.3816 13.7369C59.196 13.7369 59.7896 13.2031 59.7896 12.4945V12.0436L58.4644 12.1264C57.7098 12.1724 57.3785 12.4393 57.3785 12.9316V12.9408ZM62.0995 14.3442V7.41466H62.9001V10.1294H62.9737C63.2222 9.60488 63.6869 9.2966 64.4185 9.2966C65.5321 9.2966 66.1532 9.95458 66.1532 11.1325V14.3442H65.3526V11.3258C65.3526 10.4331 64.9845 10.0052 64.1931 10.0052C63.4016 10.0052 62.9001 10.539 62.9001 11.4086V14.3442H62.0995ZM67.9385 12.1356L67.8603 7.69994H68.7806L68.7024 12.1356H67.9385ZM68.3251 14.4271C67.9523 14.4271 67.6855 14.1602 67.6855 13.7875C67.6855 13.4102 67.9523 13.1433 68.3251 13.1433C68.6978 13.1433 68.96 13.4102 68.96 13.7875C68.96 14.1602 68.6978 14.4271 68.3251 14.4271ZM73.2899 14.3442V7.70454H74.1181V14.3442H73.2899ZM80.3897 14.4317C79.0001 14.4317 78.112 13.424 78.112 11.8503V11.8411C78.112 10.2997 78.9955 9.2966 80.3851 9.2966C81.5906 9.2966 82.313 9.99139 82.4603 10.8748L82.4649 10.9025H81.6689L81.6643 10.8887C81.54 10.4009 81.0983 10.0052 80.3851 10.0052C79.4924 10.0052 78.9311 10.723 78.9311 11.8411V11.8503C78.9311 12.9915 79.5016 13.7231 80.3851 13.7231C81.0523 13.7231 81.4756 13.4286 81.6597 12.8764L81.6689 12.8488L82.4603 12.8442L82.4511 12.8948C82.2486 13.7921 81.5814 14.4317 80.3897 14.4317ZM84.9956 14.4317C84.0523 14.4317 83.3391 13.8611 83.3391 12.9592V12.95C83.3391 12.0666 83.9925 11.5558 85.1475 11.4868L86.5693 11.3994V10.9485C86.5693 10.3365 86.1966 10.0052 85.4557 10.0052C84.8622 10.0052 84.4711 10.2261 84.3422 10.6126L84.3376 10.6264H83.537L83.5416 10.5988C83.6704 9.82115 84.4251 9.2966 85.4834 9.2966C86.6935 9.2966 87.3699 9.91777 87.3699 10.9485V14.3442H86.5693V13.6126H86.4956C86.1828 14.1418 85.6628 14.4317 84.9956 14.4317ZM84.1582 12.9408C84.1582 13.4424 84.5861 13.7369 85.1613 13.7369C85.9757 13.7369 86.5693 13.2031 86.5693 12.4945V12.0436L85.2441 12.1264C84.4895 12.1724 84.1582 12.4393 84.1582 12.9316V12.9408ZM88.8331 14.3442V9.38402H89.6337V10.1294H89.7074C89.9558 9.60488 90.4206 9.2966 91.1522 9.2966C92.2657 9.2966 92.8869 9.95458 92.8869 11.1325V14.3442H92.0862V11.3258C92.0862 10.4331 91.7181 10.0052 90.9267 10.0052C90.1353 10.0052 89.6337 10.539 89.6337 11.4086V14.3442H88.8331ZM94.3317 10.3227L94.732 7.70454H95.6477L94.9253 10.3227H94.3317ZM98.8962 14.381C97.8747 14.381 97.4468 14.0037 97.4468 13.0559V10.0466H96.6646V9.38402H97.4468V8.10025H98.275V9.38402H99.3609V10.0466H98.275V12.8534C98.275 13.4378 98.4775 13.6724 98.9928 13.6724C99.1355 13.6724 99.2137 13.6678 99.3609 13.654V14.335C99.2045 14.3626 99.0526 14.381 98.8962 14.381ZM104.165 14.3442L102.775 9.38402H103.576L104.551 13.3504H104.625L105.734 9.38402H106.493L107.602 13.3504H107.676L108.651 9.38402H109.447L108.057 14.3442H107.252L106.143 10.5067H106.07L104.965 14.3442H104.165ZM111.729 14.4317C110.786 14.4317 110.073 13.8611 110.073 12.9592V12.95C110.073 12.0666 110.726 11.5558 111.881 11.4868L113.303 11.3994V10.9485C113.303 10.3365 112.93 10.0052 112.189 10.0052C111.596 10.0052 111.205 10.2261 111.076 10.6126L111.071 10.6264H110.271L110.275 10.5988C110.404 9.82115 111.159 9.2966 112.217 9.2966C113.427 9.2966 114.104 9.91777 114.104 10.9485V14.3442H113.303V13.6126H113.229C112.916 14.1418 112.396 14.4317 111.729 14.4317ZM110.892 12.9408C110.892 13.4424 111.32 13.7369 111.895 13.7369C112.709 13.7369 113.303 13.2031 113.303 12.4945V12.0436L111.978 12.1264C111.223 12.1724 110.892 12.4393 110.892 12.9316V12.9408ZM115.99 8.42695C115.686 8.42695 115.438 8.17848 115.438 7.87479C115.438 7.5711 115.686 7.32263 115.99 7.32263C116.294 7.32263 116.542 7.5711 116.542 7.87479C116.542 8.17848 116.294 8.42695 115.99 8.42695ZM115.585 14.3442V9.38402H116.386V14.3442H115.585ZM119.657 14.381C118.636 14.381 118.208 14.0037 118.208 13.0559V10.0466H117.426V9.38402H118.208V8.10025H119.036V9.38402H120.122V10.0466H119.036V12.8534C119.036 13.4378 119.239 13.6724 119.754 13.6724C119.897 13.6724 119.975 13.6678 120.122 13.654V14.335C119.966 14.3626 119.814 14.381 119.657 14.381ZM125.731 14.381C124.71 14.381 124.282 14.0037 124.282 13.0559V10.0466H123.499V9.38402H124.282V8.10025H125.11V9.38402H126.196V10.0466H125.11V12.8534C125.11 13.4378 125.312 13.6724 125.828 13.6724C125.97 13.6724 126.049 13.6678 126.196 13.654V14.335C126.039 14.3626 125.888 14.381 125.731 14.381ZM129.357 14.4317C127.944 14.4317 127.07 13.4562 127.07 11.8687V11.8595C127.07 10.2675 127.944 9.2966 129.357 9.2966C130.769 9.2966 131.644 10.2675 131.644 11.8595V11.8687C131.644 13.4562 130.769 14.4317 129.357 14.4317ZM129.357 13.7231C130.296 13.7231 130.825 13.0375 130.825 11.8687V11.8595C130.825 10.6862 130.296 10.0052 129.357 10.0052C128.418 10.0052 127.889 10.6862 127.889 11.8595V11.8687C127.889 13.0375 128.418 13.7231 129.357 13.7231ZM9.0187 24.4317C7.91438 24.4317 7.15517 23.8979 7.06314 23.0789H7.88218C8.01561 23.493 8.41133 23.7645 9.04631 23.7645C9.7135 23.7645 10.1874 23.447 10.1874 22.9961V22.9869C10.1874 22.651 9.93436 22.4163 9.32239 22.269L8.55397 22.085C7.6245 21.8641 7.20578 21.4592 7.20578 20.746V20.7414C7.20578 19.9178 7.99721 19.2966 9.05091 19.2966C10.0908 19.2966 10.8132 19.8165 10.9236 20.6264H10.1368C10.031 20.2353 9.64448 19.9638 9.04631 19.9638C8.45734 19.9638 8.02482 20.2675 8.02482 20.7046V20.7138C8.02482 21.0497 8.27329 21.2614 8.85765 21.404L9.62147 21.5881C10.5555 21.8135 11.0065 22.2184 11.0065 22.927V22.9362C11.0065 23.8197 10.146 24.4317 9.0187 24.4317ZM14.2734 24.4317C12.8562 24.4317 12.0004 23.4378 12.0004 21.8825V21.8779C12.0004 20.3457 12.8746 19.2966 14.2228 19.2966C15.571 19.2966 16.39 20.2997 16.39 21.7813V22.0942H12.8194C12.8424 23.1203 13.4084 23.7185 14.2918 23.7185C14.9636 23.7185 15.3777 23.401 15.5112 23.1019L15.5296 23.0605H16.3302L16.321 23.0973C16.1507 23.7691 15.4421 24.4317 14.2734 24.4317ZM14.2182 20.0098C13.482 20.0098 12.9206 20.5113 12.8332 21.4546H15.5756C15.4928 20.4745 14.9498 20.0098 14.2182 20.0098ZM19.6569 24.4317C18.2397 24.4317 17.3839 23.4378 17.3839 21.8825V21.8779C17.3839 20.3457 18.2581 19.2966 19.6063 19.2966C20.9545 19.2966 21.7735 20.2997 21.7735 21.7813V22.0942H18.2029C18.2259 23.1203 18.7919 23.7185 19.6753 23.7185C20.3471 23.7185 20.7613 23.401 20.8947 23.1019L20.9131 23.0605H21.7137L21.7045 23.0973C21.5343 23.7691 20.8257 24.4317 19.6569 24.4317ZM19.6017 20.0098C18.8655 20.0098 18.3042 20.5113 18.2167 21.4546H20.9591C20.8763 20.4745 20.3333 20.0098 19.6017 20.0098ZM23.6693 24.3903C23.3426 24.3903 23.0711 24.1188 23.0711 23.7921C23.0711 23.4608 23.3426 23.1939 23.6693 23.1939C24.0006 23.1939 24.2675 23.4608 24.2675 23.7921C24.2675 24.1188 24.0006 24.3903 23.6693 24.3903ZM26.4669 24.3903C26.1402 24.3903 25.8687 24.1188 25.8687 23.7921C25.8687 23.4608 26.1402 23.1939 26.4669 23.1939C26.7982 23.1939 27.0651 23.4608 27.0651 23.7921C27.0651 24.1188 26.7982 24.3903 26.4669 24.3903ZM29.2645 24.3903C28.9378 24.3903 28.6663 24.1188 28.6663 23.7921C28.6663 23.4608 28.9378 23.1939 29.2645 23.1939C29.5958 23.1939 29.8627 23.4608 29.8627 23.7921C29.8627 24.1188 29.5958 24.3903 29.2645 24.3903ZM35.7615 24.4317C34.6572 24.4317 33.898 23.8979 33.806 23.0789H34.625C34.7585 23.493 35.1542 23.7645 35.7892 23.7645C36.4563 23.7645 36.9303 23.447 36.9303 22.9961V22.9869C36.9303 22.651 36.6772 22.4163 36.0652 22.269L35.2968 22.085C34.3673 21.8641 33.9486 21.4592 33.9486 20.746V20.7414C33.9486 19.9178 34.7401 19.2966 35.7938 19.2966C36.8337 19.2966 37.5561 19.8165 37.6665 20.6264H36.8797C36.7738 20.2353 36.3873 19.9638 35.7892 19.9638C35.2002 19.9638 34.7677 20.2675 34.7677 20.7046V20.7138C34.7677 21.0497 35.0161 21.2614 35.6005 21.404L36.3643 21.5881C37.2984 21.8135 37.7493 22.2184 37.7493 22.927V22.9362C37.7493 23.8197 36.8889 24.4317 35.7615 24.4317ZM41.0162 24.4317C39.599 24.4317 38.7432 23.4378 38.7432 21.8825V21.8779C38.7432 20.3457 39.6174 19.2966 40.9656 19.2966C42.3138 19.2966 43.1329 20.2997 43.1329 21.7813V22.0942H39.5622C39.5852 23.1203 40.1512 23.7185 41.0347 23.7185C41.7064 23.7185 42.1206 23.401 42.254 23.1019L42.2724 23.0605H43.073L43.0638 23.0973C42.8936 23.7691 42.185 24.4317 41.0162 24.4317ZM40.961 20.0098C40.2248 20.0098 39.6635 20.5113 39.576 21.4546H42.3184C42.2356 20.4745 41.6926 20.0098 40.961 20.0098ZM44.3752 24.3442V19.384H45.1758V20.1294H45.2495C45.4979 19.6049 45.9627 19.2966 46.6943 19.2966C47.8078 19.2966 48.429 19.9546 48.429 21.1325V24.3442H47.6283V21.3258C47.6283 20.4331 47.2602 20.0052 46.4688 20.0052C45.6774 20.0052 45.1758 20.539 45.1758 21.4086V24.3442H44.3752ZM51.7097 24.4317C50.4535 24.4317 49.6299 23.4148 49.6299 21.8687V21.8595C49.6299 20.3043 50.4489 19.2966 51.7097 19.2966C52.3907 19.2966 52.9843 19.6371 53.2557 20.1662H53.3294V17.4147H54.13V24.3442H53.3294V23.5528H53.2557C52.9521 24.105 52.3999 24.4317 51.7097 24.4317ZM51.8938 23.7231C52.7956 23.7231 53.3478 23.0145 53.3478 21.8687V21.8595C53.3478 20.7138 52.7956 20.0052 51.8938 20.0052C50.9873 20.0052 50.4489 20.7046 50.4489 21.8595V21.8687C50.4489 23.0237 50.9873 23.7231 51.8938 23.7231ZM56.0902 18.4269C55.7865 18.4269 55.538 18.1785 55.538 17.8748C55.538 17.5711 55.7865 17.3226 56.0902 17.3226C56.3938 17.3226 56.6423 17.5711 56.6423 17.8748C56.6423 18.1785 56.3938 18.4269 56.0902 18.4269ZM55.6852 24.3442V19.384H56.4859V24.3442H55.6852ZM57.9951 24.3442V19.384H58.7957V20.1294H58.8694C59.1178 19.6049 59.5826 19.2966 60.3142 19.2966C61.4277 19.2966 62.0489 19.9546 62.0489 21.1325V24.3442H61.2482V21.3258C61.2482 20.4331 60.8801 20.0052 60.0887 20.0052C59.2973 20.0052 58.7957 20.539 58.7957 21.4086V24.3442H57.9951ZM65.5413 26.0927C64.3449 26.0927 63.5811 25.5544 63.4569 24.74L63.4661 24.7354H64.2943L64.2989 24.74C64.3863 25.1173 64.8281 25.3841 65.5413 25.3841C66.4293 25.3841 66.9585 24.9654 66.9585 24.2338V23.2307H66.8848C66.5719 23.7783 66.0106 24.0866 65.3296 24.0866C64.0458 24.0866 63.2498 23.0927 63.2498 21.7031V21.6939C63.2498 20.3043 64.0504 19.2966 65.348 19.2966C66.0474 19.2966 66.5904 19.6417 66.894 20.2031H66.9493V19.384H67.7499V24.2752C67.7499 25.3841 66.894 26.0927 65.5413 26.0927ZM65.5044 23.378C66.4247 23.378 66.9769 22.6878 66.9769 21.7031V21.6939C66.9769 20.7092 66.4201 20.0052 65.5044 20.0052C64.5842 20.0052 64.0688 20.7092 64.0688 21.6939V21.7031C64.0688 22.6878 64.5842 23.378 65.5044 23.378ZM71.8911 26.0007V19.384H72.6917V20.1754H72.7653C73.069 19.6233 73.6212 19.2966 74.3114 19.2966C75.5675 19.2966 76.3912 20.3135 76.3912 21.8595V21.8687C76.3912 23.424 75.5721 24.4317 74.3114 24.4317C73.6304 24.4317 73.0368 24.0912 72.7653 23.562H72.6917V26.0007H71.8911ZM74.1273 23.7231C75.0338 23.7231 75.5721 23.0237 75.5721 21.8687V21.8595C75.5721 20.7046 75.0338 20.0052 74.1273 20.0052C73.2255 20.0052 72.6733 20.7138 72.6733 21.8595V21.8687C72.6733 23.0145 73.2255 23.7231 74.1273 23.7231ZM79.0047 24.4317C78.0614 24.4317 77.3482 23.8611 77.3482 22.9592V22.95C77.3482 22.0666 78.0016 21.5558 79.1565 21.4868L80.5784 21.3994V20.9485C80.5784 20.3365 80.2056 20.0052 79.4648 20.0052C78.8713 20.0052 78.4802 20.2261 78.3513 20.6126L78.3467 20.6264H77.5461L77.5507 20.5988C77.6795 19.8211 78.4341 19.2966 79.4924 19.2966C80.7026 19.2966 81.379 19.9178 81.379 20.9485V24.3442H80.5784V23.6126H80.5047C80.1918 24.1418 79.6719 24.4317 79.0047 24.4317ZM78.1673 22.9408C78.1673 23.4424 78.5952 23.7369 79.1704 23.7369C79.9848 23.7369 80.5784 23.2031 80.5784 22.4945V22.0436L79.2532 22.1264C78.4986 22.1724 78.1673 22.4393 78.1673 22.9316V22.9408ZM83.0815 26.0835C82.9756 26.0835 82.8376 26.0743 82.7272 26.0559V25.3979C82.8238 25.4163 82.948 25.4209 83.0585 25.4209C83.514 25.4209 83.7901 25.2139 83.9695 24.6433L84.0615 24.3488L82.2256 19.384H83.0815L84.4435 23.4654H84.5171L85.8745 19.384H86.7165L84.7794 24.6479C84.3698 25.7614 83.9603 26.0835 83.0815 26.0835ZM87.7748 24.3442V19.384H88.5754V20.1386H88.6491C88.8699 19.6049 89.3393 19.2966 89.988 19.2966C90.6598 19.2966 91.1292 19.6509 91.3592 20.1662H91.4329C91.6997 19.6417 92.2657 19.2966 92.9513 19.2966C93.9636 19.2966 94.5295 19.8764 94.5295 20.9163V24.3442H93.7289V21.1003C93.7289 20.3687 93.393 20.0052 92.6936 20.0052C92.0034 20.0052 91.5479 20.5251 91.5479 21.1555V24.3442H90.7473V20.9761C90.7473 20.3871 90.3423 20.0052 89.7166 20.0052C89.0678 20.0052 88.5754 20.5712 88.5754 21.2706V24.3442H87.7748ZM97.9989 24.4317C96.5817 24.4317 95.7259 23.4378 95.7259 21.8825V21.8779C95.7259 20.3457 96.6001 19.2966 97.9483 19.2966C99.2965 19.2966 100.116 20.2997 100.116 21.7813V22.0942H96.5449C96.5679 23.1203 97.1339 23.7185 98.0173 23.7185C98.6891 23.7185 99.1033 23.401 99.2367 23.1019L99.2551 23.0605H100.056L100.047 23.0973C99.8763 23.7691 99.1677 24.4317 97.9989 24.4317ZM97.9437 20.0098C97.2075 20.0098 96.6461 20.5113 96.5587 21.4546H99.3011C99.2183 20.4745 98.6753 20.0098 97.9437 20.0098ZM101.358 24.3442V19.384H102.159V20.1294H102.232C102.481 19.6049 102.945 19.2966 103.677 19.2966C104.79 19.2966 105.412 19.9546 105.412 21.1325V24.3442H104.611V21.3258C104.611 20.4331 104.243 20.0052 103.451 20.0052C102.66 20.0052 102.159 20.539 102.159 21.4086V24.3442H101.358ZM108.623 24.381C107.602 24.381 107.174 24.0037 107.174 23.0559V20.0466H106.392V19.384H107.174V18.1003H108.002V19.384H109.088V20.0466H108.002V22.8534C108.002 23.4378 108.205 23.6724 108.72 23.6724C108.863 23.6724 108.941 23.6678 109.088 23.654V24.335C108.932 24.3626 108.78 24.381 108.623 24.381ZM112.935 24.3442V19.384H113.735V20.1294H113.809C114.058 19.6049 114.522 19.2966 115.254 19.2966C116.367 19.2966 116.989 19.9546 116.989 21.1325V24.3442H116.188V21.3258C116.188 20.4331 115.82 20.0052 115.028 20.0052C114.237 20.0052 113.735 20.539 113.735 21.4086V24.3442H112.935ZM120.476 24.4317C119.064 24.4317 118.19 23.4562 118.19 21.8687V21.8595C118.19 20.2675 119.064 19.2966 120.476 19.2966C121.889 19.2966 122.763 20.2675 122.763 21.8595V21.8687C122.763 23.4562 121.889 24.4317 120.476 24.4317ZM120.476 23.7231C121.415 23.7231 121.944 23.0375 121.944 21.8687V21.8595C121.944 20.6862 121.415 20.0052 120.476 20.0052C119.538 20.0052 119.009 20.6862 119.009 21.8595V21.8687C119.009 23.0375 119.538 23.7231 120.476 23.7231ZM124.779 24.3442L123.389 19.384H124.19L125.165 23.3504H125.239L126.348 19.384H127.107L128.216 23.3504H128.289L129.265 19.384H130.061L128.671 24.3442H127.866L126.757 20.5067H126.684L125.579 24.3442H124.779ZM133.024 25.0039H142.448V15.5804H133.024V25.0039Z\" fill=\"white\"/>\\n<path d=\"M8.79153 29.7532L6.47174 27.2437C5.7899 26.506 4.57556 26.6639 4.0713 27.5326C3.34169 28.7896 2.32642 30.4137 1.42321 31.413C0.708851 32.2033 -0.226522 32.933 -1.05459 33.5049C-1.63866 33.9082 -1.41956 34.7898 -0.710781 34.7516C0.496452 34.6867 2.07821 34.4878 3.79013 33.9735C5.90806 33.3371 7.56784 32.4091 8.60238 31.7298C9.28539 31.2813 9.34617 30.3532 8.79153 29.7532Z\" fill=\"#087FFE\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_49_775\" x1=\"75.5259\" y1=\"32.6757\" x2=\"75.5259\" y2=\"0\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#3998FE\"/>\\n<stop offset=\"1\" stop-color=\"#3998FE\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5fvdq\",\"data-framer-name\":\"Frame 3683\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks3smy\",\"data-framer-name\":\"logo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+582-469+0+108.7993+194.5283+27.0228+.1645),pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+2426.4+0+0+0+502+209+582-569+0+108.7993+194.5283+27.0228+.1645),pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+582-469+0+108.7993+194.5283+27.0228+.1645),pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"},className:\"framer-1kg3i1r\",\"data-framer-name\":\"PNG 3 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13.85px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.52px\",\"--framer-line-height\":\"14.3px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TXT.com\"})}),className:\"framer-3ve2kq\",\"data-framer-name\":\"TXT.com\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w7pwn9\",\"data-framer-name\":\"Frame 3685\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjd2b7\",\"data-framer-name\":\"Frame 3686\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTYwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"7.58px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"You\u2019ve received a tip! Log in to withdrawal your funds.\"})}),className:\"framer-1ddkpk9\",\"data-framer-name\":\"You\u2019ve received a tip! Log in to withdrawal your funds.\",fonts:[\"GF;SF Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"6.2px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgba(28, 28, 28, 0.6)\"},children:\"txt.com\"})}),className:\"framer-1q50mb5\",\"data-framer-name\":\"txt.com\",fonts:[\"GF;SF Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cjap6l\",\"data-framer-name\":\"Frame 3689\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ffgp2c\",\"data-framer-name\":\"Frame 435\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtcmVndWxhcg==\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"9.42px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Hey James! Here\u2019s the tutorial for the song you asked about! \uD83C\uDFB8\uD83C\uDFB8\uD83C\uDFB6 \"})}),className:\"framer-11jo1\",\"data-framer-name\":\"Hey James! Here\u2019s the tutorial for the song you asked about! \uD83C\uDFB8\uD83C\uDFB8\uD83C\uDFB6\",fonts:[\"GF;SF Pro Text-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0+2426.4+0+0+0+156.4+209+582-469+0+108.7993+14.728+0+70.2848),pixelHeight:240,pixelWidth:244,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MoUev6nXMltQFp3aOGxqu5n7Hs.png\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3601.6+0+2426.4+0+0+0+502+209+582-569+0+108.7993+14.728+0+70.2848),pixelHeight:240,pixelWidth:244,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MoUev6nXMltQFp3aOGxqu5n7Hs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4392+0+2426.4+0+0+0+156.4+209+582-469+0+108.7993+14.728+0+70.2848),pixelHeight:240,pixelWidth:244,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MoUev6nXMltQFp3aOGxqu5n7Hs.png\"},className:\"framer-1t4puop\",\"data-border\":true,\"data-framer-name\":\"Frame 3667\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19jjrtt\",\"data-framer-name\":\"Frame 3668\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"24\" viewBox=\"0 0 26 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.677002\" y=\"0.125\" width=\"24.936\" height=\"23.1963\" rx=\"11.5981\" fill=\"white\" fill-opacity=\"0.3\"/>\\n<rect x=\"0.84735\" y=\"0.295348\" width=\"24.5953\" height=\"22.8556\" rx=\"11.4278\" stroke=\"white\" stroke-opacity=\"0.5\" stroke-width=\"0.340696\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5073 7.6001C12.3396 7.6001 11.3931 8.54668 11.3931 9.71434V10.4543H10.8645C10.4558 10.4543 10.1245 10.7856 10.1245 11.1943V15.2114C10.1245 15.6201 10.4558 15.9514 10.8645 15.9514H16.1501C16.5588 15.9514 16.8901 15.6201 16.8901 15.2114V11.1943C16.8901 10.7856 16.5588 10.4543 16.1501 10.4543H15.6215V9.71434C15.6215 8.54668 14.675 7.6001 13.5073 7.6001ZM14.9873 10.4543V9.71434C14.9873 8.89698 14.3247 8.23437 13.5073 8.23437C12.6899 8.23437 12.0273 8.89698 12.0273 9.71434V10.4543H14.9873ZM13.5073 12.2514C13.6825 12.2514 13.8244 12.3934 13.8244 12.5686V13.8371C13.8244 14.0123 13.6825 14.1543 13.5073 14.1543C13.3322 14.1543 13.1902 14.0123 13.1902 13.8371V12.5686C13.1902 12.3934 13.3322 12.2514 13.5073 12.2514Z\" fill=\"#F2F2F2\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNTAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"5.8px\",\"--framer-font-weight\":\"499\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(130, 130, 130)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNzAw\",\"--framer-font-weight\":\"699\"},children:\"Read \"}),\"9:41 AM\"]})}),className:\"framer-1mrfis5\",\"data-framer-name\":\"Read 9:41 AM\",fonts:[\"GF;SF Pro Text-500\",\"GF;SF Pro Text-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1evsf3d\",\"data-framer-name\":\"Frame 3688\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"31\" viewBox=\"0 0 28 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"11.9606\" cy=\"11.9606\" r=\"11.9606\" transform=\"matrix(-1 0 0 1 24.6709 0.626465)\" fill=\"url(#paint0_radial_49_796)\"/>\\n<circle cx=\"3.62442\" cy=\"3.62442\" r=\"3.62442\" transform=\"matrix(-1 0 0 1 23.946 17.2988)\" fill=\"url(#paint1_radial_49_796)\"/>\\n<circle cx=\"2.89954\" cy=\"2.89954\" r=\"2.89954\" transform=\"matrix(-1 0 0 1 27.5703 24.5474)\" fill=\"url(#paint2_radial_49_796)\"/>\\n<path d=\"M11.9952 8.76439C12.1294 8.8376 12.2472 8.91109 12.3477 8.97949C12.4483 8.91109 12.5661 8.8376 12.7003 8.76439C13.1823 8.5015 13.8854 7.5127 14.764 7.5127C15.6812 7.5127 16.5974 7.88032 17.2812 8.60972C17.9679 9.34221 18.3884 10.4037 18.3884 11.7412C18.3884 13.7617 16.9551 15.4274 15.6207 16.5298C14.9372 17.0944 14.2404 17.5442 13.6817 17.8545C13.4025 18.0096 13.1519 18.1332 12.9494 18.22C12.8487 18.2632 12.7531 18.3002 12.6676 18.3275C12.6024 18.3484 12.4781 18.386 12.3477 18.386C12.2173 18.386 12.093 18.3484 12.0278 18.3275C11.9424 18.3002 11.8468 18.2632 11.7461 18.22C11.5436 18.1332 11.293 18.0096 11.0138 17.8545C10.4551 17.5442 9.7583 17.0944 9.0748 16.5298C7.74035 15.4274 6.30703 13.7617 6.30703 11.7412C6.30703 10.4037 6.72756 9.34221 7.41426 8.60972C8.09808 7.88032 9.01428 7.5127 9.93145 7.5127C10.8101 7.5127 11.5132 8.5015 11.9952 8.76439Z\" fill=\"url(#paint3_linear_49_796)\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_49_796\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(11.9606 11.9606) rotate(-90) scale(11.9606)\">\\n<stop stop-color=\"#0085FF\"/>\\n<stop offset=\"1\" stop-color=\"#339DFF\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_radial_49_796\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(3.62442 3.62442) rotate(-90) scale(3.62442)\">\\n<stop stop-color=\"#0085FF\"/>\\n<stop offset=\"1\" stop-color=\"#339DFF\"/>\\n</radialGradient>\\n<radialGradient id=\"paint2_radial_49_796\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(2.89954 2.89954) rotate(-90) scale(2.89954)\">\\n<stop stop-color=\"#0085FF\"/>\\n<stop offset=\"1\" stop-color=\"#339DFF\"/>\\n</radialGradient>\\n<linearGradient id=\"paint3_linear_49_796\" x1=\"12.3477\" y1=\"7.5127\" x2=\"12.3477\" y2=\"18.386\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF7A92\"/>\\n<stop offset=\"1\" stop-color=\"#FF3D5F\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i0mcwq\",\"data-framer-name\":\"Spacer\",id:elementId5,ref:ref6})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6972.8),pixelHeight:1800,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png\",srcSet:\"https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png 2880w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7570),pixelHeight:1800,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png\",srcSet:\"https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8014.8),pixelHeight:1800,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png\",srcSet:\"https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8SY57RAXqTkg9kknq8Cwa09bkQE.png 2880w\"},className:\"framer-1fu54v0\",\"data-framer-name\":\"yourdata\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-po32tb\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your data?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your data?\"})}),className:\"framer-u83irg\",\"data-framer-name\":\"Your data?\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1af53bz\",\"data-framer-name\":\"Frame 3691\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Always private, fully secure.\"})}),className:\"framer-1c9blab\",\"data-framer-name\":\"Always private, fully secure.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c4fv1f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:57,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"57\" viewBox=\"-1 -1 120 57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M94.9451 1.17858C72.4076 -0.819301 22.7292 2.01422 4.31618 29.3314C-18.7002 63.4778 60.1266 56.1189 89.5957 48.1422C107.228 43.3695 118.203 35.0378 117.133 24.7467C116.211 15.8868 94.483 4.68681 57.927 11.0335\" stroke=\"url(#paint0_linear_17_2293)\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_2293\" x1=\"-2.66703\" y1=\"58.0228\" x2=\"31.091\" y2=\"-32.279\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#D21EB4\"/>\\n<stop offset=\"1\" stop-color=\"#FFC400\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vtobkw\",\"data-framer-name\":\"Frame 3690\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uD83D\uDD12 All the data on TXT is hosted on Google Servers in the US.\"})}),className:\"framer-wpwyi2\",\"data-framer-name\":\"\uD83D\uDD12 All the data on TXT is hosted on Google Servers in the US.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uD83D\uDD12 All of your data on TXT is secured by TLS (SSL)\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"256-bit encryption.\"})]}),className:\"framer-t0uplj\",\"data-framer-name\":\"\uD83D\uDD12 All of your data on TXT is secured by TLS (SSL) 256-bit encryption.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uD83D\uDD12 All the creator & fan information stays private and is not shared between parties.\"})}),className:\"framer-j16ytu\",\"data-framer-name\":\"\uD83D\uDD12 All the creator & fan information stays private and is not shared between parties.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{y:(componentViewport?.y||0)+0+6972.8+-23.0841+0+882.1683},YmLpajpHy:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+7570+40+-184+0+1094}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+8014.8+-23.0841+0+882.1683,children:/*#__PURE__*/_jsx(Container,{className:\"framer-euvt92-container\",nodeId:\"jc3lHcC64\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CTAWhite,{height:\"100%\",id:\"jc3lHcC64\",layoutId:\"jc3lHcC64\",variant:\"oMGsw81V3\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-194h8bq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900.5,intrinsicWidth:621,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6972.8+0+0),pixelHeight:1801,pixelWidth:1242,src:\"https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png?scale-down-to=1024 706w,https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png 1242w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900.5,intrinsicWidth:621,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7570+40+994+0),pixelHeight:1801,pixelWidth:1242,sizes:`calc(${componentViewport?.width||\"100vw\"} + 346px)`,src:\"https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png?scale-down-to=1024 706w,https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png 1242w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900.5,intrinsicWidth:621,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8014.8+0+0),pixelHeight:1801,pixelWidth:1242,sizes:\"566px\",src:\"https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png?scale-down-to=1024 706w,https://framerusercontent.com/images/2pTUZfJ6vmfUgEkiMHWRY06XpqQ.png 1242w\"},className:\"framer-a0dtxo\",\"data-framer-name\":\"Image\"})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15l91er hidden-nvs5po hidden-140azaa\",\"data-framer-name\":\"bento-desktop\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bx02ca\",\"data-framer-name\":\"row1\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vb9x95\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wrq84m\",\"data-framer-name\":\"IMessage_logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:77,intrinsicWidth:77,svg:'<svg width=\"77\" height=\"77\" viewBox=\"0 0 77 77\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_2304)\">\\n<path d=\"M60.2179 0.420898H17.5821C8.31354 0.420898 0.799896 7.93455 0.799896 17.2031V59.8389C0.799896 69.1074 8.31354 76.6211 17.5821 76.6211H60.2179C69.4865 76.6211 77.0001 69.1074 77.0001 59.8389V17.2031C77.0001 7.93455 69.4865 0.420898 60.2179 0.420898Z\" fill=\"url(#paint0_linear_17_2304)\"/>\\n<path d=\"M38.9004 13.6099C31.4827 13.6099 24.3688 16.0643 19.1238 20.4331C13.8787 24.8019 10.932 30.7273 10.9319 36.9057C10.9387 40.9244 12.1935 44.8734 14.5744 48.3688C16.9552 51.8641 20.3812 54.7871 24.5194 56.8535C23.4172 59.3209 21.7642 61.6347 19.6289 63.699C23.7699 62.972 27.6571 61.445 30.9881 59.2365C33.5564 59.8722 36.2211 60.1972 38.9004 60.2015C46.3181 60.2015 53.4319 57.7471 58.677 53.3783C63.9221 49.0095 66.8688 43.0841 66.8688 36.9057C66.8688 30.7273 63.9221 24.8019 58.677 20.4331C53.4319 16.0643 46.3181 13.6099 38.9004 13.6099Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_2304\" x1=\"39.5048\" y1=\"71.5629\" x2=\"39.5048\" y2=\"9.87769\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0CBD2A\"/>\\n<stop offset=\"1\" stop-color=\"#5BF675\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_2304\">\\n<rect width=\"76.2002\" height=\"76.2002\" fill=\"white\" transform=\"translate(0.799896 0.420898)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18a3r0n\",\"data-framer-name\":\"Frame 3702\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Native \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Texts\"})]})}),className:\"framer-13e1kkf\",\"data-framer-name\":\"Native Texts\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"No Green bubbles!\"})}),className:\"framer-1lbht1e\",\"data-framer-name\":\"Place holder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9vsah6\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1017h7t\",\"data-framer-name\":\"Frame 3701\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Share Multi\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Media Content\"})]}),className:\"framer-owl86j\",\"data-framer-name\":\"Share Multi Media Content\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Share audio, video, and images!\"})}),className:\"framer-10zfvrn\",\"data-framer-name\":\"Placeholder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8914.8+0+0+0+30),pixelHeight:805,pixelWidth:816,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png\",srcSet:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png 816w\"},className:\"framer-1gw5fai\",\"data-framer-name\":\"Frame 3667\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1izjkb8\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1806vp2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"No Middlemen\"})}),className:\"framer-1uhtecw\",\"data-framer-name\":\"No Middlemen\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"You own the relationship with your fans!\"})}),className:\"framer-utdnn7\",\"data-framer-name\":\"Placeholder Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10hotee\",\"data-framer-name\":\"Frame 3683\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ws0gy\",\"data-framer-name\":\"logo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8914.8+0+0+0+30+107+27.0228+.1645),pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"},className:\"framer-i29jw5\",\"data-framer-name\":\"PNG 3 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13.85px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.52px\",\"--framer-line-height\":\"14.3px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TXT.com\"})}),className:\"framer-dnfxb7\",\"data-framer-name\":\"TXT.com\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hzl8hp\",\"data-framer-name\":\"Frame 3685\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrddhq\",\"data-framer-name\":\"Frame 3686\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTYwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"7.58px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"You\u2019ve received a tip! Log in to access your funds.\"})}),className:\"framer-183rcpn\",\"data-framer-name\":\"You\u2019ve received a tip! Log in to withdrawal your funds.\",fonts:[\"GF;SF Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"6.2px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgba(28, 28, 28, 0.6)\"},children:\"txt.com\"})}),className:\"framer-1a86hm4\",\"data-framer-name\":\"txt.com\",fonts:[\"GF;SF Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3qtql\",\"data-framer-name\":\"row2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mwgae7\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jkeyog\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\uD83C\uDF89\"})}),className:\"framer-115q9i3\",\"data-framer-name\":\"\uD83C\uDF89\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cdsxdm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Receive \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Tips\"})]})}),className:\"framer-9ie9hs\",\"data-framer-name\":\"Receive Tips\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:[\"Let your fans send you \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"any tip\"}),\" they\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"want straight to your bank\"})]}),className:\"framer-uxy0ec\",\"data-framer-name\":\"Let your fans send you any tip they want straight to your bank\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fp92r4\",\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:\"Why Creators\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:[\"love\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"700\"},children:\" TXT\"})]})})]}),className:\"framer-1kzyxxu\",\"data-framer-name\":\"Why Creators love TXT\",fonts:[\"Inter-Bold\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rsh2d3\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-io3jak\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\uD83D\uDCA1\"})}),className:\"framer-1qofyt6\",\"data-framer-name\":\"\uD83D\uDCA1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1koxyaf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn Your\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trends\"})]}),className:\"framer-pqwmtb\",\"data-framer-name\":\"Content Suggestions\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Detailed analytics on your performance. \"})}),className:\"framer-17s14mo\",\"data-framer-name\":\"Placeholder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fjd9vd\",\"data-framer-name\":\"row3\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7tw018\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-badc12\",\"data-framer-name\":\"Frame 3696\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Profile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Customization\"})]}),className:\"framer-hkfi5w\",\"data-framer-name\":\"Profile Customisation\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Customize your profile to match your brand.\"})}),className:\"framer-1vk0u1y\",\"data-framer-name\":\"Customise your profile to match your style and show all your links on your profile.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:348.5,intrinsicWidth:278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8914.8+0+590+0+40+-18),pixelHeight:697,pixelWidth:556,sizes:\"176px\",src:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png 556w\"},className:\"framer-ltqwa4\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bzm83o\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l42i9b\",\"data-framer-name\":\"Frame 3715\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:203,intrinsicWidth:148,svg:'<svg width=\"148\" height=\"203\" viewBox=\"0 0 148 203\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_2356)\">\\n<path d=\"M5.57001 11.9723C5.17795 11.9728 4.78589 11.9754 4.39386 11.9801C4.00526 11.993 3.60889 12.0138 3.22288 12.0837C2.63952 12.1759 2.08638 12.4053 1.60898 12.753C1.13157 13.1007 0.743535 13.5567 0.476801 14.0837C0.295456 14.4412 0.181467 14.8039 0.11411 15.1977C0.0415724 15.5811 0.0182566 15.9749 0.0104847 16.3635C0.00518111 16.5439 0.00172673 16.7244 0.00012207 16.9049L0.00012207 46.845C0.00012207 47.0263 0.00530336 47.2025 0.00789401 47.3812C0.0182566 47.7698 0.0415724 48.1662 0.11152 48.5522C0.181467 48.9408 0.298046 49.3061 0.479391 49.6636C0.836628 50.3669 1.40818 50.9385 2.1115 51.2957C2.46901 51.4771 2.8317 51.5936 3.22548 51.6636C3.60889 51.7335 4.00267 51.7568 4.39127 51.7672L4.93012 51.775H57.2456L57.7819 51.7672C58.1705 51.7568 58.5668 51.7335 58.9528 51.6636C59.3414 51.5936 59.7067 51.4796 60.0616 51.2983C60.7667 50.9414 61.3395 50.3687 61.6963 49.6636C61.8777 49.3061 61.9943 48.9434 62.0616 48.5496C62.1316 48.1662 62.1549 47.7724 62.1652 47.3838C62.1704 47.2025 62.173 47.0263 62.173 46.845L62.1756 46.2077V16.9023C62.1756 16.721 62.1704 16.5448 62.1652 16.366C62.1604 15.9737 62.1257 15.5822 62.0616 15.1951C61.9377 14.4149 61.5703 13.6939 61.0119 13.1351C60.4536 12.5763 59.7329 12.2083 58.9528 12.0837C58.5657 12.0199 58.1742 11.9852 57.7819 11.9801C57.3908 11.969 56.9995 11.9664 56.6083 11.9723H5.57001ZM5.57001 13.2987H57.2327C57.4036 13.2987 57.572 13.3039 57.743 13.3065C58.0409 13.3169 58.3907 13.3324 58.7145 13.3894C58.9969 13.4412 59.2326 13.5189 59.458 13.6329C59.9125 13.8636 60.2817 14.2329 60.5124 14.6873C60.6311 14.9221 60.7132 15.1738 60.7559 15.4334C60.8129 15.7521 60.8285 16.1018 60.8362 16.4023C60.8414 16.5707 60.844 16.7391 60.844 16.9127V46.8398C60.844 47.0082 60.844 47.1766 60.8362 47.3476C60.8285 47.6455 60.8129 47.9952 60.7533 48.3191C60.6973 48.7003 60.5503 49.0624 60.3249 49.3749C60.0994 49.6873 59.8021 49.941 59.458 50.1144C59.2247 50.2324 58.9749 50.3145 58.7171 50.3579C58.3974 50.4087 58.0745 50.4364 57.7508 50.4408L57.2327 50.4486H4.93789C4.76691 50.4486 4.59334 50.4434 4.43013 50.4408C4.10472 50.4366 3.78005 50.4089 3.45863 50.3579C3.17625 50.3061 2.9405 50.2284 2.71253 50.1144C2.25808 49.8846 1.8894 49.515 1.66073 49.06C1.54235 48.825 1.46025 48.5734 1.4172 48.3139C1.36575 47.9943 1.33805 47.6713 1.3343 47.3476C1.33083 47.1775 1.3291 47.0073 1.32912 46.8372V16.9101C1.32912 16.7417 1.32912 16.5707 1.3343 16.3997C1.34467 16.1044 1.36021 15.7572 1.4172 15.4282C1.46902 15.1484 1.54674 14.9127 1.66073 14.6847C1.89156 14.231 2.26086 13.8626 2.71512 13.6329C2.94965 13.5156 3.20018 13.4336 3.45863 13.3894C3.78246 13.3324 4.1322 13.3143 4.43013 13.3065C4.59852 13.3013 4.7695 13.3013 4.93789 13.2987H5.57001ZM17.7719 22.8841C16.9948 22.9256 16.0414 23.3996 15.4922 24.0654C14.9974 24.6354 14.5595 25.568 14.6735 26.4437C15.5492 26.5214 16.4222 26.0058 16.974 25.3608C17.5051 24.6924 17.8678 23.7986 17.7719 22.8867V22.8841ZM23.4895 23.9722V38.2026H25.6967V33.3399H28.7537C31.5464 33.3399 33.5075 31.4255 33.5075 28.6457C33.5075 25.8737 31.5853 23.9696 28.8236 23.9696L23.4895 23.9722ZM25.6967 25.8348H28.2407C30.1552 25.8348 31.2485 26.8607 31.2485 28.6561C31.2485 30.4488 30.1552 31.485 28.233 31.485H25.6967V25.8348ZM17.5258 26.612C16.36 26.6379 15.3756 27.3374 14.8057 27.3374C14.1969 27.3374 13.2694 26.6535 12.2642 26.6716C11.6104 26.6879 10.9722 26.8752 10.4132 27.2147C9.85412 27.5542 9.39371 28.0342 9.07774 28.6068C7.71247 30.9591 8.71764 34.4487 10.0466 36.3658C10.6917 37.314 11.4689 38.358 12.4922 38.3192C13.4585 38.2829 13.8393 37.6922 15.0129 37.6922C16.1891 37.6922 16.531 38.3192 17.5517 38.301C18.6139 38.2829 19.2797 37.3529 19.9222 36.4021C20.6631 35.3218 20.9662 34.2778 20.9843 34.2234C20.9662 34.2026 18.9377 33.4254 18.9196 31.0913C18.8989 29.1379 20.5128 28.2079 20.588 28.1509C19.6761 26.8037 18.2564 26.6535 17.7642 26.6146C17.6848 26.6097 17.6053 26.6105 17.5258 26.612ZM38.7795 27.6405C36.2147 27.6405 34.6189 29.0213 34.4997 30.8944H36.5127C36.6992 29.9669 37.4686 29.3763 38.7018 29.3763C40.0023 29.3763 40.7821 30.0654 40.7821 31.2182V32.0187L37.9401 32.1845C35.4764 32.3244 34.0852 33.4384 34.0852 35.2518C34.0852 37.1171 35.5049 38.3788 37.536 38.3788C38.8987 38.3788 40.2095 37.6508 40.8106 36.4954H40.8598V38.2026H42.9012V31.0524C42.9012 28.9721 41.295 27.6405 38.7795 27.6405ZM43.8053 27.8271L47.5514 38.213C47.5514 38.2207 47.3623 38.8347 47.3623 38.8528C47.0385 39.915 46.5074 40.3321 45.5203 40.3321C45.3416 40.3321 44.9867 40.3321 44.8286 40.2932V42.0186C44.9841 42.0471 45.5203 42.0678 45.6965 42.0678C47.8467 42.0678 48.8726 41.2596 49.7586 38.744L53.6446 27.8271H51.3959L48.7742 36.27H48.7353L46.111 27.8245L43.8053 27.8271ZM40.7821 33.498V34.3166C40.7821 35.6663 39.6163 36.6922 38.1292 36.6922C36.9842 36.6922 36.2355 36.1016 36.2355 35.1923C36.2355 34.3063 36.9557 33.7415 38.2277 33.656L40.7821 33.498Z\" fill=\"url(#paint0_linear_17_2356)\"/>\\n</g>\\n<g clip-path=\"url(#clip1_17_2356)\">\\n<path d=\"M95.758 19.5295C93.8548 19.5296 91.989 20.0588 90.3691 21.0579C88.7492 22.057 87.4389 23.4867 86.5846 25.1874C85.8657 26.6179 85.4913 28.1966 85.4913 29.7975C85.4913 31.3984 85.8657 32.9771 86.5846 34.4075C87.4389 36.1082 88.7492 37.538 90.3691 38.5371C91.989 39.5362 93.8548 40.0654 95.758 40.0655C98.53 40.0655 100.862 39.1536 102.564 37.5863C104.501 35.7987 105.621 33.1563 105.621 30.0319C105.62 29.332 105.559 28.6334 105.439 27.9439H95.7606V31.8972H101.305C101.192 32.5287 100.952 33.1309 100.601 33.6674C100.249 34.2039 99.7921 34.6636 99.258 35.0189C98.3357 35.6433 97.1492 36.0008 95.7606 36.0008C93.0819 36.0008 90.8099 34.1951 89.9964 31.7625C89.5668 30.4877 89.5668 29.1073 89.9964 27.8325C90.8099 25.3973 93.0819 23.5942 95.7606 23.5942C97.2243 23.5702 98.6388 24.123 99.6984 25.133L102.631 22.2056C100.773 20.4591 98.308 19.5 95.758 19.5295ZM112.6 20.9543V38.8298H114.895V31.5889H118.69C120.253 31.5889 121.566 31.0812 122.633 30.0656C123.165 29.5893 123.587 29.0038 123.871 28.3492C124.155 27.6946 124.294 26.9863 124.278 26.2729C124.289 25.5632 124.148 24.8594 123.864 24.2088C123.581 23.5582 123.161 22.9759 122.633 22.5009C122.111 21.9951 121.494 21.5978 120.817 21.3319C120.14 21.066 119.417 20.9368 118.69 20.9517L112.6 20.9543ZM118.887 23.1564C119.288 23.1634 119.683 23.2507 120.049 23.4131C120.415 23.5755 120.745 23.8097 121.019 24.102C121.311 24.3859 121.543 24.7254 121.702 25.1005C121.86 25.4756 121.942 25.8787 121.942 26.2859C121.942 26.6931 121.86 27.0961 121.702 27.4712C121.543 27.8463 121.311 28.1859 121.019 28.4698C120.726 28.7736 120.372 29.0128 119.981 29.1721C119.59 29.3314 119.17 29.4072 118.747 29.3946H114.895V23.1564H118.747C118.794 23.1553 118.841 23.1553 118.887 23.1564ZM129.571 26.2004C127.39 26.2004 125.745 26.9983 124.631 28.5967L126.654 29.8687C127.4 28.7884 128.416 28.247 129.698 28.247C130.516 28.2369 131.308 28.5357 131.916 29.0838C132.215 29.3311 132.455 29.6419 132.619 29.9937C132.783 30.3454 132.867 30.7293 132.864 31.1174V31.6407C131.983 31.1407 130.859 30.892 129.496 30.892C127.898 30.892 126.62 31.2677 125.664 32.0164C124.706 32.7625 124.229 33.7702 124.229 35.0345C124.219 35.6034 124.336 36.1675 124.571 36.6856C124.806 37.2037 125.154 37.6627 125.589 38.0293C126.496 38.8272 127.623 39.2287 128.97 39.2287C130.55 39.2287 131.815 38.5293 132.765 37.1303H132.864V38.8272H135.061V31.291C135.061 29.7107 134.568 28.4672 133.589 27.5605C132.605 26.6537 131.268 26.2004 129.571 26.2004ZM135.434 26.5993L140.475 38.0552L137.631 44.2209H140.001L147.667 26.5967H145.167L141.623 35.3816H141.571L137.929 26.5993H135.434ZM129.874 32.734C131.154 32.734 132.154 33.019 132.869 33.5889C132.869 34.5526 132.488 35.392 131.729 36.1096C131.044 36.7949 130.115 37.1806 129.146 37.1821C128.499 37.1945 127.867 36.9821 127.359 36.5811C127.122 36.4099 126.93 36.1848 126.798 35.9243C126.666 35.6639 126.598 35.3757 126.6 35.0837C126.6 34.4179 126.911 33.8661 127.54 33.4076C128.162 32.9594 128.942 32.734 129.874 32.734Z\" fill=\"url(#paint1_linear_17_2356)\"/>\\n</g>\\n<path d=\"M42.847 94.5314C41.6427 94.0925 40.3697 93.8723 39.088 93.8811C34.943 93.8811 32.0155 95.9692 31.9948 98.9665C31.9689 101.169 34.0751 102.41 35.6683 103.145C37.303 103.902 37.8497 104.378 37.8445 105.055C37.8341 106.083 36.5388 106.549 35.3342 106.549C33.6787 106.549 32.7746 106.319 31.3834 105.741L30.8679 105.5L30.2798 108.951C31.2876 109.371 33.1036 109.731 34.9792 109.762C39.3859 109.762 42.2667 107.687 42.3004 104.498C42.3367 102.739 41.1968 101.41 38.7978 100.311C37.3393 99.5987 36.4352 99.122 36.4352 98.3992C36.4352 97.7593 37.2098 97.0754 38.8289 97.0754C39.9065 97.0493 40.9775 97.2515 41.9714 97.6686L42.36 97.8422L42.9481 94.508L42.847 94.5314ZM53.6034 94.1609H50.3651C49.3573 94.1609 48.5983 94.4381 48.1578 95.4381L41.9299 109.547H46.3366L47.2174 107.233L52.5956 107.238C52.7226 107.78 53.1112 109.547 53.1112 109.547H56.9971L53.6034 94.1609ZM26.0337 94.0314H30.2332L27.6063 109.425H23.412L26.0337 94.0262V94.0314ZM15.3732 102.516L15.8085 104.653L19.912 94.1609H24.3602L17.7514 109.526H13.3137L9.68677 96.5158C9.62802 96.3013 9.49007 96.117 9.30076 96.0003C7.99352 95.325 6.60842 94.8125 5.17645 94.4744L5.23345 94.1505H11.9924C12.9095 94.1868 13.6479 94.4744 13.894 95.4536L15.3706 102.524L15.3732 102.516ZM48.4221 104.086L50.0956 99.78C50.0749 99.8266 50.4402 98.8914 50.6526 98.3137L50.9402 99.6427L51.9117 104.083H48.4195L48.4221 104.086Z\" fill=\"url(#paint2_linear_17_2356)\"/>\\n<path d=\"M116.582 87.9737C120.677 91.1983 123.306 96.2006 123.306 101.817C123.306 107.434 120.677 112.436 116.582 115.66C112.487 112.436 109.858 107.434 109.858 101.817C109.858 96.2006 112.487 91.1983 116.582 87.9737ZM114.329 86.4649C110 90.1711 107.255 95.6765 107.255 101.823C107.255 107.965 109.996 113.468 114.321 117.174C111.772 118.609 108.829 119.428 105.695 119.428C95.9692 119.428 88.0847 111.543 88.0847 101.817C88.0847 92.0911 95.9692 84.2065 105.695 84.2065C108.833 84.2065 111.778 85.0269 114.329 86.4649ZM118.842 117.174C123.167 113.468 125.908 107.965 125.908 101.823C125.908 95.6765 123.164 90.1711 118.834 86.4649C121.385 85.0269 124.331 84.2065 127.468 84.2065C137.194 84.2065 145.079 92.0911 145.079 101.817C145.079 111.543 137.194 119.428 127.468 119.428C124.334 119.428 121.392 118.609 118.842 117.174Z\" fill=\"url(#paint3_linear_17_2356)\"/>\\n<g clip-path=\"url(#clip2_17_2356)\">\\n<path d=\"M37.7718 171.769C37.7718 172.806 37.4645 173.819 36.8889 174.68C36.3132 175.542 35.495 176.214 34.5377 176.611C33.5803 177.007 32.5268 177.112 31.5103 176.91C30.4939 176.708 29.56 176.209 28.8269 175.477C28.0937 174.744 27.5941 173.811 27.3913 172.795C27.1885 171.779 27.2916 170.725 27.6875 169.767C28.0833 168.809 28.7543 167.991 29.6154 167.414C30.4766 166.838 31.4894 166.529 32.5257 166.528H32.5309C35.4272 166.528 37.7718 168.875 37.7718 171.769ZM24.3004 166.585C21.3885 166.585 19.0544 168.875 19.0544 171.741C19.0544 174.637 21.3289 176.881 24.2538 176.881C25.0802 176.881 25.79 176.717 26.6631 176.308V174.046C25.8962 174.816 25.2149 175.124 24.3444 175.124C22.4092 175.124 21.0362 173.72 21.0362 171.725C21.0362 169.834 22.4533 168.342 24.2564 168.342C25.1735 168.342 25.8677 168.668 26.6657 169.451V167.189C25.9405 166.792 25.127 166.585 24.3004 166.585ZM15.6166 170.588C14.4637 170.16 14.1244 169.881 14.1244 169.347C14.1244 168.728 14.728 168.254 15.557 168.254C16.1321 168.254 16.6062 168.489 17.1062 169.052L18.1114 167.736C17.3151 167.026 16.2842 166.636 15.2176 166.642C13.4741 166.642 12.1451 167.852 12.1451 169.464C12.1451 170.821 12.7643 171.515 14.5699 172.166C15.3238 172.432 15.7046 172.609 15.8989 172.728C16.0753 172.833 16.2211 172.983 16.322 173.162C16.4228 173.341 16.4752 173.543 16.4741 173.748C16.4741 174.546 15.8394 175.137 14.9819 175.137C14.0648 175.137 13.3264 174.678 12.886 173.824L11.6451 175.018C12.5311 176.318 13.5933 176.893 15.057 176.893C17.0544 176.893 18.4533 175.564 18.4533 173.658C18.4481 172.096 17.8005 171.388 15.6166 170.588ZM62.1756 167.365C62.1763 167.564 62.0982 167.755 61.9583 167.896C61.8185 168.037 61.6283 168.118 61.4295 168.119C61.3304 168.119 61.2323 168.1 61.1406 168.062C61.049 168.025 60.9658 167.969 60.8957 167.899C60.8256 167.829 60.7701 167.746 60.7323 167.654C60.6946 167.562 60.6753 167.464 60.6757 167.365V167.357C60.6702 167.255 60.6857 167.153 60.7212 167.057C60.7567 166.961 60.8114 166.873 60.882 166.799C60.9526 166.725 61.0376 166.666 61.1318 166.626C61.226 166.586 61.3274 166.565 61.4298 166.566C61.5321 166.567 61.6333 166.588 61.7271 166.629C61.8208 166.67 61.9052 166.73 61.9751 166.805C62.0449 166.879 62.0988 166.968 62.1332 167.064C62.1677 167.161 62.1822 167.263 62.1756 167.365ZM62.0228 167.368C62.0242 167.288 62.0098 167.208 61.9804 167.134C61.9511 167.06 61.9074 166.992 61.8518 166.934C61.7963 166.877 61.7299 166.831 61.6566 166.799C61.5832 166.767 61.5043 166.75 61.4243 166.749C61.3441 166.749 61.2647 166.766 61.1909 166.797C61.1171 166.829 61.0503 166.875 60.9944 166.932C60.9385 166.99 60.8946 167.058 60.8652 167.133C60.8358 167.208 60.8216 167.287 60.8233 167.368C60.8233 167.71 61.0927 167.987 61.4243 167.987C61.5043 167.986 61.5832 167.968 61.6566 167.937C61.7299 167.905 61.7963 167.859 61.8518 167.801C61.9074 167.744 61.9511 167.676 61.9804 167.601C62.0098 167.527 62.0242 167.448 62.0228 167.368ZM8.99488 176.658H10.9171V166.806H8.99488V176.658ZM41.9013 173.425L39.2743 166.808H37.1759L41.3572 176.912H42.3909L46.6473 166.808H44.5644L41.9013 173.425ZM47.5126 176.658H52.9633V174.989H49.4348V172.329H52.8338V170.66H49.4348V168.474H52.9633V166.806H47.5126V176.658ZM61.5254 167.443L61.8104 167.8H61.5591L61.3155 167.464V167.8H61.1083V166.935H61.3855C61.5953 166.935 61.7119 167.028 61.7119 167.202C61.7145 167.321 61.6471 167.409 61.5254 167.443ZM61.5098 167.204C61.5098 167.129 61.4554 167.093 61.3544 167.093H61.3181V167.318H61.3544C61.4554 167.318 61.5098 167.282 61.5098 167.204ZM58.3285 172.508L61.4295 176.658H59.0669L56.4063 172.699H56.155V176.658H54.2353V166.806H57.085C59.3 166.806 60.572 167.87 60.572 169.715C60.572 171.225 59.7741 172.215 58.3285 172.508ZM58.5954 169.818C58.5954 168.86 57.9451 168.36 56.7482 168.36H56.1576V171.344H56.7197C57.9451 171.342 58.5954 170.808 58.5954 169.818ZM8.11147 171.741C8.10783 172.463 7.9459 173.177 7.63708 173.83C7.32826 174.484 6.88003 175.061 6.32392 175.523C5.37834 176.308 4.30063 176.66 2.80842 176.66H0.00274658V166.808H2.82396C5.93791 166.808 8.11147 168.831 8.11147 171.741ZM6.13221 171.725C6.13221 170.782 5.73325 169.865 5.06746 169.272C4.43275 168.697 3.67887 168.474 2.43795 168.474H1.92241V174.989H2.43795C3.67887 174.989 4.46384 174.751 5.06746 174.207C5.73066 173.616 6.13221 172.671 6.13221 171.725Z\" fill=\"url(#paint4_linear_17_2356)\"/>\\n</g>\\n<g clip-path=\"url(#clip3_17_2356)\">\\n<path d=\"M126.981 177.931C126.981 177.102 126.631 176.646 126.089 176.32C125.545 176.009 124.887 175.97 123.991 175.97H119.994V183.275H121.742V180.615H123.608C124.229 180.615 124.618 180.677 124.846 180.939C125.157 181.275 125.115 181.923 125.115 182.364V183.27H126.825V181.832C126.82 181.185 126.781 180.858 126.545 180.496C126.39 180.288 126.079 180.029 125.69 179.889L125.742 179.869C126.209 179.682 126.986 179.099 126.986 177.934L126.981 177.931ZM124.727 178.985L124.654 178.98C124.421 179.117 124.149 179.13 123.799 179.13H121.701V177.498H123.836C124.146 177.498 124.457 177.498 124.691 177.628C124.944 177.752 125.095 178.009 125.079 178.288C125.079 178.599 124.963 178.845 124.732 178.988L124.727 178.985ZM138.074 181.711H134.714V183.265H138.092C139.843 183.265 140.812 182.545 140.812 180.975C140.812 180.25 140.641 179.814 140.328 179.467C139.931 179.123 139.312 178.967 138.436 178.931L137.462 178.892C137.193 178.892 136.996 178.892 136.802 178.814C136.569 178.737 136.413 178.542 136.413 178.27C136.413 178.037 136.457 177.84 136.646 177.726C136.861 177.607 137.105 177.555 137.351 177.571H140.537V176.011H137.04C135.216 176.011 134.558 177.143 134.558 178.187C134.558 180.519 136.569 180.402 138.203 180.441C138.473 180.441 138.67 180.48 138.786 180.597C138.905 180.674 138.999 180.871 138.999 181.063C138.999 181.262 138.908 181.452 138.791 181.529C138.636 181.667 138.403 181.711 138.074 181.711ZM85.4915 140.683V166.838L87.5899 161.978H92.1235L92.7064 163.18V161.978H97.9991L99.1649 164.62L100.297 161.996H117.141C117.906 161.996 118.592 162.144 119.1 162.607V162.011H123.729V162.607C124.525 162.167 125.507 162.011 126.631 162.011H133.382L134.004 163.219V162.011H138.973L139.631 163.216V162.009H144.444V172.237H139.558L138.626 170.682V172.198H132.53L131.867 170.566H130.356L129.657 172.156H126.514C125.271 172.156 124.338 171.887 123.716 171.535V172.156H116.229V169.866C116.229 169.555 116.152 169.555 115.957 169.516H115.685V172.2H101.209V170.957L100.665 172.2H97.6416L97.1183 170.957V172.162H91.2815L90.6183 170.545H89.1184L88.4552 172.162H85.4915V202.858H147.113V184.444C146.413 184.794 145.524 184.91 144.592 184.91H140.128V184.249C139.584 184.677 138.651 184.91 137.76 184.91H123.6V182.579C123.6 182.268 123.553 182.268 123.289 182.268H123.095V184.915H118.432V182.154C117.659 182.506 116.766 182.542 116.027 182.506H115.473V184.876H109.825L108.426 183.278L106.95 184.832H97.7763V174.651H107.129L108.47 176.211L109.906 174.656H116.154C116.88 174.656 118.071 174.734 118.595 175.239V174.617H124.235C124.758 174.617 125.903 174.734 126.574 175.2V174.579H135.032V175.2C135.455 174.776 136.348 174.579 137.113 174.579H142.009V175.2C142.512 174.812 143.211 174.579 144.185 174.579H147.232V140.683H85.4915ZM140.299 179.426C140.31 179.439 140.317 179.457 140.328 179.467C140.354 179.493 140.387 179.493 140.408 179.519L140.299 179.428V179.426ZM147.221 174.573H147.39V176.011H147.221V174.573ZM147.317 179.62V179.607C147.239 179.542 147.198 179.483 147.123 179.426C146.734 179.029 146.113 178.869 145.144 178.843L144.211 178.812C143.9 178.812 143.708 178.794 143.512 178.734C143.278 178.656 143.123 178.462 143.123 178.19C143.123 177.957 143.201 177.775 143.356 177.661C143.553 177.545 143.745 177.532 144.056 177.532H147.224V176.009H143.9C142.113 176.009 141.413 177.141 141.413 178.185C141.413 180.516 143.434 180.4 145.066 180.439C145.335 180.439 145.532 180.478 145.646 180.594C145.765 180.672 145.843 180.869 145.843 181.06C145.843 181.242 145.755 181.418 145.61 181.527C145.493 181.672 145.258 181.708 144.91 181.708H141.574V183.275H144.908C145.996 183.275 146.809 182.97 147.239 182.343H147.317C147.55 181.996 147.667 181.566 147.667 180.988C147.667 180.366 147.55 179.978 147.317 179.625V179.62ZM133.67 177.491V175.98H127.88V183.319H133.67V181.804H129.602V180.327H133.574V178.814H129.605V177.493M120.491 163.447H122.266V170.734H120.494L120.491 163.447ZM119.496 165.405L119.478 165.421C119.478 164.607 119.141 164.125 118.597 163.804C118.035 163.48 117.38 163.454 116.499 163.454H112.512V170.76H114.258V168.081H116.123C116.745 168.081 117.134 168.159 117.385 168.392C117.701 168.744 117.662 169.371 117.662 169.812V170.729H119.416V169.296C119.416 168.649 119.375 168.325 119.131 167.96C118.898 167.682 118.608 167.467 118.276 167.346C118.722 167.164 119.499 166.568 119.499 165.403L119.496 165.405ZM117.281 166.431H117.242C117.009 166.571 116.737 166.576 116.387 166.576H114.248V164.962H116.385C116.696 164.962 117.007 164.973 117.24 165.092C117.473 165.195 117.628 165.423 117.628 165.739C117.628 166.055 117.507 166.309 117.281 166.428V166.431ZM126.735 164.965H128.372V163.41H126.703C125.501 163.41 124.621 163.682 124.061 164.265C123.32 165.042 123.123 166.053 123.123 167.141C123.123 168.467 123.442 169.299 124.056 169.923C124.657 170.54 125.727 170.726 126.569 170.726H128.589L129.25 169.102H132.851L133.53 170.726H137.053V165.26L140.348 170.726H142.809L142.815 170.732V163.444H141.043V168.529L137.986 163.452H135.343V170.216L132.408 163.335H129.807L127.364 169.086H126.587C126.128 169.086 125.649 169.009 125.374 168.739C125.051 168.351 124.893 167.807 124.893 167.024C124.893 166.286 125.1 165.703 125.395 165.392C125.74 165.042 126.1 164.965 126.732 164.965H126.735ZM131.056 164.685L132.258 167.581V167.586H129.848L131.056 164.685ZM91.6572 169.102L92.3152 170.729H95.854V165.017L98.3721 170.729H99.8851L102.406 165.024L102.445 170.729H104.232V163.449H101.341L99.2504 168.382L96.981 163.447H94.152V170.346L91.2038 163.447H88.621L85.5174 170.726H87.3826L88.0562 169.105L91.6572 169.102ZM89.8748 164.685L91.0665 167.581L91.0588 167.586H88.6883L89.8722 164.685H89.8748ZM116.206 175.967H110.657L108.455 178.358L106.318 175.97H99.341V183.275H106.217L108.432 180.861L110.566 183.27H113.939V180.835H116.11C117.665 180.835 119.141 180.41 119.141 178.387L119.126 178.379C119.126 176.358 117.577 175.97 116.204 175.97L116.206 175.967ZM105.362 181.752L105.325 181.747H101.087V180.304H104.895V178.817H101.087V177.496H105.439L107.338 179.62L105.359 181.755L105.362 181.752ZM112.206 182.607L109.538 179.636L112.206 176.765V182.602V182.607ZM116.229 179.348H113.937V177.491H116.229C116.851 177.491 117.318 177.744 117.318 178.382C117.318 179.011 116.929 179.345 116.229 179.345V179.348ZM111.312 164.965V163.447H105.517V170.734H111.312V169.232H107.253V167.77H111.209V166.278H107.253V164.965\" fill=\"url(#paint5_linear_17_2356)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_2356\" x1=\"62.1756\" y1=\"11.9692\" x2=\"-5.69889\" y2=\"28.8215\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_17_2356\" x1=\"147.667\" y1=\"19.5288\" x2=\"85.5583\" y2=\"44.3881\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_17_2356\" x1=\"56.9971\" y1=\"93.8809\" x2=\"9.67151\" y2=\"118.428\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_17_2356\" x1=\"145.079\" y1=\"84.2065\" x2=\"83.1241\" y2=\"100.142\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_17_2356\" x1=\"62.1772\" y1=\"166.528\" x2=\"24.0317\" y2=\"202.495\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_17_2356\" x1=\"147.667\" y1=\"140.683\" x2=\"77.3841\" y2=\"151.854\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(0 0.787109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(85.4914 0.787109)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(0.00012207 140.682)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(85.4914 140.682)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bqsc9g\",\"data-framer-name\":\"Frame 3700\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Easy\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Payments\"})]}),className:\"framer-1p8my5j\",\"data-framer-name\":\"Easy Payments\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"TXT.com uses the best and most trusted payment processors.\"})}),className:\"framer-1ljlt6\",\"data-framer-name\":\"Placeholder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17v7nc2 hidden-72rtr7\",\"data-framer-name\":\"bento-tab\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekbrxy\",\"data-framer-name\":\"row1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ydezlk\",\"data-framer-name\":\"toprow\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10qdui9\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ju249p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"No Middlemen\"})}),className:\"framer-rvj3xp\",\"data-framer-name\":\"No Middlemen\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"You own the relationship with your fans!\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"You own the relationship with your fans!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Placeholder Description\"})}),className:\"framer-1cu5rjl\",\"data-framer-name\":\"Placeholder Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ofjw0o\",\"data-framer-name\":\"Frame 3683\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27i4xc\",\"data-framer-name\":\"logo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7872.8+50+0+0+0+0+30+107+27.0228+.1645),pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8470+40+0+0+0+0+236+30+107+27.0228+.1645),pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1724,pixelWidth:1723,sizes:\"13.9629px\",src:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png\",srcSet:\"https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/7l3EaLk1OVIZGFKjHIZHxxLOH3A.png 1723w\"},className:\"framer-c9h64l\",\"data-framer-name\":\"PNG 3 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13.85px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.52px\",\"--framer-line-height\":\"14.3px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TXT.com\"})}),className:\"framer-1mcwvgl\",\"data-framer-name\":\"TXT.com\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c6kt5b\",\"data-framer-name\":\"Frame 3685\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-abnexw\",\"data-framer-name\":\"Frame 3686\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTYwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"7.58px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"You\u2019ve received a tip! Log in to access your funds.\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTYwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"7.58px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"You\u2019ve received a tip! Log in to access your funds.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTYwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"7.58px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"You\u2019ve received a tip! Log in to withdrawal your funds.\"})}),className:\"framer-11go3e2\",\"data-framer-name\":\"You\u2019ve received a tip! Log in to withdrawal your funds.\",fonts:[\"GF;SF Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"6.2px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgba(28, 28, 28, 0.6)\"},children:\"txt.com\"})}),className:\"framer-o7maus\",\"data-framer-name\":\"txt.com\",fonts:[\"GF;SF Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-grm07k\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-worhj\",\"data-framer-name\":\"IMessage_logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:77,intrinsicWidth:77,svg:'<svg width=\"77\" height=\"77\" viewBox=\"0 0 77 77\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_2304)\">\\n<path d=\"M60.2179 0.420898H17.5821C8.31354 0.420898 0.799896 7.93455 0.799896 17.2031V59.8389C0.799896 69.1074 8.31354 76.6211 17.5821 76.6211H60.2179C69.4865 76.6211 77.0001 69.1074 77.0001 59.8389V17.2031C77.0001 7.93455 69.4865 0.420898 60.2179 0.420898Z\" fill=\"url(#paint0_linear_17_2304)\"/>\\n<path d=\"M38.9004 13.6099C31.4827 13.6099 24.3688 16.0643 19.1238 20.4331C13.8787 24.8019 10.932 30.7273 10.9319 36.9057C10.9387 40.9244 12.1935 44.8734 14.5744 48.3688C16.9552 51.8641 20.3812 54.7871 24.5194 56.8535C23.4172 59.3209 21.7642 61.6347 19.6289 63.699C23.7699 62.972 27.6571 61.445 30.9881 59.2365C33.5564 59.8722 36.2211 60.1972 38.9004 60.2015C46.3181 60.2015 53.4319 57.7471 58.677 53.3783C63.9221 49.0095 66.8688 43.0841 66.8688 36.9057C66.8688 30.7273 63.9221 24.8019 58.677 20.4331C53.4319 16.0643 46.3181 13.6099 38.9004 13.6099Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_2304\" x1=\"39.5048\" y1=\"71.5629\" x2=\"39.5048\" y2=\"9.87769\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0CBD2A\"/>\\n<stop offset=\"1\" stop-color=\"#5BF675\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_2304\">\\n<rect width=\"76.2002\" height=\"76.2002\" fill=\"white\" transform=\"translate(0.799896 0.420898)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x1ehhm\",\"data-framer-name\":\"Frame 3702\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Native \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Texts\"})]})}),className:\"framer-16yrhxc\",\"data-framer-name\":\"Native Texts\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"No Green bubbles!\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"No Green bubbles!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Place holder description\"})}),className:\"framer-oli3q3\",\"data-framer-name\":\"Place holder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mqzkuh\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ssz7gc\",\"data-framer-name\":\"Frame 3701\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Share Multi\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Media Content\"})]}),className:\"framer-nfd20n\",\"data-framer-name\":\"Share Multi Media Content\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Share audio, video, and images!\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Share audio, video, and images!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Placeholder description\"})}),className:\"framer-1trdhqx\",\"data-framer-name\":\"Placeholder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7872.8+50+0+0+274.5+30),pixelHeight:805,pixelWidth:816,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 390.16px, 1px)`,src:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png\",srcSet:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png 816w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8470+40+0+0+510.0323+30),pixelHeight:805,pixelWidth:816,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 342.16px, 1px)`,src:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png\",srcSet:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png 816w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:805,pixelWidth:816,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png\",srcSet:\"https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i68THLhVGrtwFTOMStUoTd0WlKc.png 816w\"},className:\"framer-8apbwl\",\"data-framer-name\":\"Frame 3667\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iujqqj\",\"data-framer-name\":\"row2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2eg1ic\",\"data-framer-name\":\"bottomrow\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-62h5cy\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rlg2sv\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\uD83C\uDF89\"})}),className:\"framer-1bidggv\",\"data-framer-name\":\"\uD83C\uDF89\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c4weze\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Receive \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Tips\"})]})}),className:\"framer-8ixmsx\",\"data-framer-name\":\"Receive Tips\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:[\"Let your fans send you \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"any tip\"}),\" they\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"want straight to your bank\"})]}),className:\"framer-1tms3cr\",\"data-framer-name\":\"Let your fans send you any tip they want straight to your bank\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dvl3x7\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15z19k1\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\uD83D\uDCA1\"})}),className:\"framer-qmjut\",\"data-framer-name\":\"\uD83D\uDCA1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vg683j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn Your\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trends\"})]})},YmLpajpHy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn Your\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trends\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Content\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Suggestions\"})]}),className:\"framer-k3o8qq\",\"data-framer-name\":\"Content Suggestions\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Detailed analytics on your performance. \"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Detailed analytics on your performance. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Placeholder description\"})}),className:\"framer-z8kkh0\",\"data-framer-name\":\"Placeholder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-no06o2\",\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:\"Why Creators\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:[\"love\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"700\"},children:\" TXT\"})]})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:\"Why Creators\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(968deg, rgb(255, 3, 75) 0%, rgb(255, 115, 75) 100%)\"},children:[\"love\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"700\"},children:\" TXT\"})]})})]}),className:\"framer-1vzyiuo\",\"data-framer-name\":\"Why Creators love TXT\",fonts:[\"Inter-Bold\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t217kk\",\"data-framer-name\":\"row3\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jyffkf\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ia8g1r\",\"data-framer-name\":\"Frame 3696\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Profile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Customization\"})]})},YmLpajpHy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Profile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Customization\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Profile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Customisation\"})]}),className:\"framer-57k9sp\",\"data-framer-name\":\"Profile Customisation\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Customize your profile to match your brand.\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Customize your profile to match your brand.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Customise your profile to match your brand.\"})}),className:\"framer-1ift1tw\",\"data-framer-name\":\"Customise your profile to match your style and show all your links on your profile.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:348.5,intrinsicWidth:278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7872.8+50+1156.5+0+0+40+0),pixelHeight:697,pixelWidth:556,sizes:\"176px\",src:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png 556w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:348.5,intrinsicWidth:278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8470+40+1682.0323+0+0+40+107),pixelHeight:697,pixelWidth:556,sizes:\"176px\",src:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png 556w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:348.5,intrinsicWidth:278,pixelHeight:697,pixelWidth:556,sizes:\"176px\",src:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/223p84rK3HJu3GtDcns8nB44YE.png 556w\"},className:\"framer-lxgfu\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pxuh7j\",\"data-framer-name\":\"Background+Shadow\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13vfwsp\",\"data-framer-name\":\"Frame 3715\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:203,intrinsicWidth:148,svg:'<svg width=\"148\" height=\"203\" viewBox=\"0 0 148 203\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_2356)\">\\n<path d=\"M5.57001 11.9723C5.17795 11.9728 4.78589 11.9754 4.39386 11.9801C4.00526 11.993 3.60889 12.0138 3.22288 12.0837C2.63952 12.1759 2.08638 12.4053 1.60898 12.753C1.13157 13.1007 0.743535 13.5567 0.476801 14.0837C0.295456 14.4412 0.181467 14.8039 0.11411 15.1977C0.0415724 15.5811 0.0182566 15.9749 0.0104847 16.3635C0.00518111 16.5439 0.00172673 16.7244 0.00012207 16.9049L0.00012207 46.845C0.00012207 47.0263 0.00530336 47.2025 0.00789401 47.3812C0.0182566 47.7698 0.0415724 48.1662 0.11152 48.5522C0.181467 48.9408 0.298046 49.3061 0.479391 49.6636C0.836628 50.3669 1.40818 50.9385 2.1115 51.2957C2.46901 51.4771 2.8317 51.5936 3.22548 51.6636C3.60889 51.7335 4.00267 51.7568 4.39127 51.7672L4.93012 51.775H57.2456L57.7819 51.7672C58.1705 51.7568 58.5668 51.7335 58.9528 51.6636C59.3414 51.5936 59.7067 51.4796 60.0616 51.2983C60.7667 50.9414 61.3395 50.3687 61.6963 49.6636C61.8777 49.3061 61.9943 48.9434 62.0616 48.5496C62.1316 48.1662 62.1549 47.7724 62.1652 47.3838C62.1704 47.2025 62.173 47.0263 62.173 46.845L62.1756 46.2077V16.9023C62.1756 16.721 62.1704 16.5448 62.1652 16.366C62.1604 15.9737 62.1257 15.5822 62.0616 15.1951C61.9377 14.4149 61.5703 13.6939 61.0119 13.1351C60.4536 12.5763 59.7329 12.2083 58.9528 12.0837C58.5657 12.0199 58.1742 11.9852 57.7819 11.9801C57.3908 11.969 56.9995 11.9664 56.6083 11.9723H5.57001ZM5.57001 13.2987H57.2327C57.4036 13.2987 57.572 13.3039 57.743 13.3065C58.0409 13.3169 58.3907 13.3324 58.7145 13.3894C58.9969 13.4412 59.2326 13.5189 59.458 13.6329C59.9125 13.8636 60.2817 14.2329 60.5124 14.6873C60.6311 14.9221 60.7132 15.1738 60.7559 15.4334C60.8129 15.7521 60.8285 16.1018 60.8362 16.4023C60.8414 16.5707 60.844 16.7391 60.844 16.9127V46.8398C60.844 47.0082 60.844 47.1766 60.8362 47.3476C60.8285 47.6455 60.8129 47.9952 60.7533 48.3191C60.6973 48.7003 60.5503 49.0624 60.3249 49.3749C60.0994 49.6873 59.8021 49.941 59.458 50.1144C59.2247 50.2324 58.9749 50.3145 58.7171 50.3579C58.3974 50.4087 58.0745 50.4364 57.7508 50.4408L57.2327 50.4486H4.93789C4.76691 50.4486 4.59334 50.4434 4.43013 50.4408C4.10472 50.4366 3.78005 50.4089 3.45863 50.3579C3.17625 50.3061 2.9405 50.2284 2.71253 50.1144C2.25808 49.8846 1.8894 49.515 1.66073 49.06C1.54235 48.825 1.46025 48.5734 1.4172 48.3139C1.36575 47.9943 1.33805 47.6713 1.3343 47.3476C1.33083 47.1775 1.3291 47.0073 1.32912 46.8372V16.9101C1.32912 16.7417 1.32912 16.5707 1.3343 16.3997C1.34467 16.1044 1.36021 15.7572 1.4172 15.4282C1.46902 15.1484 1.54674 14.9127 1.66073 14.6847C1.89156 14.231 2.26086 13.8626 2.71512 13.6329C2.94965 13.5156 3.20018 13.4336 3.45863 13.3894C3.78246 13.3324 4.1322 13.3143 4.43013 13.3065C4.59852 13.3013 4.7695 13.3013 4.93789 13.2987H5.57001ZM17.7719 22.8841C16.9948 22.9256 16.0414 23.3996 15.4922 24.0654C14.9974 24.6354 14.5595 25.568 14.6735 26.4437C15.5492 26.5214 16.4222 26.0058 16.974 25.3608C17.5051 24.6924 17.8678 23.7986 17.7719 22.8867V22.8841ZM23.4895 23.9722V38.2026H25.6967V33.3399H28.7537C31.5464 33.3399 33.5075 31.4255 33.5075 28.6457C33.5075 25.8737 31.5853 23.9696 28.8236 23.9696L23.4895 23.9722ZM25.6967 25.8348H28.2407C30.1552 25.8348 31.2485 26.8607 31.2485 28.6561C31.2485 30.4488 30.1552 31.485 28.233 31.485H25.6967V25.8348ZM17.5258 26.612C16.36 26.6379 15.3756 27.3374 14.8057 27.3374C14.1969 27.3374 13.2694 26.6535 12.2642 26.6716C11.6104 26.6879 10.9722 26.8752 10.4132 27.2147C9.85412 27.5542 9.39371 28.0342 9.07774 28.6068C7.71247 30.9591 8.71764 34.4487 10.0466 36.3658C10.6917 37.314 11.4689 38.358 12.4922 38.3192C13.4585 38.2829 13.8393 37.6922 15.0129 37.6922C16.1891 37.6922 16.531 38.3192 17.5517 38.301C18.6139 38.2829 19.2797 37.3529 19.9222 36.4021C20.6631 35.3218 20.9662 34.2778 20.9843 34.2234C20.9662 34.2026 18.9377 33.4254 18.9196 31.0913C18.8989 29.1379 20.5128 28.2079 20.588 28.1509C19.6761 26.8037 18.2564 26.6535 17.7642 26.6146C17.6848 26.6097 17.6053 26.6105 17.5258 26.612ZM38.7795 27.6405C36.2147 27.6405 34.6189 29.0213 34.4997 30.8944H36.5127C36.6992 29.9669 37.4686 29.3763 38.7018 29.3763C40.0023 29.3763 40.7821 30.0654 40.7821 31.2182V32.0187L37.9401 32.1845C35.4764 32.3244 34.0852 33.4384 34.0852 35.2518C34.0852 37.1171 35.5049 38.3788 37.536 38.3788C38.8987 38.3788 40.2095 37.6508 40.8106 36.4954H40.8598V38.2026H42.9012V31.0524C42.9012 28.9721 41.295 27.6405 38.7795 27.6405ZM43.8053 27.8271L47.5514 38.213C47.5514 38.2207 47.3623 38.8347 47.3623 38.8528C47.0385 39.915 46.5074 40.3321 45.5203 40.3321C45.3416 40.3321 44.9867 40.3321 44.8286 40.2932V42.0186C44.9841 42.0471 45.5203 42.0678 45.6965 42.0678C47.8467 42.0678 48.8726 41.2596 49.7586 38.744L53.6446 27.8271H51.3959L48.7742 36.27H48.7353L46.111 27.8245L43.8053 27.8271ZM40.7821 33.498V34.3166C40.7821 35.6663 39.6163 36.6922 38.1292 36.6922C36.9842 36.6922 36.2355 36.1016 36.2355 35.1923C36.2355 34.3063 36.9557 33.7415 38.2277 33.656L40.7821 33.498Z\" fill=\"url(#paint0_linear_17_2356)\"/>\\n</g>\\n<g clip-path=\"url(#clip1_17_2356)\">\\n<path d=\"M95.758 19.5295C93.8548 19.5296 91.989 20.0588 90.3691 21.0579C88.7492 22.057 87.4389 23.4867 86.5846 25.1874C85.8657 26.6179 85.4913 28.1966 85.4913 29.7975C85.4913 31.3984 85.8657 32.9771 86.5846 34.4075C87.4389 36.1082 88.7492 37.538 90.3691 38.5371C91.989 39.5362 93.8548 40.0654 95.758 40.0655C98.53 40.0655 100.862 39.1536 102.564 37.5863C104.501 35.7987 105.621 33.1563 105.621 30.0319C105.62 29.332 105.559 28.6334 105.439 27.9439H95.7606V31.8972H101.305C101.192 32.5287 100.952 33.1309 100.601 33.6674C100.249 34.2039 99.7921 34.6636 99.258 35.0189C98.3357 35.6433 97.1492 36.0008 95.7606 36.0008C93.0819 36.0008 90.8099 34.1951 89.9964 31.7625C89.5668 30.4877 89.5668 29.1073 89.9964 27.8325C90.8099 25.3973 93.0819 23.5942 95.7606 23.5942C97.2243 23.5702 98.6388 24.123 99.6984 25.133L102.631 22.2056C100.773 20.4591 98.308 19.5 95.758 19.5295ZM112.6 20.9543V38.8298H114.895V31.5889H118.69C120.253 31.5889 121.566 31.0812 122.633 30.0656C123.165 29.5893 123.587 29.0038 123.871 28.3492C124.155 27.6946 124.294 26.9863 124.278 26.2729C124.289 25.5632 124.148 24.8594 123.864 24.2088C123.581 23.5582 123.161 22.9759 122.633 22.5009C122.111 21.9951 121.494 21.5978 120.817 21.3319C120.14 21.066 119.417 20.9368 118.69 20.9517L112.6 20.9543ZM118.887 23.1564C119.288 23.1634 119.683 23.2507 120.049 23.4131C120.415 23.5755 120.745 23.8097 121.019 24.102C121.311 24.3859 121.543 24.7254 121.702 25.1005C121.86 25.4756 121.942 25.8787 121.942 26.2859C121.942 26.6931 121.86 27.0961 121.702 27.4712C121.543 27.8463 121.311 28.1859 121.019 28.4698C120.726 28.7736 120.372 29.0128 119.981 29.1721C119.59 29.3314 119.17 29.4072 118.747 29.3946H114.895V23.1564H118.747C118.794 23.1553 118.841 23.1553 118.887 23.1564ZM129.571 26.2004C127.39 26.2004 125.745 26.9983 124.631 28.5967L126.654 29.8687C127.4 28.7884 128.416 28.247 129.698 28.247C130.516 28.2369 131.308 28.5357 131.916 29.0838C132.215 29.3311 132.455 29.6419 132.619 29.9937C132.783 30.3454 132.867 30.7293 132.864 31.1174V31.6407C131.983 31.1407 130.859 30.892 129.496 30.892C127.898 30.892 126.62 31.2677 125.664 32.0164C124.706 32.7625 124.229 33.7702 124.229 35.0345C124.219 35.6034 124.336 36.1675 124.571 36.6856C124.806 37.2037 125.154 37.6627 125.589 38.0293C126.496 38.8272 127.623 39.2287 128.97 39.2287C130.55 39.2287 131.815 38.5293 132.765 37.1303H132.864V38.8272H135.061V31.291C135.061 29.7107 134.568 28.4672 133.589 27.5605C132.605 26.6537 131.268 26.2004 129.571 26.2004ZM135.434 26.5993L140.475 38.0552L137.631 44.2209H140.001L147.667 26.5967H145.167L141.623 35.3816H141.571L137.929 26.5993H135.434ZM129.874 32.734C131.154 32.734 132.154 33.019 132.869 33.5889C132.869 34.5526 132.488 35.392 131.729 36.1096C131.044 36.7949 130.115 37.1806 129.146 37.1821C128.499 37.1945 127.867 36.9821 127.359 36.5811C127.122 36.4099 126.93 36.1848 126.798 35.9243C126.666 35.6639 126.598 35.3757 126.6 35.0837C126.6 34.4179 126.911 33.8661 127.54 33.4076C128.162 32.9594 128.942 32.734 129.874 32.734Z\" fill=\"url(#paint1_linear_17_2356)\"/>\\n</g>\\n<path d=\"M42.847 94.5314C41.6427 94.0925 40.3697 93.8723 39.088 93.8811C34.943 93.8811 32.0155 95.9692 31.9948 98.9665C31.9689 101.169 34.0751 102.41 35.6683 103.145C37.303 103.902 37.8497 104.378 37.8445 105.055C37.8341 106.083 36.5388 106.549 35.3342 106.549C33.6787 106.549 32.7746 106.319 31.3834 105.741L30.8679 105.5L30.2798 108.951C31.2876 109.371 33.1036 109.731 34.9792 109.762C39.3859 109.762 42.2667 107.687 42.3004 104.498C42.3367 102.739 41.1968 101.41 38.7978 100.311C37.3393 99.5987 36.4352 99.122 36.4352 98.3992C36.4352 97.7593 37.2098 97.0754 38.8289 97.0754C39.9065 97.0493 40.9775 97.2515 41.9714 97.6686L42.36 97.8422L42.9481 94.508L42.847 94.5314ZM53.6034 94.1609H50.3651C49.3573 94.1609 48.5983 94.4381 48.1578 95.4381L41.9299 109.547H46.3366L47.2174 107.233L52.5956 107.238C52.7226 107.78 53.1112 109.547 53.1112 109.547H56.9971L53.6034 94.1609ZM26.0337 94.0314H30.2332L27.6063 109.425H23.412L26.0337 94.0262V94.0314ZM15.3732 102.516L15.8085 104.653L19.912 94.1609H24.3602L17.7514 109.526H13.3137L9.68677 96.5158C9.62802 96.3013 9.49007 96.117 9.30076 96.0003C7.99352 95.325 6.60842 94.8125 5.17645 94.4744L5.23345 94.1505H11.9924C12.9095 94.1868 13.6479 94.4744 13.894 95.4536L15.3706 102.524L15.3732 102.516ZM48.4221 104.086L50.0956 99.78C50.0749 99.8266 50.4402 98.8914 50.6526 98.3137L50.9402 99.6427L51.9117 104.083H48.4195L48.4221 104.086Z\" fill=\"url(#paint2_linear_17_2356)\"/>\\n<path d=\"M116.582 87.9737C120.677 91.1983 123.306 96.2006 123.306 101.817C123.306 107.434 120.677 112.436 116.582 115.66C112.487 112.436 109.858 107.434 109.858 101.817C109.858 96.2006 112.487 91.1983 116.582 87.9737ZM114.329 86.4649C110 90.1711 107.255 95.6765 107.255 101.823C107.255 107.965 109.996 113.468 114.321 117.174C111.772 118.609 108.829 119.428 105.695 119.428C95.9692 119.428 88.0847 111.543 88.0847 101.817C88.0847 92.0911 95.9692 84.2065 105.695 84.2065C108.833 84.2065 111.778 85.0269 114.329 86.4649ZM118.842 117.174C123.167 113.468 125.908 107.965 125.908 101.823C125.908 95.6765 123.164 90.1711 118.834 86.4649C121.385 85.0269 124.331 84.2065 127.468 84.2065C137.194 84.2065 145.079 92.0911 145.079 101.817C145.079 111.543 137.194 119.428 127.468 119.428C124.334 119.428 121.392 118.609 118.842 117.174Z\" fill=\"url(#paint3_linear_17_2356)\"/>\\n<g clip-path=\"url(#clip2_17_2356)\">\\n<path d=\"M37.7718 171.769C37.7718 172.806 37.4645 173.819 36.8889 174.68C36.3132 175.542 35.495 176.214 34.5377 176.611C33.5803 177.007 32.5268 177.112 31.5103 176.91C30.4939 176.708 29.56 176.209 28.8269 175.477C28.0937 174.744 27.5941 173.811 27.3913 172.795C27.1885 171.779 27.2916 170.725 27.6875 169.767C28.0833 168.809 28.7543 167.991 29.6154 167.414C30.4766 166.838 31.4894 166.529 32.5257 166.528H32.5309C35.4272 166.528 37.7718 168.875 37.7718 171.769ZM24.3004 166.585C21.3885 166.585 19.0544 168.875 19.0544 171.741C19.0544 174.637 21.3289 176.881 24.2538 176.881C25.0802 176.881 25.79 176.717 26.6631 176.308V174.046C25.8962 174.816 25.2149 175.124 24.3444 175.124C22.4092 175.124 21.0362 173.72 21.0362 171.725C21.0362 169.834 22.4533 168.342 24.2564 168.342C25.1735 168.342 25.8677 168.668 26.6657 169.451V167.189C25.9405 166.792 25.127 166.585 24.3004 166.585ZM15.6166 170.588C14.4637 170.16 14.1244 169.881 14.1244 169.347C14.1244 168.728 14.728 168.254 15.557 168.254C16.1321 168.254 16.6062 168.489 17.1062 169.052L18.1114 167.736C17.3151 167.026 16.2842 166.636 15.2176 166.642C13.4741 166.642 12.1451 167.852 12.1451 169.464C12.1451 170.821 12.7643 171.515 14.5699 172.166C15.3238 172.432 15.7046 172.609 15.8989 172.728C16.0753 172.833 16.2211 172.983 16.322 173.162C16.4228 173.341 16.4752 173.543 16.4741 173.748C16.4741 174.546 15.8394 175.137 14.9819 175.137C14.0648 175.137 13.3264 174.678 12.886 173.824L11.6451 175.018C12.5311 176.318 13.5933 176.893 15.057 176.893C17.0544 176.893 18.4533 175.564 18.4533 173.658C18.4481 172.096 17.8005 171.388 15.6166 170.588ZM62.1756 167.365C62.1763 167.564 62.0982 167.755 61.9583 167.896C61.8185 168.037 61.6283 168.118 61.4295 168.119C61.3304 168.119 61.2323 168.1 61.1406 168.062C61.049 168.025 60.9658 167.969 60.8957 167.899C60.8256 167.829 60.7701 167.746 60.7323 167.654C60.6946 167.562 60.6753 167.464 60.6757 167.365V167.357C60.6702 167.255 60.6857 167.153 60.7212 167.057C60.7567 166.961 60.8114 166.873 60.882 166.799C60.9526 166.725 61.0376 166.666 61.1318 166.626C61.226 166.586 61.3274 166.565 61.4298 166.566C61.5321 166.567 61.6333 166.588 61.7271 166.629C61.8208 166.67 61.9052 166.73 61.9751 166.805C62.0449 166.879 62.0988 166.968 62.1332 167.064C62.1677 167.161 62.1822 167.263 62.1756 167.365ZM62.0228 167.368C62.0242 167.288 62.0098 167.208 61.9804 167.134C61.9511 167.06 61.9074 166.992 61.8518 166.934C61.7963 166.877 61.7299 166.831 61.6566 166.799C61.5832 166.767 61.5043 166.75 61.4243 166.749C61.3441 166.749 61.2647 166.766 61.1909 166.797C61.1171 166.829 61.0503 166.875 60.9944 166.932C60.9385 166.99 60.8946 167.058 60.8652 167.133C60.8358 167.208 60.8216 167.287 60.8233 167.368C60.8233 167.71 61.0927 167.987 61.4243 167.987C61.5043 167.986 61.5832 167.968 61.6566 167.937C61.7299 167.905 61.7963 167.859 61.8518 167.801C61.9074 167.744 61.9511 167.676 61.9804 167.601C62.0098 167.527 62.0242 167.448 62.0228 167.368ZM8.99488 176.658H10.9171V166.806H8.99488V176.658ZM41.9013 173.425L39.2743 166.808H37.1759L41.3572 176.912H42.3909L46.6473 166.808H44.5644L41.9013 173.425ZM47.5126 176.658H52.9633V174.989H49.4348V172.329H52.8338V170.66H49.4348V168.474H52.9633V166.806H47.5126V176.658ZM61.5254 167.443L61.8104 167.8H61.5591L61.3155 167.464V167.8H61.1083V166.935H61.3855C61.5953 166.935 61.7119 167.028 61.7119 167.202C61.7145 167.321 61.6471 167.409 61.5254 167.443ZM61.5098 167.204C61.5098 167.129 61.4554 167.093 61.3544 167.093H61.3181V167.318H61.3544C61.4554 167.318 61.5098 167.282 61.5098 167.204ZM58.3285 172.508L61.4295 176.658H59.0669L56.4063 172.699H56.155V176.658H54.2353V166.806H57.085C59.3 166.806 60.572 167.87 60.572 169.715C60.572 171.225 59.7741 172.215 58.3285 172.508ZM58.5954 169.818C58.5954 168.86 57.9451 168.36 56.7482 168.36H56.1576V171.344H56.7197C57.9451 171.342 58.5954 170.808 58.5954 169.818ZM8.11147 171.741C8.10783 172.463 7.9459 173.177 7.63708 173.83C7.32826 174.484 6.88003 175.061 6.32392 175.523C5.37834 176.308 4.30063 176.66 2.80842 176.66H0.00274658V166.808H2.82396C5.93791 166.808 8.11147 168.831 8.11147 171.741ZM6.13221 171.725C6.13221 170.782 5.73325 169.865 5.06746 169.272C4.43275 168.697 3.67887 168.474 2.43795 168.474H1.92241V174.989H2.43795C3.67887 174.989 4.46384 174.751 5.06746 174.207C5.73066 173.616 6.13221 172.671 6.13221 171.725Z\" fill=\"url(#paint4_linear_17_2356)\"/>\\n</g>\\n<g clip-path=\"url(#clip3_17_2356)\">\\n<path d=\"M126.981 177.931C126.981 177.102 126.631 176.646 126.089 176.32C125.545 176.009 124.887 175.97 123.991 175.97H119.994V183.275H121.742V180.615H123.608C124.229 180.615 124.618 180.677 124.846 180.939C125.157 181.275 125.115 181.923 125.115 182.364V183.27H126.825V181.832C126.82 181.185 126.781 180.858 126.545 180.496C126.39 180.288 126.079 180.029 125.69 179.889L125.742 179.869C126.209 179.682 126.986 179.099 126.986 177.934L126.981 177.931ZM124.727 178.985L124.654 178.98C124.421 179.117 124.149 179.13 123.799 179.13H121.701V177.498H123.836C124.146 177.498 124.457 177.498 124.691 177.628C124.944 177.752 125.095 178.009 125.079 178.288C125.079 178.599 124.963 178.845 124.732 178.988L124.727 178.985ZM138.074 181.711H134.714V183.265H138.092C139.843 183.265 140.812 182.545 140.812 180.975C140.812 180.25 140.641 179.814 140.328 179.467C139.931 179.123 139.312 178.967 138.436 178.931L137.462 178.892C137.193 178.892 136.996 178.892 136.802 178.814C136.569 178.737 136.413 178.542 136.413 178.27C136.413 178.037 136.457 177.84 136.646 177.726C136.861 177.607 137.105 177.555 137.351 177.571H140.537V176.011H137.04C135.216 176.011 134.558 177.143 134.558 178.187C134.558 180.519 136.569 180.402 138.203 180.441C138.473 180.441 138.67 180.48 138.786 180.597C138.905 180.674 138.999 180.871 138.999 181.063C138.999 181.262 138.908 181.452 138.791 181.529C138.636 181.667 138.403 181.711 138.074 181.711ZM85.4915 140.683V166.838L87.5899 161.978H92.1235L92.7064 163.18V161.978H97.9991L99.1649 164.62L100.297 161.996H117.141C117.906 161.996 118.592 162.144 119.1 162.607V162.011H123.729V162.607C124.525 162.167 125.507 162.011 126.631 162.011H133.382L134.004 163.219V162.011H138.973L139.631 163.216V162.009H144.444V172.237H139.558L138.626 170.682V172.198H132.53L131.867 170.566H130.356L129.657 172.156H126.514C125.271 172.156 124.338 171.887 123.716 171.535V172.156H116.229V169.866C116.229 169.555 116.152 169.555 115.957 169.516H115.685V172.2H101.209V170.957L100.665 172.2H97.6416L97.1183 170.957V172.162H91.2815L90.6183 170.545H89.1184L88.4552 172.162H85.4915V202.858H147.113V184.444C146.413 184.794 145.524 184.91 144.592 184.91H140.128V184.249C139.584 184.677 138.651 184.91 137.76 184.91H123.6V182.579C123.6 182.268 123.553 182.268 123.289 182.268H123.095V184.915H118.432V182.154C117.659 182.506 116.766 182.542 116.027 182.506H115.473V184.876H109.825L108.426 183.278L106.95 184.832H97.7763V174.651H107.129L108.47 176.211L109.906 174.656H116.154C116.88 174.656 118.071 174.734 118.595 175.239V174.617H124.235C124.758 174.617 125.903 174.734 126.574 175.2V174.579H135.032V175.2C135.455 174.776 136.348 174.579 137.113 174.579H142.009V175.2C142.512 174.812 143.211 174.579 144.185 174.579H147.232V140.683H85.4915ZM140.299 179.426C140.31 179.439 140.317 179.457 140.328 179.467C140.354 179.493 140.387 179.493 140.408 179.519L140.299 179.428V179.426ZM147.221 174.573H147.39V176.011H147.221V174.573ZM147.317 179.62V179.607C147.239 179.542 147.198 179.483 147.123 179.426C146.734 179.029 146.113 178.869 145.144 178.843L144.211 178.812C143.9 178.812 143.708 178.794 143.512 178.734C143.278 178.656 143.123 178.462 143.123 178.19C143.123 177.957 143.201 177.775 143.356 177.661C143.553 177.545 143.745 177.532 144.056 177.532H147.224V176.009H143.9C142.113 176.009 141.413 177.141 141.413 178.185C141.413 180.516 143.434 180.4 145.066 180.439C145.335 180.439 145.532 180.478 145.646 180.594C145.765 180.672 145.843 180.869 145.843 181.06C145.843 181.242 145.755 181.418 145.61 181.527C145.493 181.672 145.258 181.708 144.91 181.708H141.574V183.275H144.908C145.996 183.275 146.809 182.97 147.239 182.343H147.317C147.55 181.996 147.667 181.566 147.667 180.988C147.667 180.366 147.55 179.978 147.317 179.625V179.62ZM133.67 177.491V175.98H127.88V183.319H133.67V181.804H129.602V180.327H133.574V178.814H129.605V177.493M120.491 163.447H122.266V170.734H120.494L120.491 163.447ZM119.496 165.405L119.478 165.421C119.478 164.607 119.141 164.125 118.597 163.804C118.035 163.48 117.38 163.454 116.499 163.454H112.512V170.76H114.258V168.081H116.123C116.745 168.081 117.134 168.159 117.385 168.392C117.701 168.744 117.662 169.371 117.662 169.812V170.729H119.416V169.296C119.416 168.649 119.375 168.325 119.131 167.96C118.898 167.682 118.608 167.467 118.276 167.346C118.722 167.164 119.499 166.568 119.499 165.403L119.496 165.405ZM117.281 166.431H117.242C117.009 166.571 116.737 166.576 116.387 166.576H114.248V164.962H116.385C116.696 164.962 117.007 164.973 117.24 165.092C117.473 165.195 117.628 165.423 117.628 165.739C117.628 166.055 117.507 166.309 117.281 166.428V166.431ZM126.735 164.965H128.372V163.41H126.703C125.501 163.41 124.621 163.682 124.061 164.265C123.32 165.042 123.123 166.053 123.123 167.141C123.123 168.467 123.442 169.299 124.056 169.923C124.657 170.54 125.727 170.726 126.569 170.726H128.589L129.25 169.102H132.851L133.53 170.726H137.053V165.26L140.348 170.726H142.809L142.815 170.732V163.444H141.043V168.529L137.986 163.452H135.343V170.216L132.408 163.335H129.807L127.364 169.086H126.587C126.128 169.086 125.649 169.009 125.374 168.739C125.051 168.351 124.893 167.807 124.893 167.024C124.893 166.286 125.1 165.703 125.395 165.392C125.74 165.042 126.1 164.965 126.732 164.965H126.735ZM131.056 164.685L132.258 167.581V167.586H129.848L131.056 164.685ZM91.6572 169.102L92.3152 170.729H95.854V165.017L98.3721 170.729H99.8851L102.406 165.024L102.445 170.729H104.232V163.449H101.341L99.2504 168.382L96.981 163.447H94.152V170.346L91.2038 163.447H88.621L85.5174 170.726H87.3826L88.0562 169.105L91.6572 169.102ZM89.8748 164.685L91.0665 167.581L91.0588 167.586H88.6883L89.8722 164.685H89.8748ZM116.206 175.967H110.657L108.455 178.358L106.318 175.97H99.341V183.275H106.217L108.432 180.861L110.566 183.27H113.939V180.835H116.11C117.665 180.835 119.141 180.41 119.141 178.387L119.126 178.379C119.126 176.358 117.577 175.97 116.204 175.97L116.206 175.967ZM105.362 181.752L105.325 181.747H101.087V180.304H104.895V178.817H101.087V177.496H105.439L107.338 179.62L105.359 181.755L105.362 181.752ZM112.206 182.607L109.538 179.636L112.206 176.765V182.602V182.607ZM116.229 179.348H113.937V177.491H116.229C116.851 177.491 117.318 177.744 117.318 178.382C117.318 179.011 116.929 179.345 116.229 179.345V179.348ZM111.312 164.965V163.447H105.517V170.734H111.312V169.232H107.253V167.77H111.209V166.278H107.253V164.965\" fill=\"url(#paint5_linear_17_2356)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_17_2356\" x1=\"62.1756\" y1=\"11.9692\" x2=\"-5.69889\" y2=\"28.8215\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_17_2356\" x1=\"147.667\" y1=\"19.5288\" x2=\"85.5583\" y2=\"44.3881\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_17_2356\" x1=\"56.9971\" y1=\"93.8809\" x2=\"9.67151\" y2=\"118.428\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_17_2356\" x1=\"145.079\" y1=\"84.2065\" x2=\"83.1241\" y2=\"100.142\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_17_2356\" x1=\"62.1772\" y1=\"166.528\" x2=\"24.0317\" y2=\"202.495\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_17_2356\" x1=\"147.667\" y1=\"140.683\" x2=\"77.3841\" y2=\"151.854\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF034B\"/>\\n<stop offset=\"1\" stop-color=\"#FF734B\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(0 0.787109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(85.4914 0.787109)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(0.00012207 140.682)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_17_2356\">\\n<rect width=\"62.1755\" height=\"62.1755\" fill=\"white\" transform=\"translate(85.4914 140.682)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ltbrg\",\"data-framer-name\":\"Frame 3700\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Easy\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Payments\"})]}),className:\"framer-1u470j3\",\"data-framer-name\":\"Easy Payments\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"TXT.com uses the best and most trusted payment processors.\"})})},YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"TXT.com uses the best and most trusted payment processors.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(113, 128, 150)\"},children:\"Placeholder description\"})}),className:\"framer-l44z21\",\"data-framer-name\":\"Placeholder description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3),pixelHeight:1555,pixelWidth:3547,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png\",srcSet:\"https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png 3547w\"}},YmLpajpHy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11174.0323),pixelHeight:1555,pixelWidth:3547,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png\",srcSet:\"https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png 3547w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8),pixelHeight:1555,pixelWidth:3547,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png\",srcSet:\"https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MqYuIcnOv6hBlgOHFdYZw3RELlQ.png 3547w\"},className:\"framer-cctlio\",\"data-framer-name\":\"648739118455a30988d78ef9_Gradient_Background.svg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fhkw9t\",\"data-framer-name\":\"Frame 3711\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hatgwd hidden-140azaa\",\"data-framer-name\":\"avatars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1saixih\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+15+0),pixelHeight:280,pixelWidth:280,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sYBvAJt23QAhmIFXVFlQqrnsHA.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+15+0),pixelHeight:280,pixelWidth:280,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sYBvAJt23QAhmIFXVFlQqrnsHA.webp\"},className:\"framer-605qcb\",\"data-framer-name\":\"67c616c0601b3be45c2230d1_twitch_69588825.webp\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mqyonc\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+15+0),pixelHeight:280,pixelWidth:280,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2x2Z1DYo9EPvTNUfiQVqHX43ZI.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+15+0),pixelHeight:280,pixelWidth:280,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2x2Z1DYo9EPvTNUfiQVqHX43ZI.webp\"},className:\"framer-1ht2rfo\",\"data-framer-name\":\"67c617691c4f10c1f6d09140_twitch_141574088%20(1).webp\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1acu3tl\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+10+0),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/K8V7RL55LUzSKCY1TzcNzFj0Yss.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+10+0),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/K8V7RL55LUzSKCY1TzcNzFj0Yss.webp\"},className:\"framer-16jdmdc\",\"data-framer-name\":\"66da17dcfffff1f0316fa543_celina_0801.webp\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iw4wc0\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+10+0),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kOyyjYTqZ2n9tlQnSj9NWmRJnaY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+10+0),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kOyyjYTqZ2n9tlQnSj9NWmRJnaY.webp\"},className:\"framer-1572n8\",\"data-framer-name\":\"67c6170ee55981a2d8162752_k8OmVQsXT5NgnI5klijrGJRAET42.webp\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ieova\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+5+0),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EwWimtb8U4AjHr2LlkNITYOo9k.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+5+0),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EwWimtb8U4AjHr2LlkNITYOo9k.webp\"},className:\"framer-1wyedqh\",\"data-framer-name\":\"67c6173734f0081ab4967eba_twitch_172115527.webp\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ifoajq\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+5+0),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uCStsYSmij0xv1mLJyuUvWW3EkM.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+5+0),pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uCStsYSmij0xv1mLJyuUvWW3EkM.webp\"},className:\"framer-1ucqax6\",\"data-framer-name\":\"67c6179dc18570ff3c984dbc_twitch_89081090%20(1).webp\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n83bj4\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9715.3+100+0+0+0+0+0),pixelHeight:388,pixelWidth:388,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4UAKbR2BaRaXHKVZjqAT4N7xtDc.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9827.8+100+0+0+0+0+0),pixelHeight:388,pixelWidth:388,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4UAKbR2BaRaXHKVZjqAT4N7xtDc.webp\"},className:\"framer-yoe6il\",\"data-framer-name\":\"669e6c054362c77561ce34ee_hakkune-p-500.webp\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmLpajpHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join 10,000+ creators\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join 10,000+ creators\"})}),className:\"framer-nqpql8\",\"data-framer-name\":\"Heading 2 \u2192 Join 1,000,000+ creators\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 242, 247)\"},children:\"Claim your TXT phone number and start connecting with your fans right away!\"})}),className:\"framer-14t090t\",\"data-framer-name\":\"Create your Wishlist and start receiving gifts from your fans right away!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{y:(componentViewport?.y||0)+0+9715.3+100+0+0+277},YmLpajpHy:{y:(componentViewport?.y||0)+0+11174.0323+100+0+0+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+9827.8+100+0+0+277,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oqtl8-container\",nodeId:\"BZ31P0XYh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTAWhite,{height:\"100%\",id:\"BZ31P0XYh\",layoutId:\"BZ31P0XYh\",variant:\"oMGsw81V3\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{y:(componentViewport?.y||0)+0+10256.3},YmLpajpHy:{y:(componentViewport?.y||0)+0+11702.0323}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10368.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fz54sh-container\",nodeId:\"y71H4g_aw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko5kIawyq:{variant:\"Gf6FCG2tJ\"},YmLpajpHy:{variant:\"rYPTkSFz1\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"y71H4g_aw\",layoutId:\"y71H4g_aw\",style:{width:\"100%\"},variant:\"OiAcM0ed9\",width:\"100%\"})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r82rk0-container hidden-nvs5po\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yJdhl1j2X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"rz6i4sqc\",height:\"100%\",id:\"yJdhl1j2X\",layoutId:\"yJdhl1j2X\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EZ43i.framer-lux5qc, .framer-EZ43i .framer-lux5qc { display: block; }\",\".framer-EZ43i.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-EZ43i .framer-13y4adl-container { flex: none; height: auto; position: relative; width: 93%; }\",\".framer-EZ43i .framer-q2h918, .framer-EZ43i .framer-15l91er, .framer-EZ43i .framer-17v7nc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-1xz46bj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 133px; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-102u2w2, .framer-EZ43i .framer-47ga7l, .framer-EZ43i .framer-2872uh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-EZ43i .framer-uuk8fv, .framer-EZ43i .framer-1rr3jp1, .framer-EZ43i .framer-115c94w { flex: none; height: 25px; position: relative; width: 125px; }\",\".framer-EZ43i .framer-1ng53le { --framer-paragraph-spacing: 0px; flex: none; height: 20px; position: relative; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-63582h, .framer-EZ43i .framer-1e97e6w, .framer-EZ43i .framer-1yhvb02 { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-EZ43i .framer-1b9r642, .framer-EZ43i .framer-wofmfj, .framer-EZ43i .framer-ligblc { --border-bottom-width: 2px; --border-color: #ff6f4b; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-EZ43i .framer-1dt1nj2, .framer-EZ43i .framer-4ysb63, .framer-EZ43i .framer-1yjbk9s { bottom: -4px; flex: none; gap: 0px; height: 14px; overflow: visible; position: absolute; right: -4px; width: 14px; }\",\".framer-EZ43i .framer-b4giqh, .framer-EZ43i .framer-zlqrwg, .framer-EZ43i .framer-1m0qlrv { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 14px; left: 0px; position: absolute; top: 0px; width: 14px; }\",\".framer-EZ43i .framer-ppl7ze, .framer-EZ43i .framer-b30nj7, .framer-EZ43i .framer-rhlb5t { aspect-ratio: 0.9994200370897868 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 6px; }\",\".framer-EZ43i .framer-aj54dh { --framer-paragraph-spacing: 0px; flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 139px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-rc10z, .framer-EZ43i .framer-ljnp5y, .framer-EZ43i .framer-ee1wcz, .framer-EZ43i .framer-1bcdu6k, .framer-EZ43i .framer-8xpr3k, .framer-EZ43i .framer-j7lv67, .framer-EZ43i .framer-x9800x, .framer-EZ43i .framer-zie51t, .framer-EZ43i .framer-cfx561, .framer-EZ43i .framer-rjxjb1, .framer-EZ43i .framer-tiok26, .framer-EZ43i .framer-q318gv, .framer-EZ43i .framer-u4c1kh, .framer-EZ43i .framer-175glcq, .framer-EZ43i .framer-k5i2tp, .framer-EZ43i .framer-l8p7cu, .framer-EZ43i .framer-1e03h76, .framer-EZ43i .framer-9olgm0, .framer-EZ43i .framer-2yytnu, .framer-EZ43i .framer-v2qt2t, .framer-EZ43i .framer-8056u, .framer-EZ43i .framer-p19tzh, .framer-EZ43i .framer-w0mfdh, .framer-EZ43i .framer-mgmf17, .framer-EZ43i .framer-1dusr7z, .framer-EZ43i .framer-3ve2kq, .framer-EZ43i .framer-1mrfis5, .framer-EZ43i .framer-13e1kkf, .framer-EZ43i .framer-owl86j, .framer-EZ43i .framer-10zfvrn, .framer-EZ43i .framer-1uhtecw, .framer-EZ43i .framer-dnfxb7, .framer-EZ43i .framer-9ie9hs, .framer-EZ43i .framer-uxy0ec, .framer-EZ43i .framer-1kzyxxu, .framer-EZ43i .framer-hkfi5w, .framer-EZ43i .framer-1vk0u1y, .framer-EZ43i .framer-1p8my5j, .framer-EZ43i .framer-rvj3xp, .framer-EZ43i .framer-1cu5rjl, .framer-EZ43i .framer-1mcwvgl, .framer-EZ43i .framer-16yrhxc, .framer-EZ43i .framer-oli3q3, .framer-EZ43i .framer-nfd20n, .framer-EZ43i .framer-1trdhqx, .framer-EZ43i .framer-8ixmsx, .framer-EZ43i .framer-1tms3cr, .framer-EZ43i .framer-1vzyiuo, .framer-EZ43i .framer-57k9sp, .framer-EZ43i .framer-1ift1tw, .framer-EZ43i .framer-1u470j3, .framer-EZ43i .framer-l44z21 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-l16o8w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1t2bs8f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1064px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-zwtltx { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 624px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1ihqtpc-container, .framer-EZ43i .framer-12qhikn-container, .framer-EZ43i .framer-euvt92-container, .framer-EZ43i .framer-oqtl8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EZ43i .framer-14d2vuq, .framer-EZ43i .framer-1ydezlk, .framer-EZ43i .framer-2eg1ic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-adihlb { flex: none; height: 816px; overflow: hidden; position: relative; width: 1964px; }\",\".framer-EZ43i .framer-5530wh { bottom: 0px; flex: none; left: 382px; position: absolute; right: 382px; top: 0px; }\",\".framer-EZ43i .framer-1m4xzt8, .framer-EZ43i .framer-1e28r6f { flex: none; gap: 0px; height: 500px; left: calc(50.00000000000002% - 754px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 500px / 2); width: 754px; }\",\".framer-EZ43i .framer-5eeyfi { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: 407px; left: 518px; position: absolute; top: calc(50.00000000000002% - 407px / 2); width: 31%; }\",\".framer-EZ43i .framer-1qofh4b { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 47px; flex: none; left: 0px; position: absolute; right: 519px; top: 47px; }\",\".framer-EZ43i .framer-expahp { --border-bottom-width: 3px; --border-color: #ffffff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; flex: none; gap: 0px; left: 232px; overflow: hidden; position: absolute; right: 232px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1yrr03c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-12oln1i { flex: 1 0 0px; height: 409px; overflow: visible; position: relative; width: 1px; }\",\".framer-EZ43i .framer-129ba7h { bottom: 47px; flex: none; left: -92px; position: absolute; top: -35px; width: 160%; }\",\".framer-EZ43i .framer-1mklgbn { aspect-ratio: 0.5773955773955773 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 233px); left: 441px; position: absolute; top: 91px; width: 125px; }\",\".framer-EZ43i .framer-19d12qx { aspect-ratio: 0.5781057810578106 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 233px); left: 193px; position: absolute; top: 88px; width: 125px; }\",\".framer-EZ43i .framer-r5hkn9 { --border-bottom-width: 3px; --border-color: #ffffff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 0.578 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 274px); left: 50%; overflow: hidden; position: absolute; top: 56px; transform: translateX(-50%); width: 158px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-eekbpl { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.15), 0px 4px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 720px; }\",\".framer-EZ43i .framer-t8d6zq, .framer-EZ43i .framer-17f1hha, .framer-EZ43i .framer-jmu5zq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-ugtixh, .framer-EZ43i .framer-1w8clvv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-1sy6cme, .framer-EZ43i .framer-17npuqr { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-EZ43i .framer-g10ktl { bottom: 0px; flex: none; gap: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; width: 160px; z-index: 1; }\",\".framer-EZ43i .framer-13b2l5o { --border-bottom-width: 4px; --border-color: #ffffff; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; bottom: -44px; box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1); flex: none; gap: 0px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: -80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-nja9in { flex: none; gap: 0px; height: 152px; left: calc(50.00000000000002% - 152px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 152px / 2); width: 152px; }\",\".framer-EZ43i .framer-g6oacc { background-color: #22c55e; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; bottom: -49px; box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1); flex: none; gap: 0px; height: 36px; left: calc(50.00000000000002% - 90.7699966430664px / 2); overflow: hidden; position: absolute; width: 91px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-i28zc5 { --framer-paragraph-spacing: 0px; flex: none; height: 17px; left: 16px; position: absolute; top: 10px; white-space: pre-wrap; width: 60px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1c82apx, .framer-EZ43i .framer-ymcsxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-z74r8n { --border-bottom-width: 1px; --border-color: #ff4478; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 68, 120, 0.1); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 11px 4px 11px; position: relative; width: 65px; }\",\".framer-EZ43i .framer-1laqjtb { --border-bottom-width: 1px; --border-color: #22c55e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #dcfce7; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 11px 4px 11px; position: relative; width: 112px; }\",\".framer-EZ43i .framer-euc0a9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 680px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-13wy65z { align-content: center; align-items: center; background: linear-gradient(260.96805824930755deg, #ff034b 0%, rgb(255, 115, 75) 100%); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 236px 16px 236px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1kk31h5, .framer-EZ43i .framer-1jeqa4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 276px; }\",\".framer-EZ43i .framer-foosgs, .framer-EZ43i .framer-7l3gn4 { align-content: center; align-items: center; background-color: #dcfce7; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-bjld3g { --framer-paragraph-spacing: 0px; flex: none; height: 19px; position: relative; white-space: pre-wrap; width: 101px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-88kj1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-lxe3tb { --framer-paragraph-spacing: 0px; flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-qzpiyr { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-EZ43i .framer-1nm2b4s, .framer-EZ43i .framer-nvmw76, .framer-EZ43i .framer-1svd0ph, .framer-EZ43i .framer-1md182k, .framer-EZ43i .framer-1gcrpsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1fb03qr { flex: none; height: 31px; position: relative; width: 120px; }\",\".framer-EZ43i .framer-115zaz8 { flex: none; height: 44px; position: relative; width: 41px; }\",\".framer-EZ43i .framer-6i9t8w { flex: none; height: 31px; position: relative; width: 131px; }\",\".framer-EZ43i .framer-a8vgqo { flex: none; height: 37px; position: relative; width: 41px; }\",\".framer-EZ43i .framer-183xjay, .framer-EZ43i .framer-15y9owj { flex: none; height: 41px; position: relative; width: 41px; }\",\".framer-EZ43i .framer-cleqzp { aspect-ratio: 1.147227533460803 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1046px); overflow: hidden; position: relative; width: 100%; }\",\".framer-EZ43i .framer-i5ycux { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 100%; }\",\".framer-EZ43i .framer-1hj3ayq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 782px; justify-content: flex-start; left: -112px; overflow: visible; padding: 0px; position: absolute; right: -113px; top: calc(54.78011472275337% - 782px / 2); }\",\".framer-EZ43i .framer-5o4u2a { --framer-paragraph-spacing: 0px; flex: none; height: 68px; position: relative; white-space: pre-wrap; width: 1440px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-lrh2tw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 630px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1qd9uxs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-rtmldj, .framer-EZ43i .framer-1c3g6yy, .framer-EZ43i .framer-8bg4q7, .framer-EZ43i .framer-owyqbd, .framer-EZ43i .framer-5369fq, .framer-EZ43i .framer-1lhtwnu { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.25); flex: none; gap: 0px; height: 310px; overflow: visible; position: relative; width: 240px; }\",\".framer-EZ43i .framer-19hkpp0, .framer-EZ43i .framer-1pwoawb, .framer-EZ43i .framer-7of2t2, .framer-EZ43i .framer-1the1te, .framer-EZ43i .framer-rryti3, .framer-EZ43i .framer-1rmivq5 { flex: none; height: 81px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-EZ43i .framer-zv6rin { --framer-paragraph-spacing: 0px; flex: none; height: 21px; left: calc(50.082134405771896% - 63.55424880981445px / 2); position: absolute; top: 135px; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1j4xqke { --framer-paragraph-spacing: 0px; flex: none; height: 14px; left: calc(50.0747267405192% - 102.91868591308594px / 2); position: absolute; top: 163px; white-space: pre-wrap; width: 103px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1fnxk7g, .framer-EZ43i .framer-qt20b6 { flex: none; height: 23px; left: calc(50% - 80px / 2); position: absolute; top: 199px; width: 80px; }\",\".framer-EZ43i .framer-1pglqxe, .framer-EZ43i .framer-1iu00s8 { background-color: #edf2f7; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; bottom: 30px; flex: none; gap: 0px; height: 35px; left: 45px; overflow: visible; position: absolute; right: 45px; }\",\".framer-EZ43i .framer-18z3m4 { --framer-paragraph-spacing: 0px; flex: none; height: 18px; left: calc(50.1128412882487% - 96.41854095458984px / 2); position: absolute; top: calc(50% - 18px / 2); white-space: pre-wrap; width: 96px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-hqxoi4, .framer-EZ43i .framer-12wsr68, .framer-EZ43i .framer-1w01osr, .framer-EZ43i .framer-1hfpn85, .framer-EZ43i .framer-k00i8d, .framer-EZ43i .framer-1qpf1ev { bottom: 213px; flex: none; left: 186px; position: absolute; right: 19px; top: 63px; }\",\".framer-EZ43i .framer-utwt5w, .framer-EZ43i .framer-bud958, .framer-EZ43i .framer-wwzx0o, .framer-EZ43i .framer-qufrbj, .framer-EZ43i .framer-g1pfxq, .framer-EZ43i .framer-1urkz2z { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 45px; border-bottom-right-radius: 45px; border-top-left-radius: 45px; border-top-right-radius: 45px; flex: none; gap: 0px; height: 90px; left: calc(50% - 90px / 2); overflow: hidden; position: absolute; top: 35px; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-11hgwdx { --framer-paragraph-spacing: 0px; flex: none; height: 21px; left: calc(50.06932417551676% - 50.232749938964844px / 2); position: absolute; top: 135px; white-space: pre-wrap; width: 50px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1krqmq0 { --framer-paragraph-spacing: 0px; flex: none; height: 14px; left: calc(50.0685969988505% - 45.90928268432617px / 2); position: absolute; top: 163px; white-space: pre-wrap; width: 46px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-hkms50, .framer-EZ43i .framer-wl2mai, .framer-EZ43i .framer-14eib52, .framer-EZ43i .framer-1snu3kr { flex: none; height: 22px; left: calc(50% - 80px / 2); position: absolute; top: 200px; width: 80px; }\",\".framer-EZ43i .framer-ity12q, .framer-EZ43i .framer-ngmnny, .framer-EZ43i .framer-11jv6qy, .framer-EZ43i .framer-1c4jzty { background-color: #dee1e6; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; bottom: 30px; flex: none; gap: 0px; height: 35px; left: 45px; overflow: visible; position: absolute; right: 45px; }\",\".framer-EZ43i .framer-1dz07nl, .framer-EZ43i .framer-zwlgtq, .framer-EZ43i .framer-1qk2pte, .framer-EZ43i .framer-erm29k, .framer-EZ43i .framer-1etbo99 { --framer-paragraph-spacing: 0px; flex: none; height: 18px; left: calc(50.11282094319661% - 96.41854095458984px / 2); position: absolute; top: calc(50% - 18px / 2); white-space: pre-wrap; width: 96px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-uiya52 { --framer-paragraph-spacing: 0px; flex: none; height: 21px; left: calc(50.079965591430664% - 112.62382507324219px / 2); position: absolute; top: 135px; white-space: pre-wrap; width: 113px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-21cz38 { --framer-paragraph-spacing: 0px; flex: none; height: 14px; left: calc(50.069236755371094% - 86.0323486328125px / 2); position: absolute; top: 163px; white-space: pre-wrap; width: 86px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-tdopj2 { --framer-paragraph-spacing: 0px; flex: none; height: 21px; left: calc(50.0807507832845% - 64.62759399414062px / 2); position: absolute; top: 135px; white-space: pre-wrap; width: 65px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-abin0d { --framer-paragraph-spacing: 0px; flex: none; height: 14px; left: calc(50.06570180257162% - 81.55535888671875px / 2); position: absolute; top: 163px; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-q3eq9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 310px; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 240px; }\",\".framer-EZ43i .framer-6h81f5 { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.25); flex: none; gap: 0px; height: 310px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-EZ43i .framer-181ockv { --framer-paragraph-spacing: 0px; flex: none; height: 141px; left: 30px; position: absolute; top: 28px; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-f34b27 { --framer-paragraph-spacing: 0px; flex: none; height: 73px; left: 30px; position: absolute; top: 210px; white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1rrht9y { --framer-paragraph-spacing: 0px; flex: none; height: 20px; left: 30px; position: absolute; top: 260px; white-space: pre-wrap; width: 125px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-czpmc4 { --framer-paragraph-spacing: 0px; flex: none; height: 21px; left: calc(50.07312615712484% - 110.75090789794922px / 2); position: absolute; top: 135px; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-dyppky { --framer-paragraph-spacing: 0px; flex: none; height: 14px; left: calc(50.07035573323567% - 83.01763916015625px / 2); position: absolute; top: 163px; white-space: pre-wrap; width: 83px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-10hxaxq { --framer-paragraph-spacing: 0px; flex: none; height: 21px; left: calc(50.07221857706706% - 101.64669799804688px / 2); position: absolute; top: 135px; white-space: pre-wrap; width: 102px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-gdm4hd { --framer-paragraph-spacing: 0px; flex: none; height: 14px; left: calc(50.06616751352946% - 76.6176528930664px / 2); position: absolute; top: 163px; white-space: pre-wrap; width: 77px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-zlj7tt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 80px 140px 80px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-1lvziz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 750px; }\",\".framer-EZ43i .framer-9hgfwf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-6x7b2n { --framer-paragraph-spacing: 0px; flex: none; height: 60px; position: relative; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-xrn40x { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 692px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1fbqrt1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-qlo5ac, .framer-EZ43i .framer-1cq5b0a, .framer-EZ43i .framer-n5xqiw, .framer-EZ43i .framer-17j2zf9, .framer-EZ43i .framer-1ui3ydc, .framer-EZ43i .framer-1xevidi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-1oub4xu, .framer-EZ43i .framer-sr95yt, .framer-EZ43i .framer-118ujed { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-EZ43i .framer-6wq6mg, .framer-EZ43i .framer-13ays2h, .framer-EZ43i .framer-lc5a2g { --border-bottom-width: 2px; --border-color: #0b0b2b; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; gap: 0px; height: 60px; overflow: visible; position: relative; width: 60px; }\",\".framer-EZ43i .framer-1nni5e9, .framer-EZ43i .framer-6jmd7n, .framer-EZ43i .framer-a393g4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-EZ43i .framer-1fhl4jo, .framer-EZ43i .framer-sbu4qr, .framer-EZ43i .framer-179lop0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-12f47o2, .framer-EZ43i .framer-1jhbu03, .framer-EZ43i .framer-hn9x9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-EZ43i .framer-u8g657 { flex: none; gap: 0px; height: 536px; overflow: visible; position: relative; width: 730px; }\",\".framer-EZ43i .framer-1aq5b45 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 494px; left: 98px; opacity: 0.8; position: absolute; top: 42px; width: 556px; }\",\".framer-EZ43i .framer-j7jnrj { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.15), 0px 4px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 20px; position: absolute; top: 246px; width: 401px; }\",\".framer-EZ43i .framer-ox239b { --border-bottom-width: 1px; --border-color: #ff4478; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 68, 120, 0.1); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 3px 11px 3px 11px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1qfg7jf { --border-bottom-width: 1px; --border-color: #22c55e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #dcfce7; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 11px 4px 11px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-mwwb84, .framer-EZ43i .framer-wpwyi2, .framer-EZ43i .framer-t0uplj, .framer-EZ43i .framer-j16ytu, .framer-EZ43i .framer-1lbht1e, .framer-EZ43i .framer-utdnn7, .framer-EZ43i .framer-17s14mo, .framer-EZ43i .framer-z8kkh0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1t5yd2c { align-content: center; align-items: center; background: linear-gradient(260.96805824930755deg, #ff034b 0%, rgb(255, 115, 75) 100%); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 81px 12px 81px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1f04ukt { flex: none; height: 153px; left: 385px; position: absolute; top: 1px; width: 286px; }\",\".framer-EZ43i .framer-56y9vf { flex: none; height: 124px; left: 388px; position: absolute; top: 21px; width: 317px; }\",\".framer-EZ43i .framer-1ddlom1 { --border-bottom-width: 1.3515625px; --border-color: rgba(0, 0, 0, 0.03); --border-left-width: 1.3515625px; --border-right-width: 1.3515625px; --border-style: solid; --border-top-width: 1.3515625px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1.3515625px 2.703125px 0px rgba(16, 24, 40, 0.06), 0px 1.3515625px 4.0546875px 0px rgba(16, 24, 40, 0.1), 1.1476919651031494px -1.1476919651031494px 2.295383930206299px 0px rgba(0, 0, 0, 0.16); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13.515625px; height: 95px; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 62px; width: 338px; }\",\".framer-EZ43i .framer-x1wm3m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13.621519088745117px; height: min-content; justify-content: flex-start; overflow: visible; padding: 13.515625px 16.21875px 13.515625px 16.21875px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-ulagp4 { flex: none; height: 28px; position: relative; width: 306px; }\",\".framer-EZ43i .framer-1qyz1r2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13.515625px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-gqv6nq { flex: none; height: 61.75000000000001vh; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-EZ43i .framer-12ctzuc { flex: none; gap: 0px; height: 617px; overflow: visible; position: relative; width: 678px; }\",\".framer-EZ43i .framer-xp7tms { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 494px; left: 61px; opacity: 0.8; position: absolute; top: 123px; width: 556px; }\",\".framer-EZ43i .framer-12hi2vp { align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 2.7993500232696533px 11.197400093078613px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3.308485507965088px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 13.233942031860352px 11.579699516296387px 13.233942031860352px 11.579699516296387px; position: absolute; top: 314px; width: min-content; }\",\".framer-EZ43i .framer-as1584 { flex: none; height: 35px; position: relative; width: 35px; }\",\".framer-EZ43i .framer-1xgto6w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5.598700046539307px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-zynika { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1.313025712966919px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1jjn302 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2.758863687515259px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1rqnyj2 { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-EZ43i .framer-vvfddi { background-color: #7c7c7c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 2px; position: relative; width: 2px; }\",\".framer-EZ43i .framer-15c3rqf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 256px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-15lcdl5 { flex: none; height: 146px; position: relative; width: 259px; }\",\".framer-EZ43i .framer-wtipyk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16.096263885498047px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10.699199676513672px 0px 10.699199676513672px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-pehnho, .framer-EZ43i .framer-b9qzqc, .framer-EZ43i .framer-93t3yp, .framer-EZ43i .framer-3el4o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1.543946385383606px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-ohyvwr, .framer-EZ43i .framer-1uchy1s, .framer-EZ43i .framer-cvugyr, .framer-EZ43i .framer-1q9i7i9 { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-EZ43i .framer-9cijed { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-EZ43i .framer-15ivdni { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4.727505207061768px; height: min-content; justify-content: flex-start; left: 400px; overflow: hidden; padding: 18.91002082824707px 16.546268463134766px 18.91002082824707px 16.546268463134766px; position: absolute; top: 0px; width: 278px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1sfm0zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3.9130001068115234px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-8tm6bp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 99px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-gg1vwm { flex: none; height: 6px; position: relative; width: 23px; }\",\".framer-EZ43i .framer-vfmc57 { align-content: flex-start; align-items: flex-start; background: linear-gradient(260.96805824930755deg, #ff034b 0%, rgb(255, 115, 75) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 47.27505111694336px 15.20460033416748px 47.27505111694336px 15.20460033416748px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-davaa { --framer-paragraph-spacing: 0px; flex: none; height: 151px; position: relative; white-space: pre-wrap; width: 214px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-6irkml { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9.455010414123535px 0px 9.455010414123535px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-10n7uyg { flex: none; height: 17px; position: relative; width: 246px; }\",\".framer-EZ43i .framer-1kpu9ud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6.652012825012207px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-16ui1wb { flex: none; height: 10px; position: relative; width: 11px; }\",\".framer-EZ43i .framer-zkv8x2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 245px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1sez6e9, .framer-EZ43i .framer-i0mcwq { flex: none; height: 62vh; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-EZ43i .framer-18jp4kl { flex: none; gap: 0px; height: 582px; overflow: visible; position: relative; width: 677px; }\",\".framer-EZ43i .framer-vvxnfy { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 494px; left: 70px; opacity: 0.8; position: absolute; top: 0px; width: 556px; }\",\".framer-EZ43i .framer-9ldegv { flex: none; gap: 0px; height: 201px; left: 0px; overflow: visible; position: absolute; top: 41px; width: 292px; }\",\".framer-EZ43i .framer-xpawq3 { flex: none; height: 167px; left: 127px; position: absolute; top: 17px; width: 165px; }\",\".framer-EZ43i .framer-199u4gr { flex: none; height: 165px; left: 82px; position: absolute; top: 18px; width: 167px; }\",\".framer-EZ43i .framer-tzzc2r { flex: none; height: 202px; left: 0px; position: absolute; top: 0px; width: 204px; }\",\".framer-EZ43i .framer-127ba7t { background-color: #000000; border-bottom-left-radius: 37px; border-bottom-right-radius: 37px; border-top-left-radius: 37px; border-top-right-radius: 37px; bottom: 0px; flex: none; gap: 0px; height: 469px; left: 449px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1f9ohn2 { flex: none; gap: 0px; height: 469px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 227px; }\",\".framer-EZ43i .framer-1rnzucu { --border-bottom-width: 2.112612724304199px; --border-color: #565553; --border-left-width: 2.112612724304199px; --border-right-width: 2.112612724304199px; --border-style: solid; --border-top-width: 2.112612724304199px; border-bottom-left-radius: 37px; border-bottom-right-radius: 37px; border-top-left-radius: 37px; border-top-right-radius: 37px; bottom: 1px; flex: none; gap: 0px; left: 1px; overflow: visible; position: absolute; right: 1px; top: 1px; }\",\".framer-EZ43i .framer-13qytw4 { --border-bottom-width: 1.0563063621520996px; --border-color: #3f3e3b; --border-left-width: 1.0563063621520996px; --border-right-width: 1.0563063621520996px; --border-style: solid; --border-top-width: 1.0563063621520996px; border-bottom-left-radius: 37px; border-bottom-right-radius: 37px; border-top-left-radius: 37px; border-top-right-radius: 37px; bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-EZ43i .framer-tbcuua { --border-bottom-width: 1.0563063621520996px; --border-color: #30302e; --border-left-width: 1.0563063621520996px; --border-right-width: 1.0563063621520996px; --border-style: solid; --border-top-width: 1.0563063621520996px; -webkit-filter: blur(0.26631107926368713px); border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; bottom: 1px; filter: blur(0.26631107926368713px); flex: none; gap: 0px; left: 1px; opacity: 0.9; overflow: visible; position: absolute; right: 1px; top: 1px; }\",\".framer-EZ43i .framer-17gwcyk { --border-bottom-width: 0.5281531810760498px; --border-color: #646464; --border-left-width: 0.5281531810760498px; --border-right-width: 0.5281531810760498px; --border-style: solid; --border-top-width: 0.5281531810760498px; -webkit-filter: blur(0.17754070460796356px); border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; bottom: 4px; filter: blur(0.17754070460796356px); flex: none; gap: 0px; left: 4px; opacity: 0.8; overflow: visible; position: absolute; right: 4px; top: 4px; }\",\".framer-EZ43i .framer-uxf64n { background-color: #ffffff; border-bottom-left-radius: 29px; border-bottom-right-radius: 29px; border-top-left-radius: 29px; border-top-right-radius: 29px; flex: none; gap: 0px; height: 450px; left: 10px; overflow: hidden; position: absolute; top: 10px; width: 208px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-112b74g { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3.624420404434204px; height: 57px; justify-content: flex-start; left: 0px; overflow: visible; padding: 2.174652338027954px 5.799072742462158px 2.174652338027954px 5.799072742462158px; position: absolute; top: 395px; width: 207px; }\",\".framer-EZ43i .framer-1h0zmaf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 2.899536371231079px 0px 2.899536371231079px 0px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-15yvr3k { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-EZ43i .framer-9xl0nx { --border-bottom-width: 0.7248840928077698px; --border-color: #d9d9d9; --border-left-width: 0.7248840928077698px; --border-right-width: 0.7248840928077698px; --border-style: solid; --border-top-width: 0.7248840928077698px; align-content: center; align-items: center; border-bottom-left-radius: 53px; border-bottom-right-radius: 53px; border-top-left-radius: 53px; border-top-right-radius: 53px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 23px; justify-content: space-between; overflow: visible; padding: 2.1100969314575195px 8.440387725830078px 2.1100969314575195px 8.440387725830078px; position: relative; width: 164px; }\",\".framer-EZ43i .framer-1g80apy { background-color: #f5f5f5; flex: none; height: 78px; left: 0px; position: absolute; top: 0px; width: 207px; }\",\".framer-EZ43i .framer-1d8z9za { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 4.225225448608398px 8.450450897216797px 4.225225448608398px 8.450450897216797px; position: absolute; transform: translateX(-50%); width: 208px; }\",\".framer-EZ43i .framer-447ow4 { background-color: #000000; border-bottom-left-radius: 53px; border-bottom-right-radius: 53px; border-top-left-radius: 53px; border-top-right-radius: 53px; flex: none; height: 3px; position: relative; width: 71px; }\",\".framer-EZ43i .framer-1s3xuy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 0px 8.450450897216797px 0px 8.450450897216797px; position: absolute; top: 39px; width: 208px; }\",\".framer-EZ43i .framer-1h6l1wj { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-EZ43i .framer-1ft782r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3.1689188480377197px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-vsfatb { border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-EZ43i .framer-b3juap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2.112612724304199px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1vl1q8n { flex: none; height: 6px; position: relative; width: 5px; }\",\".framer-EZ43i .framer-zx8uke { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2.112612724304199px; height: 21px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 21px; }\",\".framer-EZ43i .framer-1cre5s0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 82px; position: absolute; top: 90px; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-1wugpkf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 8.450450897216797px 16.900901794433594px 8.450450897216797px 27.463964462280273px; position: absolute; top: 0px; width: 208px; }\",\".framer-EZ43i .framer-1k2yezy { flex: none; height: 8px; position: relative; width: 43px; }\",\".framer-EZ43i .framer-6o7ju8 { flex: none; height: 20px; left: calc(50.11605437189134% - 66px / 2); position: absolute; top: calc(5.630625946435338% - 20px / 2); width: 66px; }\",\".framer-EZ43i .framer-1836qmk { flex: none; height: 469px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 228px; }\",\".framer-EZ43i .framer-12clgql { background-color: #7c7c7c; flex: none; height: 3px; left: 0px; mix-blend-mode: screen; opacity: 0.75; position: absolute; top: 419px; width: 4px; }\",\".framer-EZ43i .framer-1rrurgc { background-color: #7c7c7c; flex: none; height: 4px; left: 46px; mix-blend-mode: screen; opacity: 0.75; position: absolute; top: 465px; width: 3px; }\",\".framer-EZ43i .framer-1hymquw { background-color: #7c7c7c; flex: none; height: 3px; left: 224px; mix-blend-mode: screen; opacity: 0.75; position: absolute; top: 48px; width: 4px; }\",\".framer-EZ43i .framer-vw65z6 { background-color: #7c7c7c; flex: none; height: 3px; left: 0px; mix-blend-mode: screen; opacity: 0.75; position: absolute; top: 48px; width: 4px; }\",\".framer-EZ43i .framer-1ldzylm { background-color: #7c7c7c; flex: none; height: 4px; left: 181px; mix-blend-mode: screen; opacity: 0.75; position: absolute; top: 0px; width: 3px; }\",\".framer-EZ43i .framer-yaoy67 { background-color: #7c7c7c; flex: none; height: 3px; left: 224px; mix-blend-mode: screen; opacity: 0.75; position: absolute; top: 418px; width: 4px; }\",\".framer-EZ43i .framer-o4a1va { flex: none; gap: 0px; height: 284px; left: 18px; overflow: visible; position: absolute; top: 109px; width: 191px; }\",\".framer-EZ43i .framer-1yuk1oc { flex: none; height: 33px; left: -3px; position: absolute; top: 145px; width: 152px; }\",\".framer-EZ43i .framer-d5fvdq { background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 11.018238067626953px; height: 95px; left: 1px; overflow: hidden; position: absolute; top: 195px; width: 152px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-ks3smy, .framer-EZ43i .framer-17ws0gy, .framer-EZ43i .framer-27i4xc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2.599686861038208px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 36%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-EZ43i .framer-1kg3i1r, .framer-EZ43i .framer-i29jw5, .framer-EZ43i .framer-c9h64l { aspect-ratio: 0.9994199855887205 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 14px; }\",\".framer-EZ43i .framer-1w7pwn9, .framer-EZ43i .framer-hzl8hp, .framer-EZ43i .framer-c6kt5b { align-content: flex-start; align-items: flex-start; background-color: #e6e6e6; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2.7545595169067383px; height: 32px; justify-content: flex-start; left: 0px; overflow: visible; padding: 2.7545595169067383px 5.509119033813477px 2.7545595169067383px 5.509119033813477px; position: absolute; top: 63px; width: 152px; }\",\".framer-EZ43i .framer-yjd2b7, .framer-EZ43i .framer-1jrddhq, .framer-EZ43i .framer-abnexw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2.7545595169067383px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 1.3772797584533691px 0px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-1ddkpk9, .framer-EZ43i .framer-1q50mb5, .framer-EZ43i .framer-183rcpn, .framer-EZ43i .framer-1a86hm4, .framer-EZ43i .framer-11go3e2, .framer-EZ43i .framer-o7maus { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 140px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-cjap6l { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5.799072742462158px; height: min-content; justify-content: flex-start; left: 41px; overflow: visible; padding: 0px; position: absolute; top: 15px; width: min-content; }\",\".framer-EZ43i .framer-ffgp2c { align-content: flex-start; align-items: flex-start; background-color: #e9e9eb; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2.112612724304199px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6.3378376960754395px; position: relative; width: 151px; }\",\".framer-EZ43i .framer-11jo1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 138px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1t4puop { --border-bottom-width: 0.7248840928077698px; --border-color: #ffffff; --border-left-width: 0.7248840928077698px; --border-right-width: 0.7248840928077698px; --border-style: solid; --border-top-width: 0.7248840928077698px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: 59px; overflow: visible; position: relative; width: 60px; }\",\".framer-EZ43i .framer-19jjrtt { flex: none; height: 24px; left: 18px; position: absolute; top: 18px; width: 26px; }\",\".framer-EZ43i .framer-1evsf3d { flex: none; height: 31px; left: 140px; position: absolute; top: 177px; width: 28px; }\",\".framer-EZ43i .framer-1fu54v0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 900px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 80px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-po32tb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-u83irg { --framer-paragraph-spacing: 0px; flex: none; height: 60px; position: relative; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-1af53bz { flex: none; gap: 0px; height: 54px; overflow: visible; position: relative; width: 426px; }\",\".framer-EZ43i .framer-1c9blab { --framer-paragraph-spacing: 0px; flex: none; height: 40px; left: 0px; position: absolute; top: 8px; white-space: pre-wrap; width: 426px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1c4fv1f { bottom: 1px; flex: none; left: 108px; position: absolute; right: 201px; top: -1px; }\",\".framer-EZ43i .framer-1vtobkw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 534px; }\",\".framer-EZ43i .framer-194h8bq { -webkit-mask: linear-gradient(89deg, rgba(0, 0, 0, 0) 12.622466216216216%, rgba(0, 0, 0, 0.38575) 33.28758445945946%, rgba(0,0,0,1) 58.59902871621622%) add; flex: 1 0 0px; height: 100%; mask: linear-gradient(89deg, rgba(0, 0, 0, 0) 12.622466216216216%, rgba(0, 0, 0, 0.38575) 33.28758445945946%, rgba(0,0,0,1) 58.59902871621622%) add; overflow: hidden; position: relative; width: 1px; }\",\".framer-EZ43i .framer-a0dtxo { flex: none; height: 900px; left: calc(50.00000000000002% - 566px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 900px / 2); width: 566px; }\",\".framer-EZ43i .framer-bx02ca, .framer-EZ43i .framer-1fjd9vd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-vb9x95, .framer-EZ43i .framer-1izjkb8 { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1wrq84m, .framer-EZ43i .framer-worhj { flex: none; height: 77px; position: relative; width: 77px; }\",\".framer-EZ43i .framer-18a3r0n, .framer-EZ43i .framer-1x1ehhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 272px; }\",\".framer-EZ43i .framer-9vsah6 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-1017h7t, .framer-EZ43i .framer-1ssz7gc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-EZ43i .framer-1gw5fai, .framer-EZ43i .framer-8apbwl { flex: 1 0 0px; height: 202px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-1806vp2, .framer-EZ43i .framer-ju249p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 83px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 225px; }\",\".framer-EZ43i .framer-10hotee, .framer-EZ43i .framer-1ofjw0o { background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 11.018238067626953px; height: 95px; overflow: hidden; position: relative; width: 152px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1t3qtql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 328px; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-mwgae7, .framer-EZ43i .framer-rsh2d3 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 100%; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1jkeyog, .framer-EZ43i .framer-rlg2sv { background-color: #ffe5b0; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; gap: 0px; height: 90px; overflow: visible; position: relative; width: 90px; }\",\".framer-EZ43i .framer-115q9i3, .framer-EZ43i .framer-1qofyt6, .framer-EZ43i .framer-1bidggv, .framer-EZ43i .framer-qmjut { --framer-paragraph-spacing: 0px; flex: none; height: 50px; left: 23px; position: absolute; top: 20px; white-space: pre-wrap; width: 44px; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-cdsxdm, .framer-EZ43i .framer-1c4weze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 105px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 265px; }\",\".framer-EZ43i .framer-fp92r4 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 100%; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-io3jak, .framer-EZ43i .framer-15z19k1 { background-color: #fcfbf9; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; gap: 0px; height: 90px; overflow: visible; position: relative; width: 90px; }\",\".framer-EZ43i .framer-1koxyaf, .framer-EZ43i .framer-1vg683j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 123px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 194px; }\",\".framer-EZ43i .framer-pqwmtb, .framer-EZ43i .framer-k3o8qq { --framer-paragraph-spacing: 0px; flex: none; height: 75px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-7tw018 { align-content: flex-end; align-items: flex-end; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-badc12, .framer-EZ43i .framer-1bqsc9g, .framer-EZ43i .framer-ia8g1r, .framer-EZ43i .framer-15ltbrg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-ltqwa4, .framer-EZ43i .framer-lxgfu { aspect-ratio: 0.7977044476327116 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 221px); overflow: visible; position: relative; width: 176px; }\",\".framer-EZ43i .framer-1bzm83o { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-l42i9b, .framer-EZ43i .framer-13vfwsp { flex: none; height: 203px; position: relative; width: 148px; }\",\".framer-EZ43i .framer-1ljlt6 { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-EZ43i .framer-1ekbrxy, .framer-EZ43i .framer-1t217kk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-10qdui9, .framer-EZ43i .framer-grm07k { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 263px; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1mqzkuh { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-iujqqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-62h5cy, .framer-EZ43i .framer-1dvl3x7 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 280px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-EZ43i .framer-no06o2 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 280px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-jyffkf { align-content: flex-end; align-items: flex-end; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 301px; justify-content: space-between; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-pxuh7j { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-cctlio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-EZ43i .framer-fhkw9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EZ43i .framer-1hatgwd { flex: none; gap: 0px; height: 97px; overflow: visible; position: relative; width: 460px; }\",\".framer-EZ43i .framer-1saixih { flex: none; gap: 0px; height: 70px; left: 0px; overflow: visible; position: absolute; top: 15px; width: 70px; }\",\".framer-EZ43i .framer-605qcb, .framer-EZ43i .framer-1ht2rfo { border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; flex: none; gap: 0px; height: 70px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 70px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1mqyonc { flex: none; gap: 0px; height: 70px; left: 390px; overflow: visible; position: absolute; top: 15px; width: 70px; }\",\".framer-EZ43i .framer-1acu3tl { flex: none; gap: 0px; height: 80px; left: 50px; overflow: visible; position: absolute; top: 10px; width: 80px; }\",\".framer-EZ43i .framer-16jdmdc, .framer-EZ43i .framer-1572n8 { border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; gap: 0px; height: 80px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1iw4wc0 { flex: none; gap: 0px; height: 80px; left: 330px; overflow: visible; position: absolute; top: 10px; width: 80px; }\",\".framer-EZ43i .framer-4ieova { flex: none; gap: 0px; height: 90px; left: 110px; overflow: visible; position: absolute; top: 5px; width: 90px; }\",\".framer-EZ43i .framer-1wyedqh, .framer-EZ43i .framer-1ucqax6 { border-bottom-left-radius: 90px; border-bottom-right-radius: 90px; border-top-left-radius: 90px; border-top-right-radius: 90px; flex: none; gap: 0px; height: 90px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-1ifoajq { flex: none; gap: 0px; height: 90px; left: 260px; overflow: visible; position: absolute; top: 5px; width: 90px; }\",\".framer-EZ43i .framer-n83bj4 { flex: none; gap: 0px; height: 97px; left: 180px; overflow: visible; position: absolute; top: 0px; width: 97px; }\",\".framer-EZ43i .framer-yoe6il { border-bottom-left-radius: 97px; border-bottom-right-radius: 97px; border-top-left-radius: 97px; border-top-right-radius: 97px; flex: none; gap: 0px; height: 97px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 97px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZ43i .framer-nqpql8 { --framer-paragraph-spacing: 0px; flex: none; height: 68px; position: relative; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-14t090t { --framer-paragraph-spacing: 0px; flex: none; height: 28px; position: relative; white-space: pre; width: auto; }\",\".framer-EZ43i .framer-fz54sh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-EZ43i .framer-r82rk0-container { flex: none; height: 100px; position: relative; width: 200px; }\",...sharedStyle.css,'.framer-EZ43i[data-border=\"true\"]::after, .framer-EZ43i [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-EZ43i.framer-72rtr7 { width: 810px; } .framer-EZ43i .framer-q2h918 { padding: 0px 40px 110px 40px; } .framer-EZ43i .framer-1t2bs8f { white-space: pre; width: auto; } .framer-EZ43i .framer-5530wh { left: 604px; right: 606px; } .framer-EZ43i .framer-5eeyfi { aspect-ratio: 0.5773955773955773 / 1; height: var(--framer-aspect-ratio-supported, 355px); left: 463px; top: 47%; transform: translateY(-50%); width: 205px; } .framer-EZ43i .framer-1qofh4b { aspect-ratio: 0.5781057810578106 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 355px); left: 41px; right: unset; top: 46px; width: 205px; } .framer-EZ43i .framer-expahp { aspect-ratio: 0.578 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 424px); right: 276px; } .framer-EZ43i .framer-cleqzp { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-EZ43i .framer-i5ycux { bottom: unset; height: 706px; left: calc(50.00000000000002% - 100% / 2); order: 1; right: unset; z-index: 0; } .framer-EZ43i .framer-1hj3ayq { gap: 37px; left: unset; order: 0; position: relative; right: unset; top: unset; width: 100%; z-index: 1; } .framer-EZ43i .framer-5o4u2a { width: 100%; } .framer-EZ43i .framer-1qd9uxs { padding: 0px; } .framer-EZ43i .framer-a0dtxo { bottom: 0px; height: unset; left: -378px; right: 0px; top: 0px; width: unset; } .framer-EZ43i .framer-17v7nc2 { padding: 50px 40px 40px 40px; } .framer-EZ43i .framer-1ydezlk { order: 0; overflow: visible; } .framer-EZ43i .framer-10qdui9, .framer-EZ43i .framer-grm07k { flex: 1 0 0px; width: 1px; } .framer-EZ43i .framer-1cu5rjl { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-EZ43i .framer-1mqzkuh, .framer-EZ43i .framer-2eg1ic { order: 1; } .framer-EZ43i .framer-no06o2 { order: 0; }}\",\"@media (max-width: 809px) { .framer-EZ43i.framer-72rtr7 { width: 390px; } .framer-EZ43i .framer-13y4adl-container { left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; } .framer-EZ43i .framer-q2h918 { padding: 0px 16px 48px 16px; } .framer-EZ43i .framer-1xz46bj { padding: 120px 0px 40px 0px; } .framer-EZ43i .framer-l16o8w { padding: 33px 0px 33px 0px; } .framer-EZ43i .framer-1t2bs8f { white-space: pre; width: auto; } .framer-EZ43i .framer-zwtltx { align-self: stretch; width: auto; } .framer-EZ43i .framer-1mklgbn { height: var(--framer-aspect-ratio-supported, 217px); } .framer-EZ43i .framer-19d12qx { height: var(--framer-aspect-ratio-supported, 216px); } .framer-EZ43i .framer-eekbpl { padding: 19px 20px 24px 20px; width: 100%; } .framer-EZ43i .framer-g10ktl { left: 118px; right: unset; } .framer-EZ43i .framer-13b2l5o { bottom: -4px; left: unset; right: -56px; top: -76px; width: 116px; } .framer-EZ43i .framer-nja9in { height: 114px; left: -4px; right: -4px; top: calc(50.00000000000002% - 114px / 2); width: unset; } .framer-EZ43i .framer-g6oacc { align-content: center; align-items: center; bottom: -9px; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; left: unset; padding: 4px 8px 8px 8px; right: -36px; width: min-content; } .framer-EZ43i .framer-i28zc5 { left: unset; position: relative; top: unset; } .framer-EZ43i .framer-euc0a9, .framer-EZ43i .framer-5o4u2a, .framer-EZ43i .framer-lrh2tw, .framer-EZ43i .framer-1lvziz3, .framer-EZ43i .framer-xrn40x, .framer-EZ43i .framer-1vtobkw, .framer-EZ43i .framer-euvt92-container, .framer-EZ43i .framer-1vg683j, .framer-EZ43i .framer-fhkw9t { width: 100%; } .framer-EZ43i .framer-13wy65z { padding: 12px 40px 12px 40px; } .framer-EZ43i .framer-88kj1l { padding: 46px 0px 0px 0px; } .framer-EZ43i .framer-lxe3tb { height: auto; width: 250px; } .framer-EZ43i .framer-qzpiyr { flex-direction: column; } .framer-EZ43i .framer-cleqzp { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-EZ43i .framer-1hj3ayq { gap: 37px; height: min-content; left: unset; order: 0; padding: 0px 16px 0px 16px; position: relative; right: unset; top: unset; width: 100%; z-index: 1; } .framer-EZ43i .framer-1qd9uxs { flex-direction: column; gap: 32px; padding: 0px; } .framer-EZ43i .framer-zlj7tt { padding: 66px 16px 42px 16px; } .framer-EZ43i .framer-9hgfwf { flex-direction: column; width: 100%; } .framer-EZ43i .framer-1fbqrt1 { padding: 0px 16px 40px 16px; } .framer-EZ43i .framer-u8g657 { flex: 1 0 0px; width: 1px; } .framer-EZ43i .framer-1aq5b45 { bottom: 0px; left: unset; right: 0px; top: unset; width: 73%; } .framer-EZ43i .framer-j7jnrj { bottom: 14px; left: 50%; top: unset; transform: translateX(-50%); width: 301px; } .framer-EZ43i .framer-xp7tms { bottom: 0px; left: calc(46.46017699115046% - 317px / 2); top: unset; width: 317px; } .framer-EZ43i .framer-15ivdni { bottom: 158px; left: 240px; top: unset; width: 278px; } .framer-EZ43i .framer-179lop0, .framer-EZ43i .framer-1cu5rjl { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-EZ43i .framer-vvxnfy { left: calc(50.22156573116694% - 351px / 2); width: 351px; } .framer-EZ43i .framer-127ba7t { bottom: 100px; left: calc(50.073855243722335% - 227.5px / 2); right: unset; width: 228px; } .framer-EZ43i .framer-1836qmk { bottom: 0px; height: unset; right: 0px; width: unset; } .framer-EZ43i .framer-1fu54v0 { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 40px 16px 50px 16px; } .framer-EZ43i .framer-po32tb { gap: 50px; width: 100%; } .framer-EZ43i .framer-1af53bz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-EZ43i .framer-1c9blab { height: auto; left: unset; position: relative; top: unset; width: 100%; } .framer-EZ43i .framer-1c4fv1f { bottom: unset; height: 57px; left: 108px; right: unset; top: -8px; width: 120px; z-index: 1; } .framer-EZ43i .framer-194h8bq { height: 1px; width: 100%; } .framer-EZ43i .framer-a0dtxo { bottom: 0px; height: unset; left: -378px; right: 0px; top: 0px; width: unset; } .framer-EZ43i .framer-17v7nc2 { padding: 40px 16px 40px 16px; } .framer-EZ43i .framer-1ydezlk { flex-direction: column; order: 0; } .framer-EZ43i .framer-10qdui9 { height: min-content; order: 1; width: 100%; } .framer-EZ43i .framer-grm07k { height: min-content; order: 0; width: 100%; } .framer-EZ43i .framer-1mqzkuh, .framer-EZ43i .framer-13vfwsp { order: 1; } .framer-EZ43i .framer-2eg1ic { flex-direction: column; order: 1; } .framer-EZ43i .framer-62h5cy, .framer-EZ43i .framer-1dvl3x7 { flex: none; width: 100%; } .framer-EZ43i .framer-no06o2, .framer-EZ43i .framer-15ltbrg { order: 0; } .framer-EZ43i .framer-jyffkf { align-content: center; align-items: center; flex-direction: column; gap: 0px; height: min-content; justify-content: center; } .framer-EZ43i .framer-pxuh7j { flex-direction: column; gap: 40px; } .framer-EZ43i .framer-l44z21 { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-EZ43i .framer-14t090t { height: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9329\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ko5kIawyq\":{\"layout\":[\"fixed\",\"auto\"]},\"YmLpajpHy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"z7sNdrkxM\":{\"pattern\":\":z7sNdrkxM\",\"name\":\"section-1\"},\"S7oepyxeP\":{\"pattern\":\":S7oepyxeP\",\"name\":\"spacertrigger1\"},\"rpHdQrNCG\":{\"pattern\":\":rpHdQrNCG\",\"name\":\"section-1\"},\"RD8Tw1EIi\":{\"pattern\":\":RD8Tw1EIi\",\"name\":\"spacertrigger1\"},\"V9phtO82e\":{\"pattern\":\":V9phtO82e\",\"name\":\"section-1\"},\"DWoT6XfxY\":{\"pattern\":\":DWoT6XfxY\",\"name\":\"spacertrigger1\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-EZ43i\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9329,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"}]},...NavigationFonts,...CTAButtonFonts,...CTAWhiteFonts,...FooterFonts,...IntercomFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ko5kIawyq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YmLpajpHy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9329\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"z7sNdrkxM\\\":{\\\"pattern\\\":\\\":z7sNdrkxM\\\",\\\"name\\\":\\\"section-1\\\"},\\\"S7oepyxeP\\\":{\\\"pattern\\\":\\\":S7oepyxeP\\\",\\\"name\\\":\\\"spacertrigger1\\\"},\\\"rpHdQrNCG\\\":{\\\"pattern\\\":\\\":rpHdQrNCG\\\",\\\"name\\\":\\\"section-1\\\"},\\\"RD8Tw1EIi\\\":{\\\"pattern\\\":\\\":RD8Tw1EIi\\\",\\\"name\\\":\\\"spacertrigger1\\\"},\\\"V9phtO82e\\\":{\\\"pattern\\\":\\\":V9phtO82e\\\",\\\"name\\\":\\\"section-1\\\"},\\\"DWoT6XfxY\\\":{\\\"pattern\\\":\\\":DWoT6XfxY\\\",\\\"name\\\":\\\"spacertrigger1\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["_extends", "target", "i", "source", "key", "_objectWithoutPropertiesLoose", "excluded", "sourceKeys", "log", "level", "message", "packageName", "isEmptyObject", "obj", "isSSR", "window", "removeUndefined", "IntercomAPI", "method", "_len", "args", "_key", "NO_INTERCOM_PROVIDER_MESSAGE", "IntercomContext", "z", "initialize", "appId", "timeout", "w", "ic", "d", "l", "s", "x", "mapMessengerAttributesToRawMessengerAttributes", "attributes", "mapDataAttributesCompanyToRawDataAttributesCompany", "mapDataAttributesAvatarToRawDataAttributesAvatar", "mapDataAttributesToRawDataAttributes", "_attributes$companies", "mapIntercomPropsToRawIntercomProps", "props", "IntercomProvider", "_ref", "_ref$autoBoot", "autoBoot", "autoBootProps", "children", "onHide", "onShow", "onUnreadCountChange", "_ref$shouldInitialize", "shouldInitialize", "apiBase", "initializeDelay", "rest", "isBooted", "pe", "isInitialized", "boot", "te", "metaData", "ensureIntercom", "functionName", "callback", "shutdown", "hardShutdown", "refresh", "lastRequestedAt", "update", "rawProps", "hide", "show", "showMessages", "showNewMessages", "getVisitorId", "startTour", "tourId", "trackEvent", "event", "providerValue", "se", "content", "B", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "Intercom", "appId", "style", "props", "RenderTarget", "u", "motion", "neutralStateStyle", "p", "stateTitleStyle", "stateParagraphStyle", "IntercomProvider", "addPropertyControls", "ControlType", "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", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerLjihXTBDJ", "withCSS", "LjihXTBDJ_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "signUp", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "YfV2_2xfU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "RichText2", "css", "FramertjfhZDqG1", "withCSS", "tjfhZDqG1_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "eZPAcaH5z_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "CTAButtonFonts", "tjfhZDqG1_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "CTAWhiteFonts", "LjihXTBDJ_default", "FooterFonts", "nC2OaLLUj_default", "IntercomFonts", "Intercom", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "animation7", "transformTemplate2", "transformTemplate3", "animation8", "transition6", "animation9", "animation10", "transition7", "animation11", "animation12", "transition8", "animation13", "animation14", "animation15", "animation16", "transition9", "animation17", "animation18", "animation19", "animation20", "animation21", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "ref2", "elementId1", "elementId2", "ref3", "ref4", "elementId3", "elementId4", "ref5", "ref6", "elementId5", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "SVG", "x", "getLoadingLazyAtYPosition", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
