{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://cdn.skypack.dev/-/@typeform/embed@v1.32.0-uXop976GWPfuIsYTJLOe/dist=es2019,mode=imports/optimized/@typeform/embed.js", "ssg:https://framer.com/m/framer/integrations-styles.js@0.2.0", "ssg:https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js", "ssg:https://framerusercontent.com/modules/wQjbveU6wiwI4CThlEww/Vsy9Hcsrm2ZUidZeQbGR/kf83_TXtq.js", "ssg:https://framerusercontent.com/modules/wVWPFGDYIwUAKps88CgU/V3p0DYFfyNwuM6qqhkT7/BBTcXnPdl.js", "ssg:https://framerusercontent.com/modules/iN51Ahlv3wefLO6zYv6A/YW73zWQ13u627hpDm8es/cQZGrYDYv.js", "ssg:https://framerusercontent.com/modules/6pZk7neTwcAPkqIFgMlr/cot1jOB8gXbsxXyhfxKE/i92KiItYr.js", "ssg:https://framerusercontent.com/modules/ceRAnb9NAYXW1S5KkYTj/HC39BO6ZPjcoOWF9dGlP/IXqppH7zP.js", "ssg:https://framerusercontent.com/modules/2E19guVUXSsM8xCxApUR/1F5DQMj207BOKq91lH7k/ka7lqP9Eq.js", "ssg:https://framerusercontent.com/modules/qs5xEV0U42kVzmXLxO8B/c6iWTojk97XNxdeg1upv/ad0oAKqkr.js", "ssg:https://framerusercontent.com/modules/dRPJDMRjkENtCHCdQiTT/ITaIInUvCRYX65ev7Ney/yybUyyz_g.js", "ssg:https://framerusercontent.com/modules/hOa3L4i1fuN5fJhVOJe7/dv80yFgUaLpdp8Mbj7pD/sJMGTD9OA.js", "ssg:https://framerusercontent.com/modules/54btDJGXOzKiDw5YwXbG/oqJCpBP8Yh6i8Zgxeh5n/Pu1fEhfuY.js", "ssg:https://framerusercontent.com/modules/A0E9dKHWf0dElUIDDjpN/aeo8kr2VI1i5nHcKupFr/donvzhrpH.js", "ssg:https://framerusercontent.com/modules/m85dxkxEeGAQ4jRl4pP9/K1tB2yScfiQE84lwNadB/Vyoia5Wdp.js", "ssg:https://framerusercontent.com/modules/zS72hHk22ejJchodh59d/3mnGNwy0RsetojgUq4s2/augiA20Il.js"],
  "sourcesContent": ["import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \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", "var commonjsGlobal = typeof globalThis !== \"undefined\" ? globalThis : typeof window !== \"undefined\" ? window : typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : {};\nfunction getDefaultExportFromCjs(x) {\n  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, \"default\") ? x[\"default\"] : x;\n}\nfunction createCommonjsModule(fn, basedir, module) {\n  return module = {\n    path: basedir,\n    exports: {},\n    require: function(path, base) {\n      return commonjsRequire(path, base === void 0 || base === null ? module.path : base);\n    }\n  }, fn(module, module.exports), module.exports;\n}\nfunction commonjsRequire() {\n  throw new Error(\"Dynamic requires are not currently supported by @rollup/plugin-commonjs\");\n}\nvar build = createCommonjsModule(function(module, exports) {\n  !function(e, t) {\n    module.exports = t();\n  }(commonjsGlobal, function() {\n    return function() {\n      var e = {27: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.FORM_BASE_URL = t2.POPUP_SIZE = t2.SLIDER_WIDTH = t2.SLIDER_POSITION = t2.SIDETAB_ATTRIBUTE = t2.WIDGET_ATTRIBUTE = t2.SLIDER_ATTRIBUTE = t2.POPUP_ATTRIBUTE = t2.POPOVER_ATTRIBUTE = void 0, t2.POPOVER_ATTRIBUTE = \"data-tf-popover\", t2.POPUP_ATTRIBUTE = \"data-tf-popup\", t2.SLIDER_ATTRIBUTE = \"data-tf-slider\", t2.WIDGET_ATTRIBUTE = \"data-tf-widget\", t2.SIDETAB_ATTRIBUTE = \"data-tf-sidetab\", t2.SLIDER_POSITION = \"right\", t2.SLIDER_WIDTH = 800, t2.POPUP_SIZE = 100, t2.FORM_BASE_URL = \"https://form.typeform.com\";\n      }, 528: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createPopover = void 0;\n        var r = n(747), i = n(320), a = function(e3, t3) {\n          var n2 = e3.parentNode;\n          n2 && (n2.removeChild(e3), n2.appendChild(t3));\n        }, c = function(e3, t3) {\n          e3 === void 0 && (e3 = \"div\"), t3 === void 0 && (t3 = \"tf-v1-popover-button-icon\");\n          var n2 = document.createElement(e3);\n          return n2.className = t3 + \" tf-v1-close-icon\", n2.innerHTML = \"&times;\", n2.dataset.testid = t3, n2;\n        }, u = {buttonColor: \"#3a7685\"};\n        t2.createPopover = function(e3, t3) {\n          t3 === void 0 && (t3 = {});\n          var n2, s, d = o(o({}, u), t3), l = r.createIframe(e3, \"popover\", d), f = l.iframe, p = l.embedId, v = l.refresh, m = function(e4, t4) {\n            var n3 = document.createElement(\"div\");\n            return n3.className = \"tf-v1-popover\", n3.dataset.testid = \"tf-v1-popover\", r.setElementSize(n3, {width: e4, height: t4});\n          }(d.width, d.height), h = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-popover-wrapper\", e4.dataset.testid = \"tf-v1-popover-wrapper\", e4;\n          }(), b = function(e4, t4) {\n            var n3 = r.getTextColor(t4), o2 = document.createElement(\"div\");\n            o2.className = \"tf-v1-popover-button-icon\";\n            var i2 = '<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n    <path d=\"M21 0H0V9L10.5743 24V16.5H21C22.6567 16.5 24 15.1567 24 13.5V3C24 1.34325 22.6567 0 21 0ZM7.5\\n    9.75C6.672 9.75 6 9.07875 6 8.25C6 7.42125 6.672 6.75 7.5 6.75C8.328 6.75 9 7.42125 9 8.25C9 9.07875 8.328 9.75\\n    7.5 9.75ZM12.75 9.75C11.922 9.75 11.25 9.07875 11.25 8.25C11.25 7.42125 11.922 6.75 12.75 6.75C13.578 6.75 14.25\\n    7.42125 14.25 8.25C14.25 9.07875 13.578 9.75 12.75 9.75ZM18 9.75C17.172 9.75 16.5 9.07875 16.5 8.25C16.5 7.42125\\n    17.172 6.75 18 6.75C18.828 6.75 19.5 7.42125 19.5 8.25C19.5 9.07875 18.828 9.75 18 9.75Z\" fill=\"' + n3 + '\"></path>\\n  </svg>', a2 = e4 == null ? void 0 : e4.startsWith(\"http\");\n            return o2.innerHTML = a2 ? \"<img alt='popover trigger icon button' src='\" + e4 + \"'/>\" : e4 != null ? e4 : i2, o2.dataset.testid = \"default-icon\", o2;\n          }(d.customIcon, d.buttonColor || u.buttonColor), y = function() {\n            var e4 = document.createElement(\"div\");\n            e4.className = \"tf-v1-spinner\";\n            var t4 = document.createElement(\"div\");\n            return t4.className = \"tf-v1-popover-button-icon\", t4.dataset.testid = \"spinner-icon\", t4.append(e4), t4;\n          }(), g = c(), O = c(\"a\", \"tf-v1-popover-close\"), _ = function(e4) {\n            var t4 = r.getTextColor(e4), n3 = document.createElement(\"button\");\n            return n3.className = \"tf-v1-popover-button\", n3.dataset.testid = \"tf-v1-popover-button\", n3.style.backgroundColor = e4, n3.style.color = t4, n3;\n          }(d.buttonColor || u.buttonColor);\n          (d.container || document.body).append(m), h.append(f), m.append(_), m.append(O), _.append(b);\n          var w = function() {\n            n2 && n2.parentNode && (n2.classList.add(\"closing\"), setTimeout(function() {\n              r.unmountElement(n2);\n            }, 250));\n          };\n          d.tooltip && d.tooltip.length > 0 && (n2 = function(e4, t4) {\n            var n3 = document.createElement(\"span\");\n            n3.className = \"tf-v1-popover-tooltip-close\", n3.dataset.testid = \"tf-v1-popover-tooltip-close\", n3.innerHTML = \"&times;\", n3.onclick = t4;\n            var o2 = document.createElement(\"div\");\n            o2.className = \"tf-v1-popover-tooltip-text\", o2.innerHTML = e4;\n            var r2 = document.createElement(\"div\");\n            return r2.className = \"tf-v1-popover-tooltip\", r2.dataset.testid = \"tf-v1-popover-tooltip\", r2.appendChild(o2), r2.appendChild(n3), r2;\n          }(d.tooltip, w), m.append(n2)), d.notificationDays && (d.enableSandbox || i.canBuildNotificationDot(e3)) && (s = i.buildNotificationDot(), _.append(s)), f.onload = function() {\n            m.classList.add(\"open\"), h.style.opacity = \"1\", O.style.opacity = \"1\", a(y, g), r.addCustomKeyboardListener(P);\n          };\n          var E = function() {\n            r.isOpen(h) || (w(), s && (s.classList.add(\"closing\"), d.notificationDays && !d.enableSandbox && i.saveNotificationDotHideUntilTime(e3, d.notificationDays), setTimeout(function() {\n              r.unmountElement(s);\n            }, 250)), setTimeout(function() {\n              r.isInPage(h) ? (h.style.opacity = \"0\", O.style.opacity = \"0\", h.style.display = \"flex\", setTimeout(function() {\n                m.classList.add(\"open\"), h.style.opacity = \"1\", O.style.opacity = \"1\";\n              }), a(b, g)) : (m.append(h), a(b, y), h.style.opacity = \"0\", O.style.opacity = \"0\");\n            }));\n          }, P = function() {\n            var e4;\n            r.isOpen(m) && ((e4 = t3.onClose) === null || e4 === void 0 || e4.call(t3), setTimeout(function() {\n              d.keepSession ? h.style.display = \"none\" : r.unmountElement(h), m.classList.remove(\"open\"), a(g, b);\n            }, 250));\n          };\n          r.setAutoClose(p, d.autoClose, P);\n          var C = function() {\n            r.isOpen(h) ? P() : E();\n          };\n          return _.onclick = C, O.onclick = P, d.open && !r.isOpen(h) && r.handleCustomOpen(E, d.open, d.openValue), {open: E, close: P, toggle: C, refresh: v, unmount: function() {\n            r.unmountElement(m);\n          }};\n        };\n      }, 797: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(528), t2), r(n(100), t2);\n      }, 320: function(e2, t2) {\n        var n = this && this.__assign || function() {\n          return (n = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.buildNotificationDot = t2.canBuildNotificationDot = t2.saveNotificationDotHideUntilTime = void 0;\n        var o = \"tfNotificationData\", r = function() {\n          var e3 = localStorage.getItem(o);\n          return e3 ? JSON.parse(e3) : {};\n        }, i = function(e3) {\n          e3 && localStorage.setItem(o, JSON.stringify(e3));\n        };\n        t2.saveNotificationDotHideUntilTime = function(e3, t3) {\n          var o2, a = new Date();\n          a.setDate(a.getDate() + t3), i(n(n({}, r()), ((o2 = {})[e3] = {hideUntilTime: a.getTime()}, o2)));\n        }, t2.canBuildNotificationDot = function(e3) {\n          var t3 = function(e4) {\n            var t4;\n            return ((t4 = r()[e4]) === null || t4 === void 0 ? void 0 : t4.hideUntilTime) || 0;\n          }(e3);\n          return new Date().getTime() > t3 && (t3 && function(e4) {\n            var t4 = r();\n            delete t4[e4], i(t4);\n          }(e3), true);\n        }, t2.buildNotificationDot = function() {\n          var e3 = document.createElement(\"span\");\n          return e3.className = \"tf-v1-popover-unread-dot\", e3.dataset.testid = \"tf-v1-popover-unread-dot\", e3;\n        };\n      }, 100: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 630: function(e2, t2, n) {\n        var o = this && this.__rest || function(e3, t3) {\n          var n2 = {};\n          for (var o2 in e3)\n            Object.prototype.hasOwnProperty.call(e3, o2) && t3.indexOf(o2) < 0 && (n2[o2] = e3[o2]);\n          if (e3 != null && typeof Object.getOwnPropertySymbols == \"function\") {\n            var r2 = 0;\n            for (o2 = Object.getOwnPropertySymbols(e3); r2 < o2.length; r2++)\n              t3.indexOf(o2[r2]) < 0 && Object.prototype.propertyIsEnumerable.call(e3, o2[r2]) && (n2[o2[r2]] = e3[o2[r2]]);\n          }\n          return n2;\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createPopup = void 0;\n        var r = n(747), i = n(27), a = n(747);\n        t2.createPopup = function(e3, t3) {\n          if (t3 === void 0 && (t3 = {}), !r.hasDom())\n            return {open: function() {\n            }, close: function() {\n            }, toggle: function() {\n            }, refresh: function() {\n            }, unmount: function() {\n            }};\n          var n2 = t3.width, c = t3.height, u = t3.size, s = u === void 0 ? i.POPUP_SIZE : u, d = t3.onClose, l = o(t3, [\"width\", \"height\", \"size\", \"onClose\"]), f = r.createIframe(e3, \"popup\", l), p = f.iframe, v = f.embedId, m = f.refresh, h = document.body.style.overflow, b = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-popup\", e4.style.opacity = \"0\", e4;\n          }(), y = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-spinner\", e4;\n          }(), g = function(e4, t4, n3) {\n            var o2 = document.createElement(\"div\");\n            return o2.className = \"tf-v1-iframe-wrapper\", o2.style.opacity = \"0\", r.isDefined(e4) && r.isDefined(t4) ? r.setElementSize(o2, {width: e4, height: t4}) : (o2.style.width = \"calc(\" + n3 + \"% - 80px)\", o2.style.height = \"calc(\" + n3 + \"% - 80px)\", o2);\n          }(n2, c, s);\n          g.append(p), b.append(y), b.append(g);\n          var O = l.container || document.body;\n          p.onload = function() {\n            g.style.opacity = \"1\", setTimeout(function() {\n              y.style.display = \"none\";\n            }, 250), r.addCustomKeyboardListener(w);\n          };\n          var _ = function() {\n            a.isOpen(b) || (a.isInPage(b) ? b.style.display = \"flex\" : (y.style.display = \"block\", O.append(b)), document.body.style.overflow = \"hidden\", setTimeout(function() {\n              b.style.opacity = \"1\";\n            }));\n          }, w = function() {\n            a.isOpen(b) && (d == null || d(), b.style.opacity = \"0\", document.body.style.overflow = h, setTimeout(function() {\n              l.keepSession ? b.style.display = \"none\" : E();\n            }, 250));\n          };\n          g.append(function(e4) {\n            var t4 = document.createElement(\"a\");\n            return t4.className = \"tf-v1-close tf-v1-close-icon\", t4.innerHTML = \"&times;\", t4.onclick = e4, t4;\n          }(w)), r.setAutoClose(v, l.autoClose, w);\n          var E = function() {\n            r.unmountElement(b);\n          };\n          return l.open && !a.isOpen(b) && r.handleCustomOpen(_, l.open, l.openValue), {open: _, close: w, toggle: function() {\n            a.isOpen(b) ? w() : _();\n          }, refresh: m, unmount: E};\n        };\n      }, 970: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(630), t2), r(n(394), t2);\n      }, 394: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 382: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createSidetab = void 0;\n        var r = n(747), i = {buttonColor: \"#3a7685\", buttonText: \"Launch me\"}, a = function(e3, t3) {\n          e3 === void 0 && (e3 = \"div\"), t3 === void 0 && (t3 = \"tf-v1-sidetab-button-icon\");\n          var n2 = document.createElement(e3);\n          return n2.className = t3 + \" tf-v1-close-icon\", n2.innerHTML = \"&times;\", n2.dataset.testid = t3, n2;\n        }, c = function(e3, t3) {\n          var n2 = e3.parentNode;\n          n2 && (n2.removeChild(e3), n2.appendChild(t3));\n        };\n        t2.createSidetab = function(e3, t3) {\n          t3 === void 0 && (t3 = {});\n          var n2, u, s, d = o(o({}, i), t3), l = r.createIframe(e3, \"side-tab\", d), f = l.iframe, p = l.embedId, v = l.refresh, m = (n2 = d.width, u = d.height, (s = document.createElement(\"div\")).className = \"tf-v1-sidetab\", s.dataset.testid = \"tf-v1-sidetab\", r.setElementSize(s, {width: n2, height: u})), h = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-sidetab-wrapper\", e4.dataset.testid = \"tf-v1-sidetab-wrapper\", e4;\n          }(), b = function() {\n            var e4 = document.createElement(\"div\");\n            e4.className = \"tf-v1-spinner\";\n            var t4 = document.createElement(\"div\");\n            return t4.className = \"tf-v1-sidetab-button-icon\", t4.dataset.testid = \"spinner-icon\", t4.append(e4), t4;\n          }(), y = function(e4) {\n            var t4 = r.getTextColor(e4), n3 = document.createElement(\"button\");\n            return n3.className = \"tf-v1-sidetab-button\", n3.style.backgroundColor = e4, n3.style.color = t4, n3;\n          }(d.buttonColor || i.buttonColor), g = function(e4) {\n            var t4 = document.createElement(\"span\");\n            return t4.className = \"tf-v1-sidetab-button-text\", t4.innerHTML = e4, t4;\n          }(d.buttonText || i.buttonText), O = function(e4, t4) {\n            var n3 = r.getTextColor(t4), o2 = document.createElement(\"div\");\n            o2.className = \"tf-v1-sidetab-button-icon\";\n            var i2 = '<svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n    <path d=\"M21 0H0V9L10.5743 24V16.5H21C22.6567 16.5 24 15.1567 24 13.5V3C24 1.34325 22.6567 0 21 0ZM7.5 9.75C6.672 9.75 6 9.07875 6 8.25C6 7.42125 6.672 6.75 7.5 6.75C8.328 6.75 9 7.42125 9 8.25C9 9.07875 8.328 9.75 7.5 9.75ZM12.75 9.75C11.922 9.75 11.25 9.07875 11.25 8.25C11.25 7.42125 11.922 6.75 12.75 6.75C13.578 6.75 14.25 7.42125 14.25 8.25C14.25 9.07875 13.578 9.75 12.75 9.75ZM18 9.75C17.172 9.75 16.5 9.07875 16.5 8.25C16.5 7.42125 17.172 6.75 18 6.75C18.828 6.75 19.5 7.42125 19.5 8.25C19.5 9.07875 18.828 9.75 18 9.75Z\" fill=\"' + n3 + '\"></path>\\n  </svg>', a2 = e4 == null ? void 0 : e4.startsWith(\"http\");\n            return o2.innerHTML = a2 ? \"<img alt='popover trigger icon button' src='\" + e4 + \"'/>\" : e4 != null ? e4 : i2, o2.dataset.testid = \"default-icon\", o2;\n          }(d.customIcon, d.buttonColor || i.buttonColor), _ = a(), w = a(\"a\", \"tf-v1-sidetab-close\");\n          (d.container || document.body).append(m), h.append(f), m.append(y), m.append(w), y.append(O), y.append(g), setTimeout(function() {\n            m.classList.add(\"ready\");\n          }, 250), f.onload = function() {\n            m.classList.add(\"open\"), c(b, _), r.addCustomKeyboardListener(P);\n          };\n          var E = function() {\n            r.isOpen(h) || (r.isInPage(h) ? (h.style.display = \"flex\", m.classList.add(\"open\"), c(O, _)) : (m.append(h), c(O, b)));\n          }, P = function() {\n            var e4;\n            r.isOpen(h) && ((e4 = d.onClose) === null || e4 === void 0 || e4.call(d), m.classList.remove(\"open\"), setTimeout(function() {\n              d.keepSession ? h.style.display = \"none\" : r.unmountElement(h), c(_, O);\n            }, 250));\n          };\n          r.setAutoClose(p, d.autoClose, P);\n          var C = function() {\n            r.isOpen(h) ? P() : E();\n          };\n          return y.onclick = C, w.onclick = P, d.open && !r.isOpen(h) && r.handleCustomOpen(E, d.open, d.openValue), {open: E, close: P, toggle: C, refresh: v, unmount: function() {\n            r.unmountElement(m);\n          }};\n        };\n      }, 434: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(382), t2), r(n(668), t2);\n      }, 668: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 603: function(e2, t2, n) {\n        var o = this && this.__rest || function(e3, t3) {\n          var n2 = {};\n          for (var o2 in e3)\n            Object.prototype.hasOwnProperty.call(e3, o2) && t3.indexOf(o2) < 0 && (n2[o2] = e3[o2]);\n          if (e3 != null && typeof Object.getOwnPropertySymbols == \"function\") {\n            var r2 = 0;\n            for (o2 = Object.getOwnPropertySymbols(e3); r2 < o2.length; r2++)\n              t3.indexOf(o2[r2]) < 0 && Object.prototype.propertyIsEnumerable.call(e3, o2[r2]) && (n2[o2[r2]] = e3[o2[r2]]);\n          }\n          return n2;\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createSlider = void 0;\n        var r = n(747), i = n(27);\n        t2.createSlider = function(e3, t3) {\n          if (t3 === void 0 && (t3 = {}), !r.hasDom())\n            return {open: function() {\n            }, close: function() {\n            }, toggle: function() {\n            }, refresh: function() {\n            }, unmount: function() {\n            }};\n          var n2 = t3.position, a = n2 === void 0 ? i.SLIDER_POSITION : n2, c = t3.width, u = c === void 0 ? i.SLIDER_WIDTH : c, s = t3.onClose, d = o(t3, [\"position\", \"width\", \"onClose\"]), l = r.createIframe(e3, \"slider\", d), f = l.iframe, p = l.embedId, v = l.refresh, m = document.body.style.overflow, h = function(e4) {\n            var t4 = document.createElement(\"div\");\n            return t4.className = \"tf-v1-slider \" + e4, t4.style.opacity = \"0\", t4;\n          }(a), b = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-spinner\", e4;\n          }(), y = function(e4, t4) {\n            var n3 = document.createElement(\"div\");\n            return n3.className = \"tf-v1-iframe-wrapper\", n3.style[e4] = \"-100%\", r.setElementSize(n3, {width: t4});\n          }(a, u);\n          y.append(f), h.append(b), h.append(y);\n          var g = d.container || document.body;\n          f.onload = function() {\n            y.style[a] = \"0\", setTimeout(function() {\n              b.style.display = \"none\";\n            }, 500), r.addCustomKeyboardListener(_);\n          };\n          var O = function() {\n            r.isOpen(h) || (r.isInPage(h) ? (h.style.display = \"flex\", setTimeout(function() {\n              y.style[a] = \"0\";\n            })) : (g.append(h), b.style.display = \"block\"), document.body.style.overflow = \"hidden\", setTimeout(function() {\n              h.style.opacity = \"1\";\n            }));\n          }, _ = function() {\n            r.isOpen(h) && (s == null || s(), h.style.opacity = \"0\", y.style[a] = \"-100%\", document.body.style.overflow = m, setTimeout(function() {\n              d.keepSession ? h.style.display = \"none\" : w();\n            }, 500));\n          };\n          r.setAutoClose(p, d.autoClose, _);\n          var w = function() {\n            r.unmountElement(h);\n          };\n          return y.append(function(e4) {\n            var t4 = document.createElement(\"a\");\n            return t4.className = \"tf-v1-close tf-v1-close-icon\", t4.innerHTML = \"&times;\", t4.onclick = e4, t4;\n          }(_)), d.open && !r.isOpen(h) && r.handleCustomOpen(O, d.open, d.openValue), {open: O, close: _, toggle: function() {\n            r.isOpen(h) ? _() : O();\n          }, refresh: v, unmount: w};\n        };\n      }, 331: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(603), t2), r(n(162), t2);\n      }, 162: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 718: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createWidget = void 0;\n        var o = n(747), r = n(554), i = n(313);\n        t2.createWidget = function(e3, t3) {\n          if (!o.hasDom())\n            return {refresh: function() {\n            }, unmount: function() {\n            }};\n          var n2 = t3;\n          t3.inlineOnMobile || !t3.forceTouch && !o.isFullscreen() || (n2.enableFullscreen = true, n2.forceTouch = true);\n          var a = o.createIframe(e3, \"widget\", n2), c = a.embedId, u = a.iframe, s = a.refresh, d = i.buildWidget(u, t3.width, t3.height);\n          if (n2.autoResize) {\n            var l = typeof n2.autoResize == \"string\" ? n2.autoResize.split(\",\").map(function(e4) {\n              return parseInt(e4);\n            }) : [], f = l[0], p = l[1];\n            window.addEventListener(\"message\", r.getFormHeightChangedHandler(c, function(e4) {\n              var n3 = Math.max(e4.height + 20, f || 0);\n              p && (n3 = Math.min(n3, p)), t3.container.style.height = n3 + \"px\";\n            }));\n          }\n          var v, m = function() {\n            return t3.container.append(d);\n          };\n          if (t3.container.innerHTML = \"\", t3.lazy ? o.lazyInitialize(t3.container, m) : m(), n2.enableFullscreen) {\n            var h = t3.container;\n            window.addEventListener(\"message\", r.getWelcomeScreenHiddenHandler(c, h));\n            var b = ((v = document.createElement(\"a\")).className = \"tf-v1-widget-close tf-v1-close-icon\", v.innerHTML = \"&times;\", v);\n            b.onclick = function() {\n              var e4;\n              if ((e4 = t3.onClose) === null || e4 === void 0 || e4.call(t3), h.classList.remove(\"tf-v1-widget-fullscreen\"), t3.keepSession) {\n                var n3 = document.createElement(\"div\");\n                n3.className = \"tf-v1-widget-iframe-overlay\", n3.onclick = function() {\n                  h.classList.add(\"tf-v1-widget-fullscreen\"), o.unmountElement(n3);\n                }, d.append(n3);\n              } else\n                t3.container.innerHTML = \"\", m(), h.append(b);\n            }, h.append(b);\n          }\n          return {refresh: s, unmount: function() {\n            return o.unmountElement(d);\n          }};\n        };\n      }, 419: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.buildWidget = void 0;\n        var o = n(747);\n        t2.buildWidget = function(e3, t3, n2) {\n          var r = document.createElement(\"div\");\n          return r.className = \"tf-v1-widget\", r.append(e3), o.setElementSize(r, {width: t3, height: n2});\n        };\n      }, 313: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(419), t2);\n      }, 321: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(718), t2), r(n(58), t2);\n      }, 58: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 920: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(797), t2), r(n(970), t2), r(n(331), t2), r(n(321), t2), r(n(434), t2);\n      }, 626: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.buildIframeSrc = void 0;\n        var r = n(27), i = n(527), a = n(346), c = n(698), u = {widget: \"embed-widget\", popup: \"popup-blank\", slider: \"popup-drawer\", popover: \"popup-popover\", \"side-tab\": \"popup-side-panel\"};\n        t2.buildIframeSrc = function(e3) {\n          var t3 = e3.formId, n2 = e3.type, s = e3.embedId, d = e3.options, l = function(e4, t4, n3) {\n            var r2 = n3.transitiveSearchParams, i2 = n3.source, a2 = n3.medium, s2 = n3.mediumVersion, d2 = n3.hideFooter, l2 = n3.hideHeaders, f2 = n3.opacity, p2 = n3.disableTracking, v2 = n3.enableSandbox, m = n3.disableAutoFocus, h = n3.shareGaInstance, b = n3.forceTouch, y = n3.enableFullscreen, g = n3.tracking, O = n3.redirectTarget, _ = c.getTransitiveSearchParams(r2);\n            return o(o(o({}, {\"typeform-embed-id\": t4, \"typeform-embed\": u[e4], \"typeform-source\": i2, \"typeform-medium\": a2, \"typeform-medium-version\": s2, \"embed-hide-footer\": d2 ? \"true\" : void 0, \"embed-hide-headers\": l2 ? \"true\" : void 0, \"embed-opacity\": f2, \"disable-tracking\": p2 || v2 ? \"true\" : void 0, \"disable-auto-focus\": m ? \"true\" : void 0, \"__dangerous-disable-submissions\": v2 ? \"true\" : void 0, \"share-ga-instance\": h ? \"true\" : void 0, \"force-touch\": b ? \"true\" : void 0, \"add-placeholder-ws\": e4 === \"widget\" && y ? \"true\" : void 0, \"typeform-embed-redirect-target\": O}), _), g);\n          }(n2, s, function(e4) {\n            return o(o({}, {source: (t4 = window === null || window === void 0 ? void 0 : window.location) === null || t4 === void 0 ? void 0 : t4.hostname.replace(/^www\\./, \"\"), medium: \"embed-sdk\", mediumVersion: \"next\"}), i.removeUndefinedKeys(e4));\n            var t4;\n          }(d)), f = function(e4, t4) {\n            t4 === void 0 && (t4 = false);\n            var n3 = t4 ? \"c\" : \"to\";\n            return new URL(e4.startsWith(\"http://\") || e4.startsWith(\"https://\") ? e4 : r.FORM_BASE_URL + \"/\" + n3 + \"/\" + e4);\n          }(t3, d.chat);\n          if (Object.entries(l).filter(function(e4) {\n            var t4 = e4[1];\n            return a.isDefined(t4);\n          }).forEach(function(e4) {\n            var t4 = e4[0], n3 = e4[1];\n            f.searchParams.set(t4, n3);\n          }), d.hidden) {\n            var p = new URL(r.FORM_BASE_URL);\n            Object.entries(d.hidden).filter(function(e4) {\n              var t4 = e4[1];\n              return a.isDefined(t4);\n            }).forEach(function(e4) {\n              var t4 = e4[0], n3 = e4[1];\n              p.searchParams.set(t4, n3);\n            });\n            var v = p.searchParams.toString();\n            v && (f.hash = v);\n          }\n          return f.href;\n        };\n      }, 972: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.handleCustomOpen = void 0, t2.handleCustomOpen = function(e3, t3, n) {\n          switch (t3) {\n            case \"load\":\n              e3();\n              break;\n            case \"exit\":\n              n && function(e4, t4) {\n                var n2 = 0, o = function(r) {\n                  r.clientY < e4 && r.clientY < n2 ? (document.removeEventListener(\"mousemove\", o), t4()) : n2 = r.clientY;\n                };\n                document.addEventListener(\"mousemove\", o);\n              }(n, e3);\n              break;\n            case \"time\":\n              setTimeout(function() {\n                e3();\n              }, n);\n              break;\n            case \"scroll\":\n              n && function(e4, t4) {\n                var n2 = function() {\n                  var o = window.pageYOffset || document.documentElement.scrollTop, r = document.documentElement.clientTop || 0, i = document.documentElement.scrollHeight, a = o - r, c = a / i * 100, u = a + window.innerHeight >= i;\n                  (c >= e4 || u) && (t4(), document.removeEventListener(\"scroll\", n2));\n                };\n                document.addEventListener(\"scroll\", n2);\n              }(n, e3);\n          }\n        };\n      }, 553: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createIframe = void 0;\n        var o = n(626), r = n(747), i = n(866), a = n(554), c = n(256), u = n(144), s = n(511);\n        t2.createIframe = function(e3, t3, n2) {\n          var d = i.generateEmbedId(), l = n2.iframeProps, f = l === void 0 ? {} : l, p = n2.onReady, v = n2.onQuestionChanged, m = n2.onHeightChanged, h = n2.onSubmit, b = n2.onEndingButtonClick, y = n2.shareGaInstance, g = o.buildIframeSrc({formId: e3, embedId: d, type: t3, options: n2}), O = document.createElement(\"iframe\");\n          return O.src = g, O.dataset.testid = \"iframe\", O.style.border = \"0px\", O.allow = \"microphone; camera\", Object.keys(f).forEach(function(e4) {\n            O.setAttribute(e4, f[e4]);\n          }), O.addEventListener(\"load\", c.triggerIframeRedraw, {once: true}), window.addEventListener(\"message\", a.getFormReadyHandler(d, p)), window.addEventListener(\"message\", a.getFormQuestionChangedHandler(d, v)), window.addEventListener(\"message\", a.getFormHeightChangedHandler(d, m)), window.addEventListener(\"message\", a.getFormSubmitHandler(d, h)), window.addEventListener(\"message\", a.getFormThemeHandler(d)), window.addEventListener(\"message\", a.getThankYouScreenButtonClickHandler(d, b)), t3 !== \"widget\" && window.addEventListener(\"message\", u.dispatchCustomKeyEventFromIframe), y && window.addEventListener(\"message\", a.getFormReadyHandler(d, function() {\n            r.setupGaInstance(O, d, y);\n          })), {iframe: O, embedId: d, refresh: function() {\n            return s.refreshIframe(O);\n          }};\n        };\n      }, 866: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.generateEmbedId = void 0, t2.generateEmbedId = function() {\n          var e3 = Math.random();\n          return String(e3).split(\".\")[1];\n        };\n      }, 554: function(e2, t2) {\n        var n = this && this.__rest || function(e3, t3) {\n          var n2 = {};\n          for (var o2 in e3)\n            Object.prototype.hasOwnProperty.call(e3, o2) && t3.indexOf(o2) < 0 && (n2[o2] = e3[o2]);\n          if (e3 != null && typeof Object.getOwnPropertySymbols == \"function\") {\n            var r = 0;\n            for (o2 = Object.getOwnPropertySymbols(e3); r < o2.length; r++)\n              t3.indexOf(o2[r]) < 0 && Object.prototype.propertyIsEnumerable.call(e3, o2[r]) && (n2[o2[r]] = e3[o2[r]]);\n          }\n          return n2;\n        };\n        function o(e3, t3, o2) {\n          return function(r) {\n            var i = r.data, a = i.type, c = i.embedId, u = n(i, [\"type\", \"embedId\"]);\n            a === e3 && c === t3 && (o2 == null || o2(u));\n          };\n        }\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.getThankYouScreenButtonClickHandler = t2.getFormThemeHandler = t2.getWelcomeScreenHiddenHandler = t2.getFormSubmitHandler = t2.getFormHeightChangedHandler = t2.getFormQuestionChangedHandler = t2.getFormReadyHandler = void 0, t2.getFormReadyHandler = function(e3, t3) {\n          return o(\"form-ready\", e3, t3);\n        }, t2.getFormQuestionChangedHandler = function(e3, t3) {\n          return o(\"form-screen-changed\", e3, t3);\n        }, t2.getFormHeightChangedHandler = function(e3, t3) {\n          return o(\"form-height-changed\", e3, t3);\n        }, t2.getFormSubmitHandler = function(e3, t3) {\n          return o(\"form-submit\", e3, t3);\n        }, t2.getWelcomeScreenHiddenHandler = function(e3, t3) {\n          return o(\"welcome-screen-hidden\", e3, function() {\n            t3.classList.add(\"tf-v1-widget-fullscreen\");\n          });\n        }, t2.getFormThemeHandler = function(e3) {\n          return o(\"form-theme\", e3, function(e4) {\n            var t3;\n            if (e4 == null ? void 0 : e4.theme) {\n              var n2 = document.querySelector(\".tf-v1-close-icon\");\n              n2 && (n2.style.color = (t3 = e4.theme) === null || t3 === void 0 ? void 0 : t3.color);\n            }\n          });\n        }, t2.getThankYouScreenButtonClickHandler = function(e3, t3) {\n          return o(\"thank-you-screen-button-click\", e3, t3);\n        };\n      }, 339: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(553), t2), r(n(144), t2);\n      }, 511: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.refreshIframe = void 0, t2.refreshIframe = function(e3) {\n          if (e3) {\n            var t3 = e3.src;\n            if (t3.includes(\"&refresh\")) {\n              var n = t3.split(\"&refresh#\");\n              e3.src = n.join(\"#\");\n            } else\n              (n = t3.split(\"#\"))[0] = n[0] + \"&refresh\", e3.src = n.join(\"#\");\n          }\n        };\n      }, 144: function(e2, t2) {\n        var n = this && this.__awaiter || function(e3, t3, n2, o2) {\n          return new (n2 || (n2 = Promise))(function(r2, i2) {\n            function a(e4) {\n              try {\n                u(o2.next(e4));\n              } catch (e5) {\n                i2(e5);\n              }\n            }\n            function c(e4) {\n              try {\n                u(o2.throw(e4));\n              } catch (e5) {\n                i2(e5);\n              }\n            }\n            function u(e4) {\n              var t4;\n              e4.done ? r2(e4.value) : (t4 = e4.value, t4 instanceof n2 ? t4 : new n2(function(e5) {\n                e5(t4);\n              })).then(a, c);\n            }\n            u((o2 = o2.apply(e3, t3 || [])).next());\n          });\n        }, o = this && this.__generator || function(e3, t3) {\n          var n2, o2, r2, i2, a = {label: 0, sent: function() {\n            if (1 & r2[0])\n              throw r2[1];\n            return r2[1];\n          }, trys: [], ops: []};\n          return i2 = {next: c(0), throw: c(1), return: c(2)}, typeof Symbol == \"function\" && (i2[Symbol.iterator] = function() {\n            return this;\n          }), i2;\n          function c(i3) {\n            return function(c2) {\n              return function(i4) {\n                if (n2)\n                  throw new TypeError(\"Generator is already executing.\");\n                for (; a; )\n                  try {\n                    if (n2 = 1, o2 && (r2 = 2 & i4[0] ? o2.return : i4[0] ? o2.throw || ((r2 = o2.return) && r2.call(o2), 0) : o2.next) && !(r2 = r2.call(o2, i4[1])).done)\n                      return r2;\n                    switch (o2 = 0, r2 && (i4 = [2 & i4[0], r2.value]), i4[0]) {\n                      case 0:\n                      case 1:\n                        r2 = i4;\n                        break;\n                      case 4:\n                        return a.label++, {value: i4[1], done: false};\n                      case 5:\n                        a.label++, o2 = i4[1], i4 = [0];\n                        continue;\n                      case 7:\n                        i4 = a.ops.pop(), a.trys.pop();\n                        continue;\n                      default:\n                        if (!((r2 = (r2 = a.trys).length > 0 && r2[r2.length - 1]) || i4[0] !== 6 && i4[0] !== 2)) {\n                          a = 0;\n                          continue;\n                        }\n                        if (i4[0] === 3 && (!r2 || i4[1] > r2[0] && i4[1] < r2[3])) {\n                          a.label = i4[1];\n                          break;\n                        }\n                        if (i4[0] === 6 && a.label < r2[1]) {\n                          a.label = r2[1], r2 = i4;\n                          break;\n                        }\n                        if (r2 && a.label < r2[2]) {\n                          a.label = r2[2], a.ops.push(i4);\n                          break;\n                        }\n                        r2[2] && a.ops.pop(), a.trys.pop();\n                        continue;\n                    }\n                    i4 = t3.call(e3, a);\n                  } catch (e4) {\n                    i4 = [6, e4], o2 = 0;\n                  } finally {\n                    n2 = r2 = 0;\n                  }\n                if (5 & i4[0])\n                  throw i4[1];\n                return {value: i4[0] ? i4[1] : void 0, done: true};\n              }([i3, c2]);\n            };\n          }\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.dispatchCustomKeyEventFromIframe = t2.removeCustomKeyboardListener = t2.addCustomKeyboardListener = void 0;\n        var r = \"Escape\", i = function(e3, i2) {\n          return n(void 0, void 0, void 0, function() {\n            return o(this, function(n2) {\n              return e3.code === r && typeof i2 == \"function\" && (i2(), t2.removeCustomKeyboardListener()), [2];\n            });\n          });\n        };\n        t2.addCustomKeyboardListener = function(e3) {\n          return window.document.addEventListener(\"keydown\", function(t3) {\n            return i(t3, e3);\n          });\n        }, t2.removeCustomKeyboardListener = function() {\n          return window.document.removeEventListener(\"keydown\", i);\n        }, t2.dispatchCustomKeyEventFromIframe = function(e3) {\n          e3.data.type === \"form-close\" && window.document.dispatchEvent(new KeyboardEvent(\"keydown\", {code: r}));\n        };\n      }, 256: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.triggerIframeRedraw = void 0, t2.triggerIframeRedraw = function() {\n          this.style.transform = \"translateZ(0)\";\n        };\n      }, 939: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.getTextColor = void 0;\n        var o = n(938);\n        t2.getTextColor = function(e3) {\n          if (!e3)\n            return \"#FFFFFF\";\n          var t3 = e3.startsWith(\"#\") ? o.hexRgb(e3) : function(e4) {\n            var t4 = {red: 0, green: 0, blue: 0}, n3 = e4.match(/\\d+/g);\n            return n3 && (t4.red = parseInt(n3[0], 10), t4.green = parseInt(n3[0], 10), t4.blue = parseInt(n3[0], 10)), t4;\n          }(e3), n2 = t3.red, r = t3.green, i = t3.blue;\n          return Math.round((299 * n2 + 587 * r + 114 * i) / 1e3) > 125 ? \"#000000\" : \"#FFFFFF\";\n        };\n      }, 698: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.getTransitiveSearchParams = void 0, t2.getTransitiveSearchParams = function(e3) {\n          var t3 = new URL(window.location.href), n = {};\n          return e3 && e3.length > 0 && e3.forEach(function(e4) {\n            t3.searchParams.has(e4) && (n[e4] = t3.searchParams.get(e4));\n          }), n;\n        };\n      }, 252: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.hasDom = void 0, t2.hasDom = function() {\n          return typeof document != \"undefined\" && typeof window != \"undefined\";\n        };\n      }, 938: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.hexRgb = void 0;\n        var n = new RegExp(\"[^#a-f\\\\d]\", \"gi\"), o = new RegExp(\"^#?[a-f\\\\d]{3}[a-f\\\\d]?$|^#?[a-f\\\\d]{6}([a-f\\\\d]{2})?$\", \"i\");\n        t2.hexRgb = function(e3) {\n          if (typeof e3 != \"string\" || n.test(e3) || !o.test(e3))\n            throw new TypeError(\"Expected a valid hex string\");\n          (e3 = e3.replace(/^#/, \"\")).length === 8 && (e3 = e3.slice(0, 6)), e3.length === 4 && (e3 = e3.slice(0, 3)), e3.length === 3 && (e3 = e3[0] + e3[0] + e3[1] + e3[1] + e3[2] + e3[2]);\n          var t3 = Number.parseInt(e3, 16);\n          return {red: t3 >> 16, green: t3 >> 8 & 255, blue: 255 & t3};\n        };\n      }, 71: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.includeCss = void 0, t2.includeCss = function(e3) {\n          var t3 = function(e4) {\n            return \"https://embed.typeform.com/next/css/\" + e4;\n          }(e3);\n          if (!document.querySelector('link[href=\"' + t3 + '\"]')) {\n            var n = document.createElement(\"link\");\n            n.rel = \"stylesheet\", n.href = t3, document.head.append(n);\n          }\n        };\n      }, 747: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(626), t2), r(n(339), t2), r(n(252), t2), r(n(71), t2), r(n(346), t2), r(n(377), t2), r(n(563), t2), r(n(527), t2), r(n(533), t2), r(n(451), t2), r(n(972), t2), r(n(748), t2), r(n(392), t2), r(n(939), t2), r(n(917), t2), r(n(987), t2);\n      }, 346: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.isDefined = void 0, t2.isDefined = function(e3) {\n          return e3 != null;\n        };\n      }, 987: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.isVisible = t2.isInPage = t2.isOpen = void 0, t2.isOpen = function(e3) {\n          return t2.isInPage(e3) && t2.isVisible(e3);\n        }, t2.isInPage = function(e3) {\n          return !!e3.parentNode;\n        }, t2.isVisible = function(e3) {\n          return e3.style.display !== \"none\";\n        };\n      }, 917: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.lazyInitialize = void 0, t2.lazyInitialize = function(e3, t3) {\n          var n = new IntersectionObserver(function(e4) {\n            e4.forEach(function(e5) {\n              e5.isIntersecting && (t3(), n.unobserve(e5.target));\n            });\n          });\n          n.observe(e3);\n        };\n      }, 377: function(e2, t2) {\n        var n = this && this.__assign || function() {\n          return (n = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.loadOptionsFromAttributes = t2.transformAttributeValue = t2.camelCaseToKebabCase = void 0, t2.camelCaseToKebabCase = function(e3) {\n          return e3.split(\"\").map(function(e4, t3) {\n            return e4.toUpperCase() === e4 ? (t3 !== 0 ? \"-\" : \"\") + e4.toLowerCase() : e4;\n          }).join(\"\");\n        };\n        var o = function(e3) {\n          return e3 || void 0;\n        }, r = function(e3) {\n          return e3 === \"\" || e3 === \"yes\" || e3 === \"true\";\n        }, i = function(e3) {\n          var t3 = e3 ? parseInt(e3, 10) : NaN;\n          return isNaN(t3) ? void 0 : t3;\n        }, a = \"%ESCAPED_COMMA%\";\n        t2.transformAttributeValue = function(e3, t3) {\n          var c, u;\n          switch (t3) {\n            case \"string\":\n              return o(e3);\n            case \"boolean\":\n              return r(e3);\n            case \"integer\":\n              return i(e3);\n            case \"function\":\n              return function(e4) {\n                var t4 = e4 && e4 in window ? window[e4] : void 0;\n                return typeof t4 == \"function\" ? t4 : void 0;\n              }(e3);\n            case \"array\":\n              return function(e4) {\n                if (e4)\n                  return e4.replace(/\\s/g, \"\").replace(/\\\\,/g, a).split(\",\").filter(function(e5) {\n                    return !!e5;\n                  }).map(function(e5) {\n                    return e5.replace(a, \",\");\n                  });\n              }(e3);\n            case \"record\":\n              return function(e4) {\n                if (e4)\n                  return e4.replace(/\\\\,/g, a).split(\",\").filter(function(e5) {\n                    return !!e5;\n                  }).map(function(e5) {\n                    return e5.replace(a, \",\");\n                  }).reduce(function(e5, t4) {\n                    var o2, r2 = t4.match(/^([^=]+)=(.*)$/);\n                    if (r2) {\n                      var i2 = r2[1], a2 = r2[2];\n                      return n(n({}, e5), ((o2 = {})[i2.trim()] = a2, o2));\n                    }\n                    return e5;\n                  }, {});\n              }(e3);\n            case \"integerOrBoolean\":\n              return (c = i(e3)) !== null && c !== void 0 ? c : r(e3);\n            case \"stringOrBoolean\":\n              return (u = o(e3)) !== null && u !== void 0 ? u : r(e3);\n            default:\n              throw new Error(\"Invalid attribute transformation \" + t3);\n          }\n        }, t2.loadOptionsFromAttributes = function(e3, o2) {\n          return Object.keys(o2).reduce(function(r2, i2) {\n            var a2;\n            return n(n({}, r2), ((a2 = {})[i2] = t2.transformAttributeValue(e3.getAttribute(\"data-tf-\" + t2.camelCaseToKebabCase(i2)), o2[i2]), a2));\n          }, {});\n        };\n      }, 563: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.isFullscreen = t2.isMobile = t2.isBigScreen = void 0, t2.isBigScreen = function() {\n          return window.screen.width >= 1024 && window.screen.height >= 768;\n        }, t2.isMobile = function() {\n          return /mobile|tablet|android/i.test(navigator.userAgent.toLowerCase());\n        }, t2.isFullscreen = function() {\n          return t2.isMobile() && !t2.isBigScreen();\n        };\n      }, 527: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.removeUndefinedKeys = void 0;\n        var r = n(346);\n        t2.removeUndefinedKeys = function(e3) {\n          return Object.entries(e3).filter(function(e4) {\n            var t3 = e4[1];\n            return r.isDefined(t3);\n          }).reduce(function(e4, t3) {\n            var n2, r2 = t3[0], i = t3[1];\n            return o(o({}, e4), ((n2 = {})[r2] = i, n2));\n          }, {});\n        };\n      }, 748: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.setAutoClose = void 0;\n        var o = n(554);\n        t2.setAutoClose = function(e3, t3, n2) {\n          if (t3 && n2) {\n            var r = typeof t3 == \"number\" ? t3 : 0;\n            window.addEventListener(\"message\", o.getFormSubmitHandler(e3, function() {\n              return setTimeout(n2, r);\n            }));\n          }\n        };\n      }, 533: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.setElementSize = void 0, t2.setElementSize = function(e3, t3) {\n          var n = t3.width, o = t3.height;\n          return n && (e3.style.width = n + \"px\"), o && (e3.style.height = o + \"px\"), e3;\n        };\n      }, 392: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.setupGaInstance = t2.sendGaIdMessage = void 0, t2.sendGaIdMessage = function(e3, t3, n2) {\n          var o = {embedId: e3, gaClientId: t3};\n          setTimeout(function() {\n            n2 && n2.contentWindow && n2.contentWindow.postMessage({type: \"ga-client-id\", data: o}, \"*\");\n          }, 0);\n        };\n        var n = function(e3) {\n          console.error(e3);\n        };\n        t2.setupGaInstance = function(e3, o, r) {\n          try {\n            var i = window[window.GoogleAnalyticsObject], a = typeof r == \"string\" ? r : void 0, c = function(e4, t3) {\n              return t3 ? e4.find(function(e5) {\n                return e5.get(\"trackingId\") === t3;\n              }) : e4[0];\n            }(i.getAll(), a);\n            c ? t2.sendGaIdMessage(o, c.get(\"clientId\"), e3) : n(\"Whoops! You enabled the shareGaInstance feature in your typeform embed but the tracker with ID \" + a + \" was not found. Make sure to include Google Analytics Javascript code before the Typeform Embed Javascript code in your page and use correct tracker ID. \");\n          } catch (e4) {\n            n(\"Whoops! You enabled the shareGaInstance feature in your typeform embed but the Google Analytics object has not been found. Make sure to include Google Analytics Javascript code before the Typeform Embed Javascript code in your page. \"), n(e4);\n          }\n        };\n      }, 451: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.unmountElement = void 0, t2.unmountElement = function(e3) {\n          var t3;\n          (t3 = e3.parentNode) === null || t3 === void 0 || t3.removeChild(e3);\n        };\n      }}, t = {};\n      return function n(o) {\n        if (t[o])\n          return t[o].exports;\n        var r = t[o] = {exports: {}};\n        return e[o].call(r.exports, r, r.exports, n), r.exports;\n      }(920);\n    }();\n  });\n});\nvar __pika_web_default_export_for_treeshaking__ = /* @__PURE__ */ getDefaultExportFromCjs(build);\nvar createPopover = build.createPopover;\nvar createPopup = build.createPopup;\nvar createSidetab = build.createSidetab;\nvar createSlider = build.createSlider;\nvar createWidget = build.createWidget;\nexport default __pika_web_default_export_for_treeshaking__;\nexport {build as __moduleExports, createPopover, createPopup, createSidetab, createSlider, createWidget};\n", "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{useRef,useEffect}from\"react\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{createWidget}from\"https://cdn.skypack.dev/@typeform/embed@1.32.0\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";const Widget=withCSS(function Widget({id,style,onSubmit,hideFooter,hideHeaders,disableAutoFocus,...props}){const container=useRef(null);useEffect(()=>{if(container.current){const widget=createWidget(id,{width:\"100%\",height:\"100%\",container:container.current,transitiveSearchParams:[\"utm_source\",\"utm_medium\",\"utm_campaign\",],onSubmit,hideFooter,hideHeaders,disableAutoFocus});return()=>{widget.unmount();};}},[id,onSubmit,hideFooter,hideHeaders,disableAutoFocus]);return /*#__PURE__*/ _jsx(\"div\",{style:style,className:\"framer-typeform\",ref:container,...props});},[\".framer-typeform div, .framer-typeform iframe { width: 100%; height: 100%; border: none !important; }\",]);/**\n * TYPEFORM\n *\n * @framerIntrinsicWidth 800\n * @framerIntrinsicHeight 600\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Typeform({formId,style,onSubmit,hideFooter,hideHeaders,autoFocus,...props}){function handleSubmit(e){if(onSubmit!==undefined){onSubmit(e);}if(globalThis.__send_framer_conversion__){globalThis.__send_framer_conversion__(\"typeform\");}}return formId?/*#__PURE__*/ _jsx(motion.div,{style:{...containerStyles,...style},...props,children:/*#__PURE__*/ _jsx(Widget,{id:formId,style:{width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,hideFooter:hideFooter,hideHeaders:hideHeaders,disableAutoFocus:!autoFocus})}):/*#__PURE__*/ _jsxs(motion.div,{style:{...emptyStateStyle,...style},...props,children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Typeform\"}),/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Set a form ID in the Properties.\"})]});};addPropertyControls(Typeform,{formId:{title:\"ID\",type:ControlType.String,placeholder:\"12ABCD34\",defaultValue:\"R2s5BM\",description:\"Create a [Typeform](https://www.typeform.com/) account, add a form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/typeform/)\"},hideFooter:{title:\"Footer\",type:ControlType.Boolean,enabledTitle:\"Hide\",disabledTitle:\"Show\",defaultValue:false},hideHeaders:{title:\"Headers\",type:ControlType.Boolean,enabledTitle:\"Hide\",disabledTitle:\"Show\",defaultValue:false},autoFocus:{title:\"Auto-focus\",type:ControlType.Boolean,enabledTitle:\"On\",disabledTitle:\"Off\",defaultValue:true},onSubmit:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Typeform\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"800\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Typeform.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const baseUrl=\"https://logo.clearbit.com/\";const getLogoUrl=company=>{if(!company)return null;return company.includes(\".\")?`${baseUrl}${company}?size=500`:`${baseUrl}${company}.com?size=500`;};/**\n * @framerIntrinsicWidth 64\n * @framerIntrinsicHeight 64\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Logo(props){const{company,radius,isSearch,srcType,srcUrl,srcFile,style}=props;const logoURL=useMemo(()=>{if(isSearch)return getLogoUrl(company);if(srcType===SrcType.Upload)return srcFile;if(srcType===SrcType.Url)return srcUrl;return null;},[company,isSearch,srcType,srcUrl,srcFile]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return logoURL?/*#__PURE__*/ _jsx(\"img\",{src:logoURL,style:{...baseStyles,...style,borderRadius:radius},alt:\"Logo\"}):emptyState;};Logo.defaultProps={company:\"Framer\",radius:100,width:64,height:64,isSearch:true};const baseStyles={position:\"absolute\",left:0,right:0,top:0,bottom:0,width:\"100%\",height:\"100%\"};addPropertyControls(Logo,{isSearch:{type:ControlType.Boolean,title:\"Type\",disabledTitle:\"Custom\",enabledTitle:\"Search\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Upload],hidden:({isSearch})=>isSearch},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.jpg\",hidden:({srcType,isSearch})=>srcType===SrcType.Upload||isSearch},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"jpg\",\"png\",\"jpeg\",\"tiff\",\"gif\"],hidden:({srcType,isSearch})=>srcType===SrcType.Url||isSearch},company:{type:ControlType.String,title:\"Company\",placeholder:\"Github, Apple...\",hidden:({isSearch})=>!isSearch},radius:{type:ControlType.Number,min:0,max:100,title:\"Radius\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Logo\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"64\",\"framerIntrinsicHeight\":\"64\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Logo.map", "// Generated by Framer (44d7d2d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bebas Neue-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXooxWtrygbi49c.woff2\",weight:\"400\"}]}];export const css=['.framer-nyiAD .framer-styles-preset-111sh3g:not(.rich-text-wrapper), .framer-nyiAD .framer-styles-preset-111sh3g.rich-text-wrapper h4 { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; text-wrap: balance; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-nyiAD .framer-styles-preset-111sh3g:not(.rich-text-wrapper), .framer-nyiAD .framer-styles-preset-111sh3g.rich-text-wrapper h4 { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; text-wrap: balance; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-nyiAD .framer-styles-preset-111sh3g:not(.rich-text-wrapper), .framer-nyiAD .framer-styles-preset-111sh3g.rich-text-wrapper h4 { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nyiAD .framer-styles-preset-111sh3g:not(.rich-text-wrapper), .framer-nyiAD .framer-styles-preset-111sh3g.rich-text-wrapper h4 { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; text-wrap: balance; } }'];export const className=\"framer-nyiAD\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wQjbveU6wiwI4CThlEww/Vsy9Hcsrm2ZUidZeQbGR/kf83_TXtq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jAPCxHcfUKsvPT70BPhz/uULPbQkovsdaPo2UzjoA/X0w_fT1vo.js\";const LogoFonts=getFonts(Logo);const LogoControls=getPropertyControls(Logo);const serializationHash=\"framer-LzrBK\";const variantClassNames={fvFg_COqq:\"framer-v-1d16730\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({content,height,id,logo,name1,padding,width,...props})=>{return{...props,dB3Dx5gxf:content??props.dB3Dx5gxf??\"Expand your reach and grow your business with our comprehensive digital marketing services. From SEO and PPC to content marketing and social media management, we tailor strategies to your unique needs. Prices start from 1500\u20AC.\",I13YzNy71:padding??props.I13YzNy71??\"42px\",kVcww4jOA:logo??props.kVcww4jOA,T83UTcd_Z:name1??props.T83UTcd_Z??\"DIGITAL MARKETING\"};};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,kVcww4jOA,T83UTcd_Z,dB3Dx5gxf,I13YzNy71,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fvFg_COqq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1d16730\",className,classNames),\"data-framer-name\":\"Services Card\",layoutDependency:layoutDependency,layoutId:\"fvFg_COqq\",ref:refBinding,style:{\"--sk1yje\":numberToPixelString(I13YzNy71),backgroundColor:\"var(--token-bbbf66bc-6d3e-442c-9402-49fd6e26aac7, rgb(22, 22, 22))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kyyktm\",\"data-framer-name\":\"Header Content Card Services\",layoutDependency:layoutDependency,layoutId:\"B8i8kcV8k\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q7orvx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Z066PZ46N-container\",nodeId:\"Z066PZ46N\",rendersWithMotion:true,scopeId:\"BBTcXnPdl\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"Z066PZ46N\",isSearch:false,layoutId:\"Z066PZ46N\",radius:10,srcFile:kVcww4jOA,srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k965fd\",\"data-framer-name\":\"Section Content Card Services\",layoutDependency:layoutDependency,layoutId:\"C_WXC59Tq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-111sh3g\",\"data-styles-preset\":\"kf83_TXtq\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204)))\"},children:\"Branding & identity\"})}),className:\"framer-1v8w72u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oqgdXZZXE\",style:{\"--extracted-1eung3n\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},text:T83UTcd_Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122)))\"},children:\"As the cornerstone of any successful business, branding is what really sets you apart! From logo design, colors and fonts strategy, to identity guidelines and social media kits, we can do it all! And we would love to! Prices start from 2000\u20AC.\"})}),className:\"framer-1qtuynx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zbfQ16Km4\",style:{\"--extracted-r6o4lv\":\"var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122))\"},text:dB3Dx5gxf,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LzrBK.framer-12wbplt, .framer-LzrBK .framer-12wbplt { display: block; }\",\".framer-LzrBK.framer-1d16730 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--sk1yje); position: relative; width: 537px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LzrBK .framer-kyyktm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LzrBK .framer-1q7orvx-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); position: relative; width: 83px; }\",\".framer-LzrBK .framer-k965fd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LzrBK .framer-1v8w72u, .framer-LzrBK .framer-1qtuynx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LzrBK.framer-1d16730, .framer-LzrBK .framer-kyyktm, .framer-LzrBK .framer-k965fd { gap: 0px; } .framer-LzrBK.framer-1d16730 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-LzrBK.framer-1d16730 > :first-child, .framer-LzrBK .framer-kyyktm > :first-child, .framer-LzrBK .framer-k965fd > :first-child { margin-top: 0px; } .framer-LzrBK.framer-1d16730 > :last-child, .framer-LzrBK .framer-kyyktm > :last-child, .framer-LzrBK .framer-k965fd > :last-child { margin-bottom: 0px; } .framer-LzrBK .framer-kyyktm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LzrBK .framer-k965fd > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 354\n * @framerIntrinsicWidth 537\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"kVcww4jOA\":\"logo\",\"T83UTcd_Z\":\"name1\",\"dB3Dx5gxf\":\"content\",\"I13YzNy71\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBBTcXnPdl=withCSS(Component,css,\"framer-LzrBK\");export default FramerBBTcXnPdl;FramerBBTcXnPdl.displayName=\"Component/Services Card\";FramerBBTcXnPdl.defaultProps={height:354,width:537};addPropertyControls(FramerBBTcXnPdl,{kVcww4jOA:LogoControls?.[\"srcFile\"]&&{...LogoControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Logo\"},T83UTcd_Z:{defaultValue:\"DIGITAL MARKETING\",displayTextArea:false,title:\"Name\",type:ControlType.String},dB3Dx5gxf:{defaultValue:\"Expand your reach and grow your business with our comprehensive digital marketing services. From SEO and PPC to content marketing and social media management, we tailor strategies to your unique needs. Prices start from 1500\u20AC.\",displayTextArea:false,title:\"Content\",type:ControlType.String},I13YzNy71:{defaultValue:\"42px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerBBTcXnPdl,[{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\"}]},...LogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBBTcXnPdl\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"537\",\"framerIntrinsicHeight\":\"354\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"kVcww4jOA\\\":\\\"logo\\\",\\\"T83UTcd_Z\\\":\\\"name1\\\",\\\"dB3Dx5gxf\\\":\\\"content\\\",\\\"I13YzNy71\\\":\\\"padding\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BBTcXnPdl.map", "// Generated by Framer (ba0a5a9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jAPCxHcfUKsvPT70BPhz/uULPbQkovsdaPo2UzjoA/X0w_fT1vo.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"hcy2F2DP5\",\"FfgeflgkL\"];const serializationHash=\"framer-AUOsI\";const variantClassNames={FfgeflgkL:\"framer-v-1ja0s34\",hcy2F2DP5:\"framer-v-1464f4j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:40,delay:0,mass:1,stiffness:400,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={Off:\"hcy2F2DP5\",On:\"FfgeflgkL\"};const getProps=({content,height,id,padding,title,width,...props})=>{return{...props,J4fex6hzB:content??props.J4fex6hzB??\"[Your Business Name] is a creative agency specializing in [describe your services, e.g., graphic design, branding, creative consulting, digital marketing, etc.]. We are dedicated to transforming innovative ideas into visual and strategic solutions that help your business shine.\",TDtIwMmrH:title??props.TDtIwMmrH??\"What is [Your Business Name], and what services do you offer?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"hcy2F2DP5\",XV1Qgqf9g:padding??props.XV1Qgqf9g??\"15px 42px 15px 42px\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TDtIwMmrH,J4fex6hzB,XV1Qgqf9g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hcy2F2DP5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1hghyti=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FfgeflgkL\");});const onTaph4yt3h=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"hcy2F2DP5\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"FfgeflgkL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1464f4j\",className,classNames),\"data-framer-name\":\"Off\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hcy2F2DP5\",onTap:onTap1hghyti,ref:ref??ref1,style:{\"--wgg5dv\":numberToPixelString(XV1Qgqf9g),borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({FfgeflgkL:{\"data-framer-name\":\"On\",onTap:onTaph4yt3h}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mk82a8\",\"data-framer-name\":\"Section FAQ\",layoutDependency:layoutDependency,layoutId:\"jFuPTIAV5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j4hb0t\",\"data-framer-name\":\"Section FAQ Title\",layoutDependency:layoutDependency,layoutId:\"TASDZA5Cp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-piht0l-container\",layoutDependency:layoutDependency,layoutId:\"mdbqiV2vM-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"question\",iconSelection:\"House\",id:\"mdbqiV2vM\",layoutId:\"mdbqiV2vM\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204)))\"},children:'What are \"E-Comm Design Formulas\" and how are they different?'})}),className:\"framer-1h2m8sr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WYpzfg7Xc\",style:{\"--extracted-r6o4lv\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},text:TDtIwMmrH,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8x93jk-container\",layoutDependency:layoutDependency,layoutId:\"BfM_Eu3Vi-container\",style:{rotate:0},variants:{FfgeflgkL:{rotate:180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"caret-down\",iconSelection:\"House\",id:\"BfM_Eu3Vi\",layoutId:\"BfM_Eu3Vi\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"The \u201CE-Commerce Design Formulas\u201D is unique concept, created by us. After years of experience in building online stores, we noticed that specific niches have a clear winner in terms of sections order, logic and wireframe.\u200DFormulas are different to what you would call templates because each page will benefit from a results-proven wireframe design, whilst templates are rather focused on generic structures, lacking optimisation in terms of conversion rate and user experience.\u200DIt\u2019s like having the opportunity to build your website based on the research from a large number of projects, all of which paid eye-watering amounts of money on A/B testing and ads to finally get to a conclusion you can get for free.\u200DFormulas also allow us to engage in a very fast-paced design process, since we know exactly what needs to be done, without having to go through a creative process for each page we build on your store.\u200DAs you noticed, we use plural, because there are multiple formulas to choose from, depending on the specific details of your store type and niche. Mainly, we will guide you into choosing one of our three main formulas:\u200D1. Commerce focused, the most popular choice for large catalog type store, with lots of products and a vast menu or collections structure. This formula will focus on lots of upselling and cross-selling section throughout the store, in order to showcase the diversity of the catalog. 2. Brand focused, which is the best choice for stores that have a great story to tell. Be it the selection of the products, the internal manufacturing process or simply the mission behind the brand and it\u2019s founders, this formula is excellent for storytelling-focused brands that know they are on a mission of changing an industry.3. Product Features Focused, excelent for those stores that have a very special selection of products, which can easily be considered \u201Cgame-changers\u201D in their niche, and also have very strong unique selling propositions and differentiators, which will be highlighted in very visually-pleasing way in their respective product pages.Don\u2019t worry if you\u2019re not exactly sure where your brand fits. It\u2019s part of our discovery phase to get to know you and your brand, so we can recommend the best formula and theme for you. The kind of content you already or are willing to produce play a huge part of the final choice. The best results actually come when we are entrusted to completely make those decisions ourselves, while the customer keeps an open mind to our suggestions of creating new content, especially when it comes to lifestyle photos or videos.\"})}),className:\"framer-fy2xzg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e3GhL8mCV\",text:J4fex6hzB,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AUOsI.framer-18sk7ie, .framer-AUOsI .framer-18sk7ie { display: block; }\",\".framer-AUOsI.framer-1464f4j { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--wgg5dv); position: relative; width: 750px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AUOsI .framer-mk82a8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AUOsI .framer-j4hb0t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AUOsI .framer-piht0l-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-AUOsI .framer-1h2m8sr { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AUOsI .framer-8x93jk-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-AUOsI .framer-fy2xzg { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AUOsI.framer-1464f4j, .framer-AUOsI .framer-mk82a8, .framer-AUOsI .framer-j4hb0t { gap: 0px; } .framer-AUOsI.framer-1464f4j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AUOsI.framer-1464f4j > :first-child { margin-top: 0px; } .framer-AUOsI.framer-1464f4j > :last-child { margin-bottom: 0px; } .framer-AUOsI .framer-mk82a8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AUOsI .framer-mk82a8 > :first-child, .framer-AUOsI .framer-j4hb0t > :first-child { margin-left: 0px; } .framer-AUOsI .framer-mk82a8 > :last-child, .framer-AUOsI .framer-j4hb0t > :last-child { margin-right: 0px; } .framer-AUOsI .framer-j4hb0t > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 750\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FfgeflgkL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TDtIwMmrH\":\"title\",\"J4fex6hzB\":\"content\",\"XV1Qgqf9g\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercQZGrYDYv=withCSS(Component,css,\"framer-AUOsI\");export default FramercQZGrYDYv;FramercQZGrYDYv.displayName=\"Component/Component FAQs\";FramercQZGrYDYv.defaultProps={height:54,width:750};addPropertyControls(FramercQZGrYDYv,{variant:{options:[\"hcy2F2DP5\",\"FfgeflgkL\"],optionTitles:[\"Off\",\"On\"],title:\"Variant\",type:ControlType.Enum},TDtIwMmrH:{defaultValue:\"What is [Your Business Name], and what services do you offer?\",displayTextArea:false,title:\"Title\",type:ControlType.String},J4fex6hzB:{defaultValue:\"[Your Business Name] is a creative agency specializing in [describe your services, e.g., graphic design, branding, creative consulting, digital marketing, etc.]. We are dedicated to transforming innovative ideas into visual and strategic solutions that help your business shine.\",description:\"\",displayTextArea:true,title:\"Content\",type:ControlType.String},XV1Qgqf9g:{defaultValue:\"15px 42px 15px 42px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramercQZGrYDYv,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercQZGrYDYv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"750\",\"framerIntrinsicHeight\":\"54\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FfgeflgkL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"TDtIwMmrH\\\":\\\"title\\\",\\\"J4fex6hzB\\\":\\\"content\\\",\\\"XV1Qgqf9g\\\":\\\"padding\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"hN8OntiaF\",\"X3SdKkYKA\"];const serializationHash=\"framer-Dxnrk\";const variantClassNames={hN8OntiaF:\"framer-v-yxde9y\",X3SdKkYKA:\"framer-v-173igqp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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 3\":\"X3SdKkYKA\",Off:\"hN8OntiaF\"};const getProps=({function1,height,id,image,name1,width,...props})=>{return{...props,gsvBbnaKP:function1??props.gsvBbnaKP??\"Function\",QktLVpXDD:name1??props.QktLVpXDD??\"Name\",variant:humanReadableVariantMap[props.variant]??props.variant??\"hN8OntiaF\",wczRppDJI:image??props.wczRppDJI};};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,wczRppDJI,QktLVpXDD,gsvBbnaKP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hN8OntiaF\",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__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-yxde9y\",className,classNames),\"data-framer-name\":\"Off\",layoutDependency:layoutDependency,layoutId:\"hN8OntiaF\",ref:refBinding,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",...style},...addPropertyOverrides({X3SdKkYKA:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||607)-0-(Math.max(0,((componentViewport?.height||607)-0-144.9)/1)*1+144.9+0))/2+0+0)),pixelHeight:600,pixelWidth:500,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(wczRppDJI),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-z2et4l\",\"data-framer-name\":\"Image Person\",layoutDependency:layoutDependency,layoutId:\"SkoKDQ0oY\",style:{borderTopLeftRadius:25,borderTopRightRadius:25,filter:\"grayscale(0)\",transformPerspective:1200,WebkitFilter:\"grayscale(0)\"},...addPropertyOverrides({X3SdKkYKA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||607)-0-(Math.max(0,((componentViewport?.height||607)-0-122.8)/1)*1+122.8+0))/2+0+0)),pixelHeight:600,pixelWidth:500,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(wczRppDJI),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1saiydo\",\"data-framer-name\":\"Section Personal Data\",layoutDependency:layoutDependency,layoutId:\"FMQHLZeeF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255)))\"},children:\"Name\"})}),className:\"framer-1f3knp1\",fonts:[\"Inter-Black\"],layoutDependency:layoutDependency,layoutId:\"MMCpACIX_\",style:{\"--extracted-1eung3n\":\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\"},text:QktLVpXDD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-font-size\":\"33px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122)))\"},children:\"Function\"})}),className:\"framer-1vag6ov\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CjimGbxVa\",style:{\"--extracted-1lwpl3i\":\"var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122))\"},text:gsvBbnaKP,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({X3SdKkYKA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122)))\"},children:\"Function\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Dxnrk.framer-kwnjzo, .framer-Dxnrk .framer-kwnjzo { display: block; }\",\".framer-Dxnrk.framer-yxde9y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 607px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 462px; }\",\".framer-Dxnrk .framer-z2et4l { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Dxnrk .framer-1saiydo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-Dxnrk .framer-1f3knp1 { cursor: default; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Dxnrk .framer-1vag6ov { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Dxnrk.framer-yxde9y, .framer-Dxnrk .framer-1saiydo { gap: 0px; } .framer-Dxnrk.framer-yxde9y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Dxnrk.framer-yxde9y > :first-child, .framer-Dxnrk .framer-1saiydo > :first-child { margin-top: 0px; } .framer-Dxnrk.framer-yxde9y > :last-child, .framer-Dxnrk .framer-1saiydo > :last-child { margin-bottom: 0px; } .framer-Dxnrk .framer-1saiydo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 607\n * @framerIntrinsicWidth 462\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"X3SdKkYKA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wczRppDJI\":\"image\",\"QktLVpXDD\":\"name1\",\"gsvBbnaKP\":\"function1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameri92KiItYr=withCSS(Component,css,\"framer-Dxnrk\");export default Frameri92KiItYr;Frameri92KiItYr.displayName=\"Component/Team Card\";Frameri92KiItYr.defaultProps={height:607,width:462};addPropertyControls(Frameri92KiItYr,{variant:{options:[\"hN8OntiaF\",\"X3SdKkYKA\"],optionTitles:[\"Off\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},wczRppDJI:{title:\"Image\",type:ControlType.ResponsiveImage},QktLVpXDD:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},gsvBbnaKP:{defaultValue:\"Function\",displayTextArea:false,title:\"Function\",type:ControlType.String}});addFonts(Frameri92KiItYr,[{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri92KiItYr\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"607\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X3SdKkYKA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"462\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"wczRppDJI\\\":\\\"image\\\",\\\"QktLVpXDD\\\":\\\"name1\\\",\\\"gsvBbnaKP\\\":\\\"function1\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./i92KiItYr.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"znhunZCI_\",\"a9mquF4fo\",\"CnDBMQhHw\"];const serializationHash=\"framer-OluqJ\";const variantClassNames={a9mquF4fo:\"framer-v-pe73l1\",CnDBMQhHw:\"framer-v-ngb7ff\",znhunZCI_:\"framer-v-qyccux\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};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={\"Desktop Down\":\"a9mquF4fo\",\"Desktop Up\":\"znhunZCI_\",\"Phone Off\":\"CnDBMQhHw\"};const getProps=({height,id,radius,visibleSectionMore,width,...props})=>{return{...props,mDwzIzryJ:radius??props.mDwzIzryJ??\"100px\",mREhjIwVN:visibleSectionMore??props.mREhjIwVN??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"znhunZCI_\"};};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,mREhjIwVN,mDwzIzryJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"znhunZCI_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qyccux\",className,classNames),\"data-framer-name\":\"Desktop Up\",layoutDependency:layoutDependency,layoutId:\"znhunZCI_\",ref:refBinding,style:{backdropFilter:\"blur(4px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\",opacity:1,WebkitBackdropFilter:\"blur(4px)\",...style},variants:{a9mquF4fo:{backgroundColor:\"var(--token-bbbf66bc-6d3e-442c-9402-49fd6e26aac7, rgb(22, 22, 22))\",borderBottomLeftRadius:radiusForCorner(mDwzIzryJ,3),borderBottomRightRadius:radiusForCorner(mDwzIzryJ,2),borderTopLeftRadius:radiusForCorner(mDwzIzryJ,0),borderTopRightRadius:radiusForCorner(mDwzIzryJ,1),boxShadow:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",opacity:.93},CnDBMQhHw:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\",opacity:1}},...addPropertyOverrides({a9mquF4fo:{\"data-framer-name\":\"Desktop Down\"},CnDBMQhHw:{\"data-framer-name\":\"Phone Off\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.section,{className:\"framer-jzra62\",\"data-framer-name\":\"Secttion Nav\",layoutDependency:layoutDependency,layoutId:\"XT2TVMeIw\",children:mREhjIwVN&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6q8nh1\",\"data-framer-name\":\"Section More\",layoutDependency:layoutDependency,layoutId:\"i5S2wdrMF\",children:mREhjIwVN&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16vtjzx\",\"data-framer-name\":\"Section Logo\",layoutDependency:layoutDependency,layoutId:\"gyCUlzGzf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ivm2t2\",\"data-framer-name\":\"Group 27\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:302,layoutDependency:layoutDependency,layoutId:\"VzpErzSXd\",svg:'<svg width=\"302\" height=\"98\" viewBox=\"0 0 302 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M78.1684 36.3488C77.3452 34.4721 76.2174 32.6859 74.9497 30.875C73.682 29.0641 72.365 27.5331 70.9079 25.9774C58.2969 13.2191 37.924 10.9232 22.7538 21.6658C5.79745 33.5361 1.67429 56.9053 13.5199 74.0016C25.3902 90.958 48.7594 95.0812 65.8558 83.2355C81.026 72.493 85.9806 52.5892 78.1684 36.3488ZM60.7849 75.992C47.7796 85.0965 29.7279 81.9115 20.6235 68.9061C11.5191 55.9007 14.704 37.8491 27.7094 28.7447C40.7148 19.6402 58.7664 22.8252 67.8709 35.8306C77.1152 48.8606 73.9303 66.9123 60.7849 75.992Z\" fill=\"url(#paint0_linear_31_12)\"/>\\n<path d=\"M94.3017 25.0546L80.1439 34.9657C79.3207 33.089 78.1929 31.3028 76.9252 29.4919C75.6575 27.681 74.3404 26.15 72.8834 24.5943L87.0412 14.6832C88.6874 13.5307 90.7865 13.9011 91.9389 15.5473L95.281 20.3215C96.3182 21.8031 95.9232 24.0421 94.3017 25.0546Z\" fill=\"url(#paint1_linear_31_12)\"/>\\n<path d=\"M52.9485 64.7975C43.8941 71.136 33.078 71.1035 28.6986 64.8477C29.423 64.8312 41.0211 63.7031 44.9965 53.4384C48.4452 44.5236 61.2944 42.029 61.2944 42.029C65.5338 48.2601 61.8382 58.5742 52.9485 64.7975Z\" fill=\"url(#paint2_linear_31_12)\"/>\\n<path d=\"M59.9361 39.9135C59.9361 39.9135 47.0868 42.4081 43.6382 51.3229C39.8274 61.4724 28.0894 62.5758 27.3403 62.7322C22.961 56.4765 26.6318 46.3023 35.6862 39.9638C44.7406 33.6252 55.5567 33.6578 59.9361 39.9135Z\" fill=\"url(#paint3_linear_31_12)\"/>\\n<path d=\"M64.3169 18.4855C64.3169 16.7667 65.7102 15.3734 67.429 15.3734H187.071C188.79 15.3734 190.183 16.7667 190.183 18.4855V35.4291C190.183 37.1478 188.79 38.5411 187.071 38.5411H67.429C65.7102 38.5411 64.3169 37.1478 64.3169 35.4291V18.4855Z\" fill=\"url(#paint4_linear_31_12)\"/>\\n<path d=\"M82.8591 33.3543L80.9444 29.6871H71.4927L69.578 33.3543H68.1901L75.4739 19.4351H76.9631L84.2469 33.3543H82.8591ZM76.2236 20.6608L72.1106 28.5221H80.3264L76.2236 20.6608Z\" fill=\"white\"/>\\n<path d=\"M101.549 28.978C101.549 29.6736 101.4 30.3084 101.103 30.8825C100.813 31.4498 100.374 31.9394 99.7863 32.3514C99.2055 32.7566 98.4761 33.0707 97.5981 33.2935C96.7201 33.5164 95.6969 33.6279 94.5286 33.6279C93.3602 33.6279 92.337 33.5164 91.459 33.2935C90.581 33.0707 89.8483 32.7566 89.2607 32.3514C88.6731 31.9394 88.2308 31.4498 87.9336 30.8825C87.6432 30.3084 87.498 29.6736 87.498 28.978V19.4351H88.7643V29.0793C88.7643 29.5453 88.8859 29.9876 89.129 30.4064C89.3789 30.8183 89.747 31.1797 90.2332 31.4903C90.7195 31.801 91.3206 32.0475 92.0365 32.2298C92.7523 32.4122 93.583 32.5034 94.5286 32.5034C95.4673 32.5034 96.2946 32.4122 97.0105 32.2298C97.7264 32.0475 98.3275 31.801 98.8137 31.4903C99.3 31.1797 99.6647 30.8183 99.9078 30.4064C100.158 29.9876 100.283 29.5453 100.283 29.0793V19.4351H101.549V28.978Z\" fill=\"white\"/>\\n<path d=\"M106.948 33.3543V19.4351H108.214V32.1691H118.385V33.3543H106.948Z\" fill=\"white\"/>\\n<path d=\"M135.069 33.3543L133.154 29.6871H123.703L121.788 33.3543H120.4L127.684 19.4351H129.173L136.457 33.3543H135.069ZM128.434 20.6608L124.321 28.5221H132.536L128.434 20.6608ZM132.02 15.8286C132.02 16.0042 131.993 16.2203 131.939 16.477C131.892 16.7336 131.797 16.9801 131.655 17.2165C131.513 17.4529 131.317 17.6555 131.068 17.8243C130.824 17.9864 130.507 18.0674 130.115 18.0674C129.798 18.0674 129.484 18.0033 129.173 17.875C128.869 17.7466 128.572 17.6082 128.282 17.4596C127.998 17.3043 127.725 17.1625 127.461 17.0341C127.204 16.9058 126.968 16.8417 126.752 16.8417C126.549 16.8417 126.387 16.8923 126.266 16.9936C126.151 17.0949 126.063 17.2165 126.002 17.3583C125.942 17.4934 125.901 17.6285 125.881 17.7635C125.86 17.8986 125.847 17.9999 125.84 18.0674H124.878C124.878 17.8986 124.905 17.6892 124.959 17.4394C125.013 17.1827 125.111 16.9362 125.253 16.6998C125.394 16.4567 125.59 16.2507 125.84 16.0819C126.09 15.913 126.414 15.8286 126.813 15.8286C127.076 15.8286 127.353 15.8928 127.643 16.0211C127.934 16.1494 128.224 16.2912 128.515 16.4466C128.812 16.5951 129.099 16.7336 129.376 16.8619C129.653 16.9902 129.913 17.0544 130.156 17.0544C130.358 17.0544 130.517 17.0037 130.632 16.9024C130.754 16.8011 130.845 16.6829 130.905 16.5479C130.966 16.4128 131.007 16.2777 131.027 16.1427C131.047 16.0076 131.061 15.9029 131.068 15.8286H132.02Z\" fill=\"white\"/>\\n<path d=\"M156.535 26.4048C156.535 27.6542 156.309 28.7348 155.856 29.6466C155.404 30.5516 154.782 31.3012 153.992 31.8955C153.202 32.4831 152.27 32.9187 151.196 33.2024C150.122 33.486 148.964 33.6279 147.721 33.6279C146.472 33.6279 145.307 33.486 144.226 33.2024C143.146 32.9187 142.207 32.4831 141.41 31.8955C140.613 31.3012 139.988 30.5516 139.536 29.6466C139.083 28.7348 138.857 27.6542 138.857 26.4048C138.857 25.5741 138.962 24.8211 139.171 24.1457C139.38 23.4636 139.674 22.8558 140.052 22.3222C140.431 21.782 140.887 21.3159 141.42 20.9242C141.96 20.5325 142.558 20.2084 143.213 19.9517C143.875 19.6883 144.584 19.4958 145.341 19.3743C146.097 19.246 146.891 19.1818 147.721 19.1818C148.964 19.1818 150.122 19.3236 151.196 19.6073C152.27 19.8909 153.202 20.3299 153.992 20.9242C154.782 21.5118 155.404 22.2615 155.856 23.1732C156.309 24.0782 156.535 25.1554 156.535 26.4048ZM155.228 26.4048C155.228 25.4188 155.066 24.5476 154.742 23.7912C154.424 23.0348 153.951 22.3999 153.323 21.8866C152.695 21.3666 151.912 20.9749 150.973 20.7115C150.041 20.4414 148.957 20.3063 147.721 20.3063C146.485 20.3063 145.395 20.4414 144.449 20.7115C143.51 20.9816 142.724 21.3767 142.089 21.8968C141.454 22.41 140.974 23.0483 140.65 23.8114C140.326 24.5678 140.164 25.4323 140.164 26.4048C140.164 27.3909 140.326 28.2621 140.65 29.0185C140.974 29.7749 141.454 30.4131 142.089 30.9331C142.724 31.4464 143.51 31.8381 144.449 32.1083C145.395 32.3717 146.485 32.5034 147.721 32.5034C148.957 32.5034 150.041 32.3717 150.973 32.1083C151.912 31.8381 152.695 31.4464 153.323 30.9331C153.951 30.4131 154.424 29.7749 154.742 29.0185C155.066 28.2621 155.228 27.3909 155.228 26.4048Z\" fill=\"white\"/>\\n<path d=\"M64.9048 63.7836L64.9393 40.9616H72.9616C79.0129 40.9616 84.9604 44.4887 84.9604 52.1306C84.9604 59.2538 79.4624 63.7836 72.7887 63.7836H64.9048ZM68.1897 60.9135H72.7887C78.2175 60.9135 81.6754 57.1099 81.6754 52.2689C81.71 47.255 78.3559 43.7971 72.9962 43.7971H68.1897V60.9135Z\" fill=\"white\"/>\\n<path d=\"M96.5891 64.1294C90.1229 64.1294 84.7286 59.2883 84.7632 52.4763C84.7978 45.5606 90.0883 40.6159 96.6237 40.6159C103.297 40.6159 108.346 45.6298 108.311 52.4763C108.311 59.1846 103.159 64.1294 96.5891 64.1294ZM88.0482 52.4763C88.0827 57.4903 91.9901 61.2593 96.5891 61.2593C101.223 61.2593 104.992 57.5248 105.026 52.4763C105.061 47.0821 101.223 43.4859 96.6583 43.4859C92.0939 43.4859 88.0482 47.1166 88.0482 52.4763Z\" fill=\"white\"/>\\n<path d=\"M129.919 64.1294C123.487 64.1294 118.404 59.15 118.439 52.3726C118.439 45.7681 123.418 40.6159 129.988 40.6159C134.068 40.6159 137.526 42.4831 139.601 45.9064L138.218 46.7017C136.385 43.7971 133.342 42.1027 130.023 42.1027C124.87 42.1027 120.064 46.2522 120.099 52.3726C120.133 58.2856 124.732 62.6079 129.953 62.6079C133.342 62.6079 136.489 60.8444 138.287 57.836L139.705 58.6659C137.665 62.1238 134.068 64.1294 129.919 64.1294Z\" fill=\"white\"/>\\n<path d=\"M137.681 63.7836L147.778 40.9616H149.403L159.604 63.7836H157.841L154.21 55.623L143.041 55.5884L139.41 63.7836H137.681ZM143.663 54.2399H153.587L148.608 43.0018L143.663 54.2399Z\" fill=\"white\"/>\\n<path d=\"M167.799 64.1294C161.333 64.1294 156.146 59.15 156.181 52.5109C156.181 45.8372 161.229 40.6159 167.868 40.6159C174.577 40.6159 179.418 45.8718 179.418 52.5109C179.418 59.0809 174.3 64.1294 167.799 64.1294ZM157.875 52.5109C157.91 58.2164 162.578 62.6079 167.834 62.6079C173.124 62.6079 177.689 58.251 177.723 52.5109C177.758 46.3213 173.09 42.1373 167.903 42.1373C162.716 42.1373 157.841 46.3213 157.875 52.5109Z\" fill=\"white\"/>\\n<path d=\"M187.602 64.1294C183.383 64.0602 179.891 61.9509 179.787 57.836H181.343C181.412 61.6397 185.492 62.7116 187.705 62.7116C190.437 62.7116 193.584 61.6397 193.687 58.3547C193.826 55.2081 191.924 53.7212 187.152 52.8567C182.173 52.0268 179.476 50.0213 179.476 46.598C179.476 42.9672 182.518 40.6159 186.703 40.6159C190.887 40.6159 194.517 43.0018 194.586 46.9783H193.03C192.961 43.5205 189.538 42.0336 186.703 42.0336C183.936 42.0336 181.101 43.5205 181.101 46.598C181.066 49.0876 183.072 50.7128 187.29 51.439C192.892 52.4072 195.451 54.4819 195.313 58.3547C195.174 62.5387 191.578 64.1985 187.602 64.1294Z\" fill=\"white\"/>\\n<path d=\"M205.092 63.7836L215.189 40.9616H218.335L228.536 63.7836H225.113L221.793 56.3837L211.8 56.3492L208.515 63.7836H205.092ZM212.941 53.7903H220.652L216.779 45.1111L212.941 53.7903Z\" fill=\"white\"/>\\n<path d=\"M240.858 64.1294C234.392 64.1294 228.997 59.2883 229.032 52.4763C229.067 45.5606 234.357 40.6159 240.892 40.6159C247.566 40.6159 252.615 45.6298 252.58 52.4763C252.58 59.1846 247.428 64.1294 240.858 64.1294ZM232.317 52.4763C232.351 57.4903 236.259 61.2593 240.858 61.2593C245.491 61.2593 249.26 57.5248 249.295 52.4763C249.33 47.0821 245.491 43.4859 240.927 43.4859C236.363 43.4859 232.317 47.1166 232.317 52.4763Z\" fill=\"white\"/>\\n<path d=\"M265.128 64.1294C260.737 64.0602 257.002 61.6397 256.829 57.2136H259.838C259.976 60.464 263.261 61.536 265.232 61.536C267.583 61.536 270.177 60.6023 270.246 57.9052C270.349 55.2772 268.517 54.1361 264.644 53.4791C259.665 52.753 256.518 50.7474 256.518 46.8746C256.518 43.0018 259.976 40.6159 264.298 40.6159C268.655 40.6159 272.562 43.1401 272.666 47.497H269.658C269.52 44.4541 266.788 43.2093 264.298 43.2093C261.947 43.2093 259.665 44.4887 259.665 46.9438C259.63 48.9839 261.324 50.2979 264.955 50.8857C270.626 51.7848 273.531 53.8941 273.392 58.1127C273.219 62.435 269.277 64.1985 265.128 64.1294Z\" fill=\"white\"/>\\n<path d=\"M64.3152 87.9887V64.0256H71.1047V73.0299H77.0955V64.0256H83.885V87.9887H77.0955V78.8754H71.1047V87.9887H64.3152Z\" fill=\"white\"/>\\n<path d=\"M99.6107 88.3517C92.7849 88.3517 86.6852 83.5591 86.7578 76.0434C86.8668 68.2373 92.9301 63.6625 99.6107 63.6625C106.473 63.6625 112.246 68.4188 112.173 76.0434C112.101 83.3776 106.618 88.3517 99.6107 88.3517ZM93.5474 76.0434C93.5837 79.8557 96.0889 82.5062 99.5744 82.5062C103.06 82.5062 105.347 79.8921 105.384 76.0434C105.347 72.0859 103.06 69.5081 99.5744 69.5081C96.0889 69.5081 93.5837 72.1222 93.5474 76.0434Z\" fill=\"white\"/>\\n<path d=\"M115.015 87.9887V64.0256H120.788L128.958 76.5154V64.0256H135.747V87.9887H130.083L121.805 75.9708V87.9887H115.015Z\" fill=\"white\"/>\\n<path d=\"M151.446 88.3517C144.62 88.3517 138.52 83.5591 138.593 76.0434C138.702 68.2373 144.765 63.6625 151.446 63.6625C158.308 63.6625 164.081 68.4188 164.008 76.0434C163.935 83.3776 158.453 88.3517 151.446 88.3517ZM145.382 76.0434C145.418 79.8557 147.924 82.5062 151.409 82.5062C154.895 82.5062 157.182 79.8921 157.218 76.0434C157.182 72.0859 154.895 69.5081 151.409 69.5081C147.924 69.5081 145.418 72.1222 145.382 76.0434Z\" fill=\"white\"/>\\n<path d=\"M166.85 87.9887V64.0256H177.234C185.258 64.0256 187.291 68.2736 187.291 72.1585C187.291 75.8619 186.021 78.9481 182.281 79.9284L181.773 80.001L186.347 87.9887H178.795L174.438 80.001H173.64V87.9887H166.85ZM173.64 74.4459H177.234C179.267 74.4459 180.502 73.9013 180.502 72.1585C180.502 70.4521 179.34 69.8348 177.198 69.8348H173.64V74.4459Z\" fill=\"white\"/>\\n<path d=\"M190.108 87.9887L200.746 64.0256H207.209L217.92 87.9887H210.84L208.044 81.8164H199.984L197.225 87.9887H190.108ZM202.308 76.5518H205.721L204.014 72.8121L202.308 76.5518Z\" fill=\"white\"/>\\n<path d=\"M220.777 87.9887V64.0256H231.161C239.185 64.0256 241.218 68.2736 241.218 72.1585C241.218 75.8619 239.947 78.9481 236.208 79.9284L235.699 80.001L240.274 87.9887H232.722L228.365 80.001H227.566V87.9887H220.777ZM227.566 74.4459H231.161C233.194 74.4459 234.429 73.9013 234.429 72.1585C234.429 70.4521 233.267 69.8348 231.125 69.8348H227.566V74.4459Z\" fill=\"white\"/>\\n<path d=\"M244.035 87.9887V64.0256H250.498V87.9887H244.035Z\" fill=\"white\"/>\\n<path d=\"M266.212 88.3517C259.386 88.3517 253.286 83.5591 253.359 76.0434C253.468 68.2373 259.531 63.6625 266.212 63.6625C273.074 63.6625 278.847 68.4188 278.774 76.0434C278.701 83.3776 273.219 88.3517 266.212 88.3517ZM260.148 76.0434C260.185 79.8557 262.69 82.5062 266.175 82.5062C269.661 82.5062 271.948 79.8921 271.985 76.0434C271.948 72.0859 269.661 69.5081 266.175 69.5081C262.69 69.5081 260.185 72.1222 260.148 76.0434Z\" fill=\"white\"/>\\n<path d=\"M291.674 88.3517C286.736 88.2428 282.27 85.084 281.943 79.7831H288.115C288.406 82.0705 290.221 83.1234 291.782 83.1597C293.453 83.1961 294.977 82.4699 295.014 80.8724C295.014 79.1659 293.235 78.7665 291.093 78.5124C285.828 77.9678 281.616 75.7893 281.616 70.8515C281.653 66.2767 286.118 63.6625 290.911 63.6625C295.849 63.6625 300.569 66.6398 300.787 71.9407H294.578C294.288 69.6533 292.835 68.8545 290.911 68.8545C289.314 68.8545 288.115 69.7985 288.115 70.9967C288.079 72.2311 289.205 72.9573 291.819 73.3204C297.918 74.1191 301.658 76.3339 301.477 81.5259C301.295 86.3548 296.43 88.4607 291.674 88.3517Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_31_12\" x1=\"-18.486\" y1=\"51.2859\" x2=\"78.4608\" y2=\"23.0207\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_31_12\" x1=\"65.6069\" y1=\"24.0507\" x2=\"94.3329\" y2=\"15.6536\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_31_12\" x1=\"20.1706\" y1=\"54.7543\" x2=\"60.3889\" y2=\"43.0681\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_31_12\" x1=\"16.2762\" y1=\"49.0566\" x2=\"56.5842\" y2=\"37.2881\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_31_12\" x1=\"45.5914\" y1=\"51.8646\" x2=\"266.116\" y2=\"51.8646\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OluqJ.framer-xjlenz, .framer-OluqJ .framer-xjlenz { display: block; }\",\".framer-OluqJ.framer-qyccux { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 40px 20px 40px; position: relative; width: 1000px; }\",\".framer-OluqJ .framer-jzra62 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OluqJ .framer-6q8nh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OluqJ .framer-16vtjzx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OluqJ .framer-ivm2t2 { flex: none; height: 77px; position: relative; width: 238px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OluqJ.framer-qyccux, .framer-OluqJ .framer-jzra62, .framer-OluqJ .framer-6q8nh1, .framer-OluqJ .framer-16vtjzx { gap: 0px; } .framer-OluqJ.framer-qyccux > *, .framer-OluqJ .framer-jzra62 > *, .framer-OluqJ .framer-16vtjzx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OluqJ.framer-qyccux > :first-child, .framer-OluqJ .framer-jzra62 > :first-child, .framer-OluqJ .framer-6q8nh1 > :first-child, .framer-OluqJ .framer-16vtjzx > :first-child { margin-left: 0px; } .framer-OluqJ.framer-qyccux > :last-child, .framer-OluqJ .framer-jzra62 > :last-child, .framer-OluqJ .framer-6q8nh1 > :last-child, .framer-OluqJ .framer-16vtjzx > :last-child { margin-right: 0px; } .framer-OluqJ .framer-6q8nh1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-OluqJ.framer-v-pe73l1.framer-qyccux { overflow: hidden; overflow-x: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-OluqJ.framer-v-ngb7ff.framer-qyccux { justify-content: center; padding: 20px 24px 20px 24px; width: 390px; }\",\".framer-OluqJ.framer-v-ngb7ff .framer-jzra62 { flex-direction: column; gap: 42px; justify-content: flex-start; }\",\".framer-OluqJ.framer-v-ngb7ff .framer-6q8nh1 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OluqJ.framer-v-ngb7ff .framer-jzra62 { gap: 0px; } .framer-OluqJ.framer-v-ngb7ff .framer-jzra62 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-OluqJ.framer-v-ngb7ff .framer-jzra62 > :first-child { margin-top: 0px; } .framer-OluqJ.framer-v-ngb7ff .framer-jzra62 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 117\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a9mquF4fo\":{\"layout\":[\"fixed\",\"auto\"]},\"CnDBMQhHw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mREhjIwVN\":\"visibleSectionMore\",\"mDwzIzryJ\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIXqppH7zP=withCSS(Component,css,\"framer-OluqJ\");export default FramerIXqppH7zP;FramerIXqppH7zP.displayName=\"Navigtion/Nav\";FramerIXqppH7zP.defaultProps={height:117,width:1e3};addPropertyControls(FramerIXqppH7zP,{variant:{options:[\"znhunZCI_\",\"a9mquF4fo\",\"CnDBMQhHw\"],optionTitles:[\"Desktop Up\",\"Desktop Down\",\"Phone Off\"],title:\"Variant\",type:ControlType.Enum},mREhjIwVN:{defaultValue:true,title:\"Visible Section More\",type:ControlType.Boolean},mDwzIzryJ:{defaultValue:\"100px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(FramerIXqppH7zP,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIXqppH7zP\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"mREhjIwVN\\\":\\\"visibleSectionMore\\\",\\\"mDwzIzryJ\\\":\\\"radius\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a9mquF4fo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CnDBMQhHw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"117\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IXqppH7zP.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/wQjbveU6wiwI4CThlEww/Vsy9Hcsrm2ZUidZeQbGR/kf83_TXtq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jAPCxHcfUKsvPT70BPhz/uULPbQkovsdaPo2UzjoA/X0w_fT1vo.js\";const enabledGestures={KgXa2iDSP:{hover:true}};const serializationHash=\"framer-WzwPB\";const variantClassNames={KgXa2iDSP:\"framer-v-19xfd9q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,click3,height,hover,id,image,text,title,width,...props})=>{return{...props,cX6xJCJqq:click3??props.cX6xJCJqq,GuE7eamxx:click??props.GuE7eamxx,KXD2GwAEI:title??props.KXD2GwAEI??\"CUSTOM DESIGN\",pPrPQgds2:image??props.pPrPQgds2,vfWpbuOx_:text??props.vfWpbuOx_??\"Unique and tailored designs that reflect your brand\u2019s personality and values.\",xh0wxBs_T:hover??props.xh0wxBs_T};};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,cX6xJCJqq,KXD2GwAEI,vfWpbuOx_,xh0wxBs_T,GuE7eamxx,pPrPQgds2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"KgXa2iDSP\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapq2ffjr=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(cX6xJCJqq){const res=await cX6xJCJqq(...args);if(res===false)return false;}if(GuE7eamxx){const res=await GuE7eamxx(...args);if(res===false)return false;}});const onMouseEnter15oh3b4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(xh0wxBs_T){const res=await xh0wxBs_T(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19xfd9q\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Features \",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KgXa2iDSP\",onMouseEnter:onMouseEnter15oh3b4,onTap:onTapq2ffjr,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bbbf66bc-6d3e-442c-9402-49fd6e26aac7, rgb(22, 22, 22))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:1,...style},variants:{\"KgXa2iDSP-hover\":{opacity:.85}},...addPropertyOverrides({\"KgXa2iDSP-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+0),sizes:\"80px\",...toResponsiveImage(pPrPQgds2)},className:\"framer-12uduo6\",layoutDependency:layoutDependency,layoutId:\"RDQcVXyEd\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3396wc\",\"data-framer-name\":\"Section Features \",layoutDependency:layoutDependency,layoutId:\"BxYL2hJ2r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-111sh3g\",\"data-styles-preset\":\"kf83_TXtq\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255)))\"},children:\"In-Depth Onboarding\"})}),className:\"framer-11oet88\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e5JpX8Nur\",style:{\"--extracted-1eung3n\":\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\"},text:KXD2GwAEI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122)))\"},children:\"One discovery call and a sleek onboarding form is all it takes to cover everything we need to know.\"})}),className:\"framer-q8g6qm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HbpsUOtX4\",style:{\"--extracted-r6o4lv\":\"var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, rgb(122, 122, 122))\"},text:vfWpbuOx_,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q0zz2n\",\"data-framer-name\":\"Section Icon\",layoutDependency:layoutDependency,layoutId:\"OOxZnLNLi\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WzwPB.framer-ul4d9x, .framer-WzwPB .framer-ul4d9x { display: block; }\",\".framer-WzwPB.framer-19xfd9q { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 22px 15px 22px; position: relative; width: 395px; }\",\".framer-WzwPB .framer-12uduo6 { flex: none; height: 80px; position: relative; width: 80px; }\",\".framer-WzwPB .framer-3396wc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WzwPB .framer-11oet88, .framer-WzwPB .framer-q8g6qm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WzwPB .framer-q0zz2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; min-height: 65px; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WzwPB.framer-19xfd9q, .framer-WzwPB .framer-3396wc, .framer-WzwPB .framer-q0zz2n { gap: 0px; } .framer-WzwPB.framer-19xfd9q > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-WzwPB.framer-19xfd9q > :first-child, .framer-WzwPB .framer-3396wc > :first-child { margin-top: 0px; } .framer-WzwPB.framer-19xfd9q > :last-child, .framer-WzwPB .framer-3396wc > :last-child { margin-bottom: 0px; } .framer-WzwPB .framer-3396wc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WzwPB .framer-q0zz2n > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WzwPB .framer-q0zz2n > :first-child { margin-left: 0px; } .framer-WzwPB .framer-q0zz2n > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-WzwPB[data-border=\"true\"]::after, .framer-WzwPB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 324\n * @framerIntrinsicWidth 395\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ucoG5T44G\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cX6xJCJqq\":\"click3\",\"KXD2GwAEI\":\"title\",\"vfWpbuOx_\":\"text\",\"xh0wxBs_T\":\"hover\",\"GuE7eamxx\":\"click\",\"pPrPQgds2\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerka7lqP9Eq=withCSS(Component,css,\"framer-WzwPB\");export default Framerka7lqP9Eq;Framerka7lqP9Eq.displayName=\"Component/Features Card\";Framerka7lqP9Eq.defaultProps={height:324,width:395};addPropertyControls(Framerka7lqP9Eq,{cX6xJCJqq:{title:\"Click 3\",type:ControlType.EventHandler},KXD2GwAEI:{defaultValue:\"CUSTOM DESIGN\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},vfWpbuOx_:{defaultValue:\"Unique and tailored designs that reflect your brand\u2019s personality and values.\",displayTextArea:false,title:\"Text\",type:ControlType.String},xh0wxBs_T:{title:\"Hover\",type:ControlType.EventHandler},GuE7eamxx:{title:\"Click\",type:ControlType.EventHandler},pPrPQgds2:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(Framerka7lqP9Eq,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerka7lqP9Eq\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"324\",\"framerIntrinsicWidth\":\"395\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ucoG5T44G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"cX6xJCJqq\\\":\\\"click3\\\",\\\"KXD2GwAEI\\\":\\\"title\\\",\\\"vfWpbuOx_\\\":\\\"text\\\",\\\"xh0wxBs_T\\\":\\\"hover\\\",\\\"GuE7eamxx\\\":\\\"click\\\",\\\"pPrPQgds2\\\":\\\"image\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ka7lqP9Eq.map", "// Generated by Framer (1d068b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.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\"}]}];export const css=['.framer-zzMiF .framer-styles-preset-1mbon3g:not(.rich-text-wrapper), .framer-zzMiF .framer-styles-preset-1mbon3g.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; --framer-text-wrap: balance; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-zzMiF .framer-styles-preset-1mbon3g:not(.rich-text-wrapper), .framer-zzMiF .framer-styles-preset-1mbon3g.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; --framer-text-wrap: balance; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-zzMiF .framer-styles-preset-1mbon3g:not(.rich-text-wrapper), .framer-zzMiF .framer-styles-preset-1mbon3g.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-zzMiF .framer-styles-preset-1mbon3g:not(.rich-text-wrapper), .framer-zzMiF .framer-styles-preset-1mbon3g.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4083373d-ce77-45f7-858d-8433fdfee663, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; --framer-text-wrap: balance; } }'];export const className=\"framer-zzMiF\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d068b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.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\"}]}];export const css=['.framer-aajsW .framer-styles-preset-8np8ql:not(.rich-text-wrapper), .framer-aajsW .framer-styles-preset-8np8ql.rich-text-wrapper h5 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-aajsW .framer-styles-preset-8np8ql:not(.rich-text-wrapper), .framer-aajsW .framer-styles-preset-8np8ql.rich-text-wrapper h5 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-aajsW .framer-styles-preset-8np8ql:not(.rich-text-wrapper), .framer-aajsW .framer-styles-preset-8np8ql.rich-text-wrapper h5 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-aajsW .framer-styles-preset-8np8ql:not(.rich-text-wrapper), .framer-aajsW .framer-styles-preset-8np8ql.rich-text-wrapper h5 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-aajsW\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ba0a5a9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dRPJDMRjkENtCHCdQiTT/ITaIInUvCRYX65ev7Ney/yybUyyz_g.js\";const PhosphorFonts=getFonts(Phosphor);const MotionSectionWithFX=withFX(motion.section);const cycleOrder=[\"TtzJe9706\",\"YxFJkTTTc\"];const serializationHash=\"framer-3LkTs\";const variantClassNames={TtzJe9706:\"framer-v-u5k0yf\",YxFJkTTTc:\"framer-v-vwhnej\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:30,delay:.5,mass:1,stiffness:150,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Tags Price\":\"YxFJkTTTc\",\"Tags Section\":\"TtzJe9706\"};const getProps=({background,border,colorText,height,id,title,width,...props})=>{return{...props,b1IOr_fPo:colorText??props.b1IOr_fPo??\"var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(12, 12, 12))\",EdKNJOvfw:background??props.EdKNJOvfw??\"rgba(13, 13, 13, 0)\",EkdcjBesJ:border??props.EkdcjBesJ??{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},IIlG6wlDc:title??props.IIlG6wlDc??\"About Us\",variant:humanReadableVariantMap[props.variant]??props.variant??\"TtzJe9706\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EkdcjBesJ,b1IOr_fPo,IIlG6wlDc,EdKNJOvfw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TtzJe9706\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-u5k0yf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Tags Section\",layoutDependency:layoutDependency,layoutId:\"TtzJe9706\",ref:ref??ref1,style:{\"--border-bottom-width\":`${EkdcjBesJ.borderBottomWidth??EkdcjBesJ.borderWidth}px`,\"--border-color\":EkdcjBesJ.borderColor,\"--border-left-width\":`${EkdcjBesJ.borderLeftWidth??EkdcjBesJ.borderWidth}px`,\"--border-right-width\":`${EkdcjBesJ.borderRightWidth??EkdcjBesJ.borderWidth}px`,\"--border-style\":EkdcjBesJ.borderStyle,\"--border-top-width\":`${EkdcjBesJ.borderTopWidth??EkdcjBesJ.borderWidth}px`,backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{YxFJkTTTc:{backgroundColor:EdKNJOvfw}},...addPropertyOverrides({YxFJkTTTc:{\"data-framer-name\":\"Tags Price\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3jgbxs-container\",layoutDependency:layoutDependency,layoutId:\"O4M5j_cBr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:b1IOr_fPo,height:\"100%\",iconSearch:\"info\",iconSelection:\"House\",id:\"O4M5j_cBr\",layoutId:\"O4M5j_cBr\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-8np8ql\",\"data-styles-preset\":\"yybUyyz_g\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-b1IOr_fPo-sJMGTD9OA))\"},children:\"About Us\"})}),className:\"framer-a9672x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UyRihlzFv\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-b1IOr_fPo-sJMGTD9OA)\",\"--variable-reference-b1IOr_fPo-sJMGTD9OA\":b1IOr_fPo},text:IIlG6wlDc,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3LkTs.framer-1tdkqcj, .framer-3LkTs .framer-1tdkqcj { display: block; }\",\".framer-3LkTs.framer-u5k0yf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 10px 18px 10px 18px; position: relative; width: min-content; }\",\".framer-3LkTs .framer-3jgbxs-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-3LkTs .framer-a9672x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3LkTs.framer-u5k0yf { gap: 0px; } .framer-3LkTs.framer-u5k0yf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3LkTs.framer-u5k0yf > :first-child { margin-left: 0px; } .framer-3LkTs.framer-u5k0yf > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-3LkTs[data-border=\"true\"]::after, .framer-3LkTs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"YxFJkTTTc\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"EkdcjBesJ\":\"border\",\"b1IOr_fPo\":\"colorText\",\"IIlG6wlDc\":\"title\",\"EdKNJOvfw\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersJMGTD9OA=withCSS(Component,css,\"framer-3LkTs\");export default FramersJMGTD9OA;FramersJMGTD9OA.displayName=\"Button/Tags\";FramersJMGTD9OA.defaultProps={height:43,width:128};addPropertyControls(FramersJMGTD9OA,{variant:{options:[\"TtzJe9706\",\"YxFJkTTTc\"],optionTitles:[\"Tags Section\",\"Tags Price\"],title:\"Variant\",type:ControlType.Enum},EkdcjBesJ:{defaultValue:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},b1IOr_fPo:{defaultValue:\"var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(12, 12, 12))\",title:\"Color Text\",type:ControlType.Color},IIlG6wlDc:{defaultValue:\"About Us\",displayTextArea:false,title:\"Title\",type:ControlType.String},EdKNJOvfw:{defaultValue:\"rgba(13, 13, 13, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramersJMGTD9OA,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersJMGTD9OA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YxFJkTTTc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"43\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"128\",\"framerVariables\":\"{\\\"EkdcjBesJ\\\":\\\"border\\\",\\\"b1IOr_fPo\\\":\\\"colorText\\\",\\\"IIlG6wlDc\\\":\\\"title\\\",\\\"EdKNJOvfw\\\":\\\"background\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qs5xEV0U42kVzmXLxO8B/c6iWTojk97XNxdeg1upv/ad0oAKqkr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wQjbveU6wiwI4CThlEww/Vsy9Hcsrm2ZUidZeQbGR/kf83_TXtq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jAPCxHcfUKsvPT70BPhz/uULPbQkovsdaPo2UzjoA/X0w_fT1vo.js\";import ButtonButton from\"https://framerusercontent.com/modules/kxA3csvbGuUmztR9JzEj/JvrS1ilQQE07dcgyScQO/lxAble9qC.js\";import ButtonTags from\"https://framerusercontent.com/modules/hOa3L4i1fuN5fJhVOJe7/dv80yFgUaLpdp8Mbj7pD/sJMGTD9OA.js\";const ButtonTagsFonts=getFonts(ButtonTags);const PhosphorFonts=getFonts(Phosphor);const ButtonButtonFonts=getFonts(ButtonButton);const cycleOrder=[\"ZkgL3uwkS\",\"zClg_WD5E\",\"K66AjjHNd\"];const serializationHash=\"framer-aFOPS\";const variantClassNames={K66AjjHNd:\"framer-v-1cmgzla\",zClg_WD5E:\"framer-v-15j0c74\",ZkgL3uwkS:\"framer-v-121wtq4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Basic:\"ZkgL3uwkS\",Premium:\"K66AjjHNd\",Standard:\"zClg_WD5E\"};const getProps=({height,id,overlay,padding,width,...props})=>{return{...props,gYyKj_GH0:overlay??props.gYyKj_GH0,Ktar7jwGZ:padding??props.Ktar7jwGZ??\"42px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ZkgL3uwkS\"};};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,Ktar7jwGZ,gYyKj_GH0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZkgL3uwkS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const bd0c6HjBp9zxqno=activeVariantCallback(async(...args)=>{if(gYyKj_GH0){const res=await gYyKj_GH0(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"zClg_WD5E\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-121wtq4\",className,classNames),\"data-framer-name\":\"Basic\",layoutDependency:layoutDependency,layoutId:\"ZkgL3uwkS\",ref:refBinding,style:{\"--fl9yfx\":numberToPixelString(Ktar7jwGZ),borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",...style},...addPropertyOverrides({K66AjjHNd:{\"data-framer-name\":\"Premium\"},zClg_WD5E:{\"data-framer-name\":\"Standard\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({zClg_WD5E:{height:43,y:(componentViewport?.y||0)+-18}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zfgb77-container\",layoutDependency:layoutDependency,layoutId:\"sESB40FfZ-container\",nodeId:\"sESB40FfZ\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(13, 13, 13))\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"sESB40FfZ\",IIlG6wlDc:\"PRIMEIRO LOTE 01\",layoutId:\"sESB40FfZ\",variant:\"YxFJkTTTc\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzil4u\",\"data-framer-name\":\"Section Price Card Info\",layoutDependency:layoutDependency,layoutId:\"lIcsOBZsX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-111sh3g\",\"data-styles-preset\":\"kf83_TXtq\",children:\"Basic Package\"})}),className:\"framer-1wr4i2g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kda3uO0nV\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-111sh3g\",\"data-styles-preset\":\"kf83_TXtq\",children:\"Premium Package\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-111sh3g\",\"data-styles-preset\":\"kf83_TXtq\",children:\"AUL\\xc3O: DO CAOS AOS HONOR\\xc1RIOS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\" Logo design, branding basics & social media.\"})}),className:\"framer-1m72eb5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"io9nF5fuZ\",variants:{zClg_WD5E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Advanced web dev, full branding & ongoing support.\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Vagas limitadas \u2013 Garanta a sua agora!\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17z6jzj\",\"data-border\":true,\"data-framer-name\":\"Section Price Card Many\",layoutDependency:layoutDependency,layoutId:\"v7ueVRLT2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mbon3g\",\"data-styles-preset\":\"ad0oAKqkr\",children:\"$500\"})}),className:\"framer-ac3w06\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NT2evYGtq\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mbon3g\",\"data-styles-preset\":\"ad0oAKqkr\",children:\"$3000\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mbon3g\",\"data-styles-preset\":\"ad0oAKqkr\",children:\"R$ 29.90\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u1ukuh\",\"data-framer-name\":\"Section Price Card More\",layoutDependency:layoutDependency,layoutId:\"EGrsxvnh8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gpqet8\",layoutDependency:layoutDependency,layoutId:\"aqVQhVu9O\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-33oqop-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fIn58d9k2-container\",nodeId:\"fIn58d9k2\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"check-circle\",iconSelection:\"House\",id:\"fIn58d9k2\",layoutId:\"fIn58d9k2\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Logo design\"})}),className:\"framer-15ps58h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ADapyN1IB\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Advanced web development\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"AUL\\xc3O DE 2H NO ZOOM.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pl8c1v\",layoutDependency:layoutDependency,layoutId:\"dM0SGROEO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kkcfog-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"b_5TJCYBj-container\",nodeId:\"b_5TJCYBj\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"check-circle\",iconSelection:\"House\",id:\"b_5TJCYBj\",layoutId:\"b_5TJCYBj\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Basic branding\"})}),className:\"framer-ekyxlx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PmlxWFxIO\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Full-scale branding\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"MATERIAL COMPLEMENTAR.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jsqz10\",layoutDependency:layoutDependency,layoutId:\"LfKperG_o\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bdn2n1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FY1JVy02J-container\",nodeId:\"FY1JVy02J\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"check-circle\",iconSelection:\"House\",id:\"FY1JVy02J\",layoutId:\"FY1JVy02J\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Social media templates\"})}),className:\"framer-13bts98\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OrmTHoyz4\",variants:{zClg_WD5E:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Ongoing support\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"GRUPO DE WHATSAPP EXCLUSIVO.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a73jo\",layoutDependency:layoutDependency,layoutId:\"wMX60CNiW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-44c2xm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BFQy7VL4G-container\",nodeId:\"BFQy7VL4G\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"check-circle\",iconSelection:\"House\",id:\"BFQy7VL4G\",layoutId:\"BFQy7VL4G\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Business card design\"})}),className:\"framer-96kt45\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"se588EP9J\",variants:{zClg_WD5E:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Custom e-commerce solutions\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"AUMENTO NO FATURAMENTO.\"})})}),fonts:[\"Inter-Light\",\"Inter\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t28d5u\",layoutDependency:layoutDependency,layoutId:\"MQAZ6dvhd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j0p8i5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OUGZcDXXU-container\",nodeId:\"OUGZcDXXU\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"check-circle\",iconSelection:\"House\",id:\"OUGZcDXXU\",layoutId:\"OUGZcDXXU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Letterhead design\"})}),className:\"framer-12n70tx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sd5pCRs3o\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Advanced SEO strategies\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"EXERC\\xcdCIOS PR\\xc1TICOS.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jvjqyr\",layoutDependency:layoutDependency,layoutId:\"zDB0knQ5V\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pbkp5n-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qDQTr8ipV-container\",nodeId:\"qDQTr8ipV\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",height:\"100%\",iconSearch:\"check-circle\",iconSelection:\"House\",id:\"qDQTr8ipV\",layoutId:\"qDQTr8ipV\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Basic website setup (up to 5 pages)\"})}),className:\"framer-i6s5mi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iZmxvSVfJ\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K66AjjHNd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"Content creation (blogs, videos)\"})})},zClg_WD5E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"CAPTA\\xc7\\xc3O DE CLIENTES QUALIFICADOS.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:`calc(${componentViewport?.width||\"100vw\"} - ${Ktar7jwGZ*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5tdroj-container\",layoutDependency:layoutDependency,layoutId:\"hZvjnNSyL-container\",nodeId:\"hZvjnNSyL\",rendersWithMotion:true,scopeId:\"Pu1fEhfuY\",children:/*#__PURE__*/_jsx(ButtonButton,{bd0c6HjBp:bd0c6HjBp9zxqno,fL2aGAQX0:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",id:\"hZvjnNSyL\",iSLoKcHsk:\"Let's get started!\",layoutId:\"hZvjnNSyL\",od0hWe3DS:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",r3k4GyH6J:\"var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",style:{width:\"100%\"},variant:\"Xx3jQSvyj\",width:\"100%\",...addPropertyOverrides({zClg_WD5E:{fL2aGAQX0:\"rgb(255, 0, 0)\",iSLoKcHsk:\"QUERO PARTICIPAR DO AUL\\xc3O\",od0hWe3DS:\"\",r3k4GyH6J:\"rgb(255, 255, 255)\",uy3g1kry7:\"https://pay.hotmart.com/E98498921R?checkoutMode=10\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aFOPS.framer-1pduslc, .framer-aFOPS .framer-1pduslc { display: block; }\",\".framer-aFOPS.framer-121wtq4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--fl9yfx); position: relative; width: 537px; }\",\".framer-aFOPS .framer-zfgb77-container { flex: none; height: auto; left: 50%; position: absolute; top: -18px; width: auto; z-index: 1; }\",\".framer-aFOPS .framer-wzil4u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aFOPS .framer-1wr4i2g, .framer-aFOPS .framer-1m72eb5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aFOPS .framer-17z6jzj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-aFOPS .framer-ac3w06, .framer-aFOPS .framer-15ps58h, .framer-aFOPS .framer-ekyxlx, .framer-aFOPS .framer-13bts98, .framer-aFOPS .framer-96kt45, .framer-aFOPS .framer-12n70tx, .framer-aFOPS .framer-i6s5mi { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-aFOPS .framer-1u1ukuh { 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: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-aFOPS .framer-1gpqet8, .framer-aFOPS .framer-pl8c1v, .framer-aFOPS .framer-jsqz10, .framer-aFOPS .framer-1a73jo, .framer-aFOPS .framer-t28d5u, .framer-aFOPS .framer-jvjqyr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aFOPS .framer-33oqop-container, .framer-aFOPS .framer-kkcfog-container, .framer-aFOPS .framer-1bdn2n1-container, .framer-aFOPS .framer-44c2xm-container, .framer-aFOPS .framer-j0p8i5-container, .framer-aFOPS .framer-1pbkp5n-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-aFOPS .framer-5tdroj-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aFOPS.framer-121wtq4, .framer-aFOPS .framer-wzil4u, .framer-aFOPS .framer-17z6jzj, .framer-aFOPS .framer-1u1ukuh, .framer-aFOPS .framer-1gpqet8, .framer-aFOPS .framer-pl8c1v, .framer-aFOPS .framer-jsqz10, .framer-aFOPS .framer-1a73jo, .framer-aFOPS .framer-t28d5u, .framer-aFOPS .framer-jvjqyr { gap: 0px; } .framer-aFOPS.framer-121wtq4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aFOPS.framer-121wtq4 > :first-child, .framer-aFOPS .framer-wzil4u > :first-child, .framer-aFOPS .framer-1u1ukuh > :first-child { margin-top: 0px; } .framer-aFOPS.framer-121wtq4 > :last-child, .framer-aFOPS .framer-wzil4u > :last-child, .framer-aFOPS .framer-1u1ukuh > :last-child { margin-bottom: 0px; } .framer-aFOPS .framer-wzil4u > *, .framer-aFOPS .framer-1u1ukuh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aFOPS .framer-17z6jzj > *, .framer-aFOPS .framer-1gpqet8 > *, .framer-aFOPS .framer-pl8c1v > *, .framer-aFOPS .framer-jsqz10 > *, .framer-aFOPS .framer-1a73jo > *, .framer-aFOPS .framer-t28d5u > *, .framer-aFOPS .framer-jvjqyr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aFOPS .framer-17z6jzj > :first-child, .framer-aFOPS .framer-1gpqet8 > :first-child, .framer-aFOPS .framer-pl8c1v > :first-child, .framer-aFOPS .framer-jsqz10 > :first-child, .framer-aFOPS .framer-1a73jo > :first-child, .framer-aFOPS .framer-t28d5u > :first-child, .framer-aFOPS .framer-jvjqyr > :first-child { margin-left: 0px; } .framer-aFOPS .framer-17z6jzj > :last-child, .framer-aFOPS .framer-1gpqet8 > :last-child, .framer-aFOPS .framer-pl8c1v > :last-child, .framer-aFOPS .framer-jsqz10 > :last-child, .framer-aFOPS .framer-1a73jo > :last-child, .framer-aFOPS .framer-t28d5u > :last-child, .framer-aFOPS .framer-jvjqyr > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-aFOPS[data-border=\"true\"]::after, .framer-aFOPS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 583\n * @framerIntrinsicWidth 537\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zClg_WD5E\":{\"layout\":[\"fixed\",\"auto\"]},\"K66AjjHNd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Ktar7jwGZ\":\"padding\",\"gYyKj_GH0\":\"overlay\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPu1fEhfuY=withCSS(Component,css,\"framer-aFOPS\");export default FramerPu1fEhfuY;FramerPu1fEhfuY.displayName=\"Component/Price Card\";FramerPu1fEhfuY.defaultProps={height:583,width:537};addPropertyControls(FramerPu1fEhfuY,{variant:{options:[\"ZkgL3uwkS\",\"zClg_WD5E\",\"K66AjjHNd\"],optionTitles:[\"Basic\",\"Standard\",\"Premium\"],title:\"Variant\",type:ControlType.Enum},Ktar7jwGZ:{defaultValue:\"42px\",title:\"Padding\",type:ControlType.Padding},gYyKj_GH0:{title:\"Overlay\",type:ControlType.EventHandler}});addFonts(FramerPu1fEhfuY,[{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:\"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\"}]},...ButtonTagsFonts,...PhosphorFonts,...ButtonButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPu1fEhfuY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"583\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zClg_WD5E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K66AjjHNd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"537\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Ktar7jwGZ\\\":\\\"padding\\\",\\\"gYyKj_GH0\\\":\\\"overlay\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ba0a5a9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-pw9AA .framer-styles-preset-1hs1q3r:not(.rich-text-wrapper), .framer-pw9AA .framer-styles-preset-1hs1q3r.rich-text-wrapper a { --framer-link-current-text-color: var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, #7a7a7a) /* {\"name\":\"Light-250\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, #7a7a7a) /* {\"name\":\"Light-250\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-6c207b67-f80a-4080-9bbe-fe3e4d4cd5a0, #7a7a7a); --framer-link-text-decoration: none; }'];export const className=\"framer-pw9AA\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/A0E9dKHWf0dElUIDDjpN/aeo8kr2VI1i5nHcKupFr/donvzhrpH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jAPCxHcfUKsvPT70BPhz/uULPbQkovsdaPo2UzjoA/X0w_fT1vo.js\";const cycleOrder=[\"d37vIqjrs\",\"L6uOM0XGL\",\"VVnpNM_tl\"];const serializationHash=\"framer-jef2O\";const variantClassNames={d37vIqjrs:\"framer-v-tolc98\",L6uOM0XGL:\"framer-v-qkcrhd\",VVnpNM_tl:\"framer-v-1cec6gl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"d37vIqjrs\",Mobile:\"VVnpNM_tl\",Tablet:\"L6uOM0XGL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"d37vIqjrs\"};};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:\"d37vIqjrs\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tolc98\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"d37vIqjrs\",ref:refBinding,style:{backgroundColor:\"var(--token-bbbf66bc-6d3e-442c-9402-49fd6e26aac7, rgb(22, 22, 22))\",borderTopLeftRadius:50,borderTopRightRadius:50,...style},...addPropertyOverrides({L6uOM0XGL:{\"data-framer-name\":\"Tablet\"},VVnpNM_tl:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1eciwmd\",\"data-framer-name\":\"The section of Footer\",layoutDependency:layoutDependency,layoutId:\"wFv_U1lp_\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hssmwo\",\"data-framer-name\":\"Header Info Footer\",layoutDependency:layoutDependency,layoutId:\"mfAGt0k2Q\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c0erug\",\"data-framer-name\":\"Section Logo/Page\",layoutDependency:layoutDependency,layoutId:\"OK4AtJgOW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jmk1go\",\"data-framer-name\":\"Group 27\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:302,layoutDependency:layoutDependency,layoutId:\"mzxqW6vPn\",svg:'<svg width=\"302\" height=\"98\" viewBox=\"0 0 302 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M78.1684 36.3488C77.3452 34.4721 76.2174 32.6859 74.9497 30.875C73.682 29.0641 72.365 27.5331 70.9079 25.9774C58.2969 13.2191 37.924 10.9232 22.7538 21.6658C5.79745 33.5361 1.67429 56.9053 13.5199 74.0016C25.3902 90.958 48.7594 95.0812 65.8558 83.2355C81.026 72.493 85.9806 52.5892 78.1684 36.3488ZM60.7849 75.992C47.7796 85.0965 29.7279 81.9115 20.6235 68.9061C11.5191 55.9007 14.704 37.8491 27.7094 28.7447C40.7148 19.6402 58.7664 22.8252 67.8709 35.8306C77.1152 48.8606 73.9303 66.9123 60.7849 75.992Z\" fill=\"url(#paint0_linear_31_12)\"/>\\n<path d=\"M94.3017 25.0546L80.1439 34.9657C79.3207 33.089 78.1929 31.3028 76.9252 29.4919C75.6575 27.681 74.3404 26.15 72.8834 24.5943L87.0412 14.6832C88.6874 13.5307 90.7865 13.9011 91.9389 15.5473L95.281 20.3215C96.3182 21.8031 95.9232 24.0421 94.3017 25.0546Z\" fill=\"url(#paint1_linear_31_12)\"/>\\n<path d=\"M52.9485 64.7975C43.8941 71.136 33.078 71.1035 28.6986 64.8477C29.423 64.8312 41.0211 63.7031 44.9965 53.4384C48.4452 44.5236 61.2944 42.029 61.2944 42.029C65.5338 48.2601 61.8382 58.5742 52.9485 64.7975Z\" fill=\"url(#paint2_linear_31_12)\"/>\\n<path d=\"M59.9361 39.9135C59.9361 39.9135 47.0868 42.4081 43.6382 51.3229C39.8274 61.4724 28.0894 62.5758 27.3403 62.7322C22.961 56.4765 26.6318 46.3023 35.6862 39.9638C44.7406 33.6252 55.5567 33.6578 59.9361 39.9135Z\" fill=\"url(#paint3_linear_31_12)\"/>\\n<path d=\"M64.3169 18.4855C64.3169 16.7667 65.7102 15.3734 67.429 15.3734H187.071C188.79 15.3734 190.183 16.7667 190.183 18.4855V35.4291C190.183 37.1478 188.79 38.5411 187.071 38.5411H67.429C65.7102 38.5411 64.3169 37.1478 64.3169 35.4291V18.4855Z\" fill=\"url(#paint4_linear_31_12)\"/>\\n<path d=\"M82.8591 33.3543L80.9444 29.6871H71.4927L69.578 33.3543H68.1901L75.4739 19.4351H76.9631L84.2469 33.3543H82.8591ZM76.2236 20.6608L72.1106 28.5221H80.3264L76.2236 20.6608Z\" fill=\"white\"/>\\n<path d=\"M101.549 28.978C101.549 29.6736 101.4 30.3084 101.103 30.8825C100.813 31.4498 100.374 31.9394 99.7863 32.3514C99.2055 32.7566 98.4761 33.0707 97.5981 33.2935C96.7201 33.5164 95.6969 33.6279 94.5286 33.6279C93.3602 33.6279 92.337 33.5164 91.459 33.2935C90.581 33.0707 89.8483 32.7566 89.2607 32.3514C88.6731 31.9394 88.2308 31.4498 87.9336 30.8825C87.6432 30.3084 87.498 29.6736 87.498 28.978V19.4351H88.7643V29.0793C88.7643 29.5453 88.8859 29.9876 89.129 30.4064C89.3789 30.8183 89.747 31.1797 90.2332 31.4903C90.7195 31.801 91.3206 32.0475 92.0365 32.2298C92.7523 32.4122 93.583 32.5034 94.5286 32.5034C95.4673 32.5034 96.2946 32.4122 97.0105 32.2298C97.7264 32.0475 98.3275 31.801 98.8137 31.4903C99.3 31.1797 99.6647 30.8183 99.9078 30.4064C100.158 29.9876 100.283 29.5453 100.283 29.0793V19.4351H101.549V28.978Z\" fill=\"white\"/>\\n<path d=\"M106.948 33.3543V19.4351H108.214V32.1691H118.385V33.3543H106.948Z\" fill=\"white\"/>\\n<path d=\"M135.069 33.3543L133.154 29.6871H123.703L121.788 33.3543H120.4L127.684 19.4351H129.173L136.457 33.3543H135.069ZM128.434 20.6608L124.321 28.5221H132.536L128.434 20.6608ZM132.02 15.8286C132.02 16.0042 131.993 16.2203 131.939 16.477C131.892 16.7336 131.797 16.9801 131.655 17.2165C131.513 17.4529 131.317 17.6555 131.068 17.8243C130.824 17.9864 130.507 18.0674 130.115 18.0674C129.798 18.0674 129.484 18.0033 129.173 17.875C128.869 17.7466 128.572 17.6082 128.282 17.4596C127.998 17.3043 127.725 17.1625 127.461 17.0341C127.204 16.9058 126.968 16.8417 126.752 16.8417C126.549 16.8417 126.387 16.8923 126.266 16.9936C126.151 17.0949 126.063 17.2165 126.002 17.3583C125.942 17.4934 125.901 17.6285 125.881 17.7635C125.86 17.8986 125.847 17.9999 125.84 18.0674H124.878C124.878 17.8986 124.905 17.6892 124.959 17.4394C125.013 17.1827 125.111 16.9362 125.253 16.6998C125.394 16.4567 125.59 16.2507 125.84 16.0819C126.09 15.913 126.414 15.8286 126.813 15.8286C127.076 15.8286 127.353 15.8928 127.643 16.0211C127.934 16.1494 128.224 16.2912 128.515 16.4466C128.812 16.5951 129.099 16.7336 129.376 16.8619C129.653 16.9902 129.913 17.0544 130.156 17.0544C130.358 17.0544 130.517 17.0037 130.632 16.9024C130.754 16.8011 130.845 16.6829 130.905 16.5479C130.966 16.4128 131.007 16.2777 131.027 16.1427C131.047 16.0076 131.061 15.9029 131.068 15.8286H132.02Z\" fill=\"white\"/>\\n<path d=\"M156.535 26.4048C156.535 27.6543 156.309 28.7348 155.856 29.6466C155.404 30.5516 154.782 31.3012 153.992 31.8955C153.202 32.4831 152.27 32.9187 151.196 33.2024C150.122 33.486 148.964 33.6279 147.721 33.6279C146.472 33.6279 145.307 33.486 144.226 33.2024C143.146 32.9187 142.207 32.4831 141.41 31.8955C140.613 31.3012 139.988 30.5516 139.536 29.6466C139.083 28.7348 138.857 27.6543 138.857 26.4048C138.857 25.5741 138.962 24.8211 139.171 24.1457C139.38 23.4636 139.674 22.8558 140.052 22.3222C140.431 21.782 140.887 21.3159 141.42 20.9242C141.96 20.5325 142.558 20.2084 143.213 19.9517C143.875 19.6883 144.584 19.4958 145.341 19.3743C146.097 19.246 146.891 19.1818 147.721 19.1818C148.964 19.1818 150.122 19.3236 151.196 19.6073C152.27 19.8909 153.202 20.3299 153.992 20.9242C154.782 21.5118 155.404 22.2615 155.856 23.1732C156.309 24.0782 156.535 25.1554 156.535 26.4048ZM155.228 26.4048C155.228 25.4188 155.066 24.5476 154.742 23.7912C154.424 23.0348 153.951 22.3999 153.323 21.8866C152.695 21.3666 151.912 20.9749 150.973 20.7115C150.041 20.4414 148.957 20.3063 147.721 20.3063C146.485 20.3063 145.395 20.4414 144.449 20.7115C143.51 20.9816 142.724 21.3767 142.089 21.8968C141.454 22.41 140.974 23.0483 140.65 23.8114C140.326 24.5678 140.164 25.4323 140.164 26.4048C140.164 27.3909 140.326 28.2621 140.65 29.0185C140.974 29.7749 141.454 30.4131 142.089 30.9331C142.724 31.4464 143.51 31.8381 144.449 32.1083C145.395 32.3717 146.485 32.5034 147.721 32.5034C148.957 32.5034 150.041 32.3717 150.973 32.1083C151.912 31.8381 152.695 31.4464 153.323 30.9331C153.951 30.4131 154.424 29.7749 154.742 29.0185C155.066 28.2621 155.228 27.3909 155.228 26.4048Z\" fill=\"white\"/>\\n<path d=\"M64.9048 63.7836L64.9393 40.9616H72.9616C79.0129 40.9616 84.9604 44.4887 84.9604 52.1306C84.9604 59.2538 79.4624 63.7836 72.7887 63.7836H64.9048ZM68.1897 60.9135H72.7887C78.2175 60.9135 81.6754 57.1099 81.6754 52.2689C81.71 47.255 78.3559 43.7971 72.9962 43.7971H68.1897V60.9135Z\" fill=\"white\"/>\\n<path d=\"M96.5891 64.1294C90.1229 64.1294 84.7286 59.2883 84.7632 52.4763C84.7978 45.5606 90.0883 40.6159 96.6237 40.6159C103.297 40.6159 108.346 45.6298 108.311 52.4763C108.311 59.1846 103.159 64.1294 96.5891 64.1294ZM88.0482 52.4763C88.0827 57.4903 91.9901 61.2593 96.5891 61.2593C101.223 61.2593 104.992 57.5248 105.026 52.4763C105.061 47.0821 101.223 43.4859 96.6583 43.4859C92.0939 43.4859 88.0482 47.1166 88.0482 52.4763Z\" fill=\"white\"/>\\n<path d=\"M129.919 64.1294C123.487 64.1294 118.404 59.15 118.439 52.3726C118.439 45.7681 123.418 40.6159 129.988 40.6159C134.068 40.6159 137.526 42.4831 139.601 45.9064L138.218 46.7017C136.385 43.7971 133.342 42.1027 130.023 42.1027C124.87 42.1027 120.064 46.2522 120.099 52.3726C120.133 58.2856 124.732 62.6079 129.953 62.6079C133.342 62.6079 136.489 60.8444 138.287 57.836L139.705 58.6659C137.665 62.1238 134.068 64.1294 129.919 64.1294Z\" fill=\"white\"/>\\n<path d=\"M137.681 63.7836L147.778 40.9616H149.403L159.604 63.7836H157.841L154.21 55.623L143.041 55.5884L139.41 63.7836H137.681ZM143.663 54.2399H153.587L148.608 43.0018L143.663 54.2399Z\" fill=\"white\"/>\\n<path d=\"M167.799 64.1294C161.333 64.1294 156.146 59.15 156.181 52.5109C156.181 45.8372 161.229 40.6159 167.868 40.6159C174.577 40.6159 179.418 45.8718 179.418 52.5109C179.418 59.0809 174.3 64.1294 167.799 64.1294ZM157.875 52.5109C157.91 58.2164 162.578 62.6079 167.834 62.6079C173.124 62.6079 177.689 58.251 177.723 52.5109C177.758 46.3213 173.09 42.1373 167.903 42.1373C162.716 42.1373 157.841 46.3213 157.875 52.5109Z\" fill=\"white\"/>\\n<path d=\"M187.602 64.1294C183.383 64.0602 179.891 61.9509 179.787 57.836H181.343C181.412 61.6397 185.492 62.7116 187.705 62.7116C190.437 62.7116 193.584 61.6397 193.687 58.3547C193.826 55.2081 191.924 53.7212 187.152 52.8567C182.173 52.0268 179.476 50.0213 179.476 46.598C179.476 42.9672 182.518 40.6159 186.703 40.6159C190.887 40.6159 194.517 43.0018 194.586 46.9783H193.03C192.961 43.5205 189.538 42.0336 186.703 42.0336C183.936 42.0336 181.101 43.5205 181.101 46.598C181.066 49.0876 183.072 50.7128 187.29 51.439C192.892 52.4072 195.451 54.4819 195.313 58.3547C195.174 62.5387 191.578 64.1985 187.602 64.1294Z\" fill=\"white\"/>\\n<path d=\"M205.092 63.7836L215.189 40.9616H218.335L228.536 63.7836H225.113L221.793 56.3837L211.8 56.3492L208.515 63.7836H205.092ZM212.941 53.7903H220.652L216.779 45.1111L212.941 53.7903Z\" fill=\"white\"/>\\n<path d=\"M240.858 64.1294C234.392 64.1294 228.997 59.2883 229.032 52.4763C229.067 45.5606 234.357 40.6159 240.892 40.6159C247.566 40.6159 252.615 45.6298 252.58 52.4763C252.58 59.1846 247.428 64.1294 240.858 64.1294ZM232.317 52.4763C232.352 57.4903 236.259 61.2593 240.858 61.2593C245.491 61.2593 249.26 57.5248 249.295 52.4763C249.33 47.0821 245.491 43.4859 240.927 43.4859C236.363 43.4859 232.317 47.1166 232.317 52.4763Z\" fill=\"white\"/>\\n<path d=\"M265.128 64.1294C260.737 64.0602 257.002 61.6397 256.829 57.2136H259.838C259.976 60.464 263.261 61.536 265.232 61.536C267.583 61.536 270.177 60.6023 270.246 57.9052C270.349 55.2772 268.517 54.1361 264.644 53.4791C259.665 52.753 256.518 50.7474 256.518 46.8746C256.518 43.0018 259.976 40.6159 264.298 40.6159C268.655 40.6159 272.562 43.1401 272.666 47.497H269.658C269.52 44.4541 266.788 43.2093 264.298 43.2093C261.947 43.2093 259.665 44.4887 259.665 46.9438C259.63 48.9839 261.324 50.2979 264.955 50.8857C270.626 51.7848 273.531 53.8941 273.392 58.1127C273.219 62.435 269.277 64.1985 265.128 64.1294Z\" fill=\"white\"/>\\n<path d=\"M64.3152 87.9887V64.0256H71.1047V73.0299H77.0955V64.0256H83.885V87.9887H77.0955V78.8754H71.1047V87.9887H64.3152Z\" fill=\"white\"/>\\n<path d=\"M99.6107 88.3517C92.7849 88.3517 86.6852 83.5591 86.7578 76.0434C86.8668 68.2373 92.9301 63.6625 99.6107 63.6625C106.473 63.6625 112.246 68.4188 112.173 76.0434C112.101 83.3776 106.618 88.3517 99.6107 88.3517ZM93.5474 76.0434C93.5837 79.8558 96.0889 82.5062 99.5744 82.5062C103.06 82.5062 105.347 79.8921 105.384 76.0434C105.347 72.0859 103.06 69.5081 99.5744 69.5081C96.0889 69.5081 93.5837 72.1222 93.5474 76.0434Z\" fill=\"white\"/>\\n<path d=\"M115.015 87.9887V64.0256H120.788L128.958 76.5154V64.0256H135.747V87.9887H130.083L121.805 75.9708V87.9887H115.015Z\" fill=\"white\"/>\\n<path d=\"M151.446 88.3517C144.62 88.3517 138.52 83.5591 138.593 76.0434C138.702 68.2373 144.765 63.6625 151.446 63.6625C158.308 63.6625 164.081 68.4188 164.008 76.0434C163.935 83.3776 158.453 88.3517 151.446 88.3517ZM145.382 76.0434C145.418 79.8558 147.924 82.5062 151.409 82.5062C154.895 82.5062 157.182 79.8921 157.218 76.0434C157.182 72.0859 154.895 69.5081 151.409 69.5081C147.924 69.5081 145.418 72.1222 145.382 76.0434Z\" fill=\"white\"/>\\n<path d=\"M166.85 87.9887V64.0256H177.234C185.258 64.0256 187.291 68.2736 187.291 72.1585C187.291 75.8619 186.021 78.9481 182.281 79.9284L181.773 80.001L186.347 87.9887H178.795L174.438 80.001H173.64V87.9887H166.85ZM173.64 74.4459H177.234C179.267 74.4459 180.502 73.9013 180.502 72.1585C180.502 70.4521 179.34 69.8348 177.198 69.8348H173.64V74.4459Z\" fill=\"white\"/>\\n<path d=\"M190.108 87.9887L200.746 64.0256H207.209L217.92 87.9887H210.84L208.044 81.8164H199.984L197.225 87.9887H190.108ZM202.308 76.5518H205.721L204.014 72.8121L202.308 76.5518Z\" fill=\"white\"/>\\n<path d=\"M220.777 87.9887V64.0256H231.161C239.185 64.0256 241.218 68.2736 241.218 72.1585C241.218 75.8619 239.947 78.9481 236.208 79.9284L235.699 80.001L240.274 87.9887H232.722L228.365 80.001H227.566V87.9887H220.777ZM227.566 74.4459H231.161C233.194 74.4459 234.429 73.9013 234.429 72.1585C234.429 70.4521 233.267 69.8348 231.125 69.8348H227.566V74.4459Z\" fill=\"white\"/>\\n<path d=\"M244.035 87.9887V64.0256H250.498V87.9887H244.035Z\" fill=\"white\"/>\\n<path d=\"M266.212 88.3517C259.386 88.3517 253.286 83.5591 253.359 76.0434C253.468 68.2373 259.531 63.6625 266.212 63.6625C273.074 63.6625 278.847 68.4188 278.774 76.0434C278.701 83.3776 273.219 88.3517 266.212 88.3517ZM260.148 76.0434C260.185 79.8558 262.69 82.5062 266.175 82.5062C269.661 82.5062 271.948 79.8921 271.985 76.0434C271.948 72.0859 269.661 69.5081 266.175 69.5081C262.69 69.5081 260.185 72.1222 260.148 76.0434Z\" fill=\"white\"/>\\n<path d=\"M291.674 88.3517C286.736 88.2428 282.27 85.084 281.943 79.7831H288.115C288.406 82.0705 290.221 83.1234 291.782 83.1597C293.453 83.1961 294.977 82.4699 295.014 80.8724C295.014 79.1659 293.235 78.7665 291.093 78.5124C285.828 77.9678 281.616 75.7893 281.616 70.8515C281.653 66.2767 286.118 63.6625 290.911 63.6625C295.849 63.6625 300.569 66.6398 300.787 71.9407H294.578C294.288 69.6533 292.835 68.8545 290.911 68.8545C289.314 68.8545 288.115 69.7985 288.115 70.9967C288.079 72.2311 289.205 72.9573 291.819 73.3204C297.918 74.1191 301.658 76.3339 301.477 81.5259C301.295 86.3548 296.43 88.4607 291.674 88.3517Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_31_12\" x1=\"-18.486\" y1=\"51.2859\" x2=\"78.4608\" y2=\"23.0207\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_31_12\" x1=\"65.6069\" y1=\"24.0507\" x2=\"94.3329\" y2=\"15.6536\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_31_12\" x1=\"20.1706\" y1=\"54.7543\" x2=\"60.3889\" y2=\"43.0681\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_31_12\" x1=\"16.2762\" y1=\"49.0566\" x2=\"56.5842\" y2=\"37.2881\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"0.562693\" stop-color=\"#800000\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_31_12\" x1=\"45.5914\" y1=\"51.8646\" x2=\"266.116\" y2=\"51.8646\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF0000\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tkkn1e\",\"data-framer-name\":\"Section Terms Footer\",layoutDependency:layoutDependency,layoutId:\"yqoxB6OOs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:\"\\xa9 2024 Copyright Reservada a CAFEINAJURIDICA Desenvolvido Por ORIONEXPERT\"})}),className:\"framer-lz6nrb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qPhheq2M7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1455z15\",\"data-styles-preset\":\"X0w_fT1vo\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com/legal/terms-of-service/\",motionChild:true,nodeId:\"c3pH5cY64\",openInNewTab:true,scopeId:\"Vyoia5Wdp\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hs1q3r\",\"data-styles-preset\":\"donvzhrpH\",children:\"TERMS & CONDITIONS\"})}),\"   / \",/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com/legal/privacy-statement/\",motionChild:true,nodeId:\"c3pH5cY64\",openInNewTab:true,scopeId:\"Vyoia5Wdp\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hs1q3r\",\"data-styles-preset\":\"donvzhrpH\",children:\"PRIVACY POLICY\"})})]})}),className:\"framer-ksmyjo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c3pH5cY64\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jef2O.framer-1wqibdm, .framer-jef2O .framer-1wqibdm { display: block; }\",\".framer-jef2O.framer-tolc98 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jef2O .framer-1eciwmd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1650px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jef2O .framer-hssmwo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jef2O .framer-1c0erug { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jef2O .framer-1jmk1go { flex: none; height: 98px; position: relative; width: 302px; }\",\".framer-jef2O .framer-1tkkn1e { 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: 100%; }\",\".framer-jef2O .framer-lz6nrb { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jef2O .framer-ksmyjo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jef2O.framer-tolc98, .framer-jef2O .framer-1eciwmd, .framer-jef2O .framer-hssmwo, .framer-jef2O .framer-1c0erug, .framer-jef2O .framer-1tkkn1e { gap: 0px; } .framer-jef2O.framer-tolc98 > *, .framer-jef2O .framer-hssmwo > *, .framer-jef2O .framer-1tkkn1e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jef2O.framer-tolc98 > :first-child, .framer-jef2O .framer-hssmwo > :first-child, .framer-jef2O .framer-1tkkn1e > :first-child { margin-left: 0px; } .framer-jef2O.framer-tolc98 > :last-child, .framer-jef2O .framer-hssmwo > :last-child, .framer-jef2O .framer-1tkkn1e > :last-child { margin-right: 0px; } .framer-jef2O .framer-1eciwmd > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-jef2O .framer-1eciwmd > :first-child, .framer-jef2O .framer-1c0erug > :first-child { margin-top: 0px; } .framer-jef2O .framer-1eciwmd > :last-child, .framer-jef2O .framer-1c0erug > :last-child { margin-bottom: 0px; } .framer-jef2O .framer-1c0erug > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",\".framer-jef2O.framer-v-qkcrhd.framer-tolc98 { width: 810px; }\",\".framer-jef2O.framer-v-qkcrhd .framer-1eciwmd, .framer-jef2O.framer-v-1cec6gl .framer-1eciwmd { gap: 50px; }\",\".framer-jef2O.framer-v-qkcrhd .framer-hssmwo, .framer-jef2O.framer-v-1cec6gl .framer-hssmwo { flex-direction: column; gap: 50px; }\",\".framer-jef2O.framer-v-qkcrhd .framer-1c0erug, .framer-jef2O.framer-v-1cec6gl .framer-1c0erug, .framer-jef2O.framer-v-1cec6gl .framer-lz6nrb { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jef2O.framer-v-qkcrhd .framer-1eciwmd, .framer-jef2O.framer-v-qkcrhd .framer-hssmwo { gap: 0px; } .framer-jef2O.framer-v-qkcrhd .framer-1eciwmd > *, .framer-jef2O.framer-v-qkcrhd .framer-hssmwo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-jef2O.framer-v-qkcrhd .framer-1eciwmd > :first-child, .framer-jef2O.framer-v-qkcrhd .framer-hssmwo > :first-child { margin-top: 0px; } .framer-jef2O.framer-v-qkcrhd .framer-1eciwmd > :last-child, .framer-jef2O.framer-v-qkcrhd .framer-hssmwo > :last-child { margin-bottom: 0px; } }\",\".framer-jef2O.framer-v-1cec6gl.framer-tolc98 { padding: 50px 24px 50px 24px; width: 390px; }\",\".framer-jef2O.framer-v-1cec6gl .framer-1tkkn1e { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jef2O.framer-v-1cec6gl .framer-1eciwmd, .framer-jef2O.framer-v-1cec6gl .framer-hssmwo, .framer-jef2O.framer-v-1cec6gl .framer-1tkkn1e { gap: 0px; } .framer-jef2O.framer-v-1cec6gl .framer-1eciwmd > *, .framer-jef2O.framer-v-1cec6gl .framer-hssmwo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-jef2O.framer-v-1cec6gl .framer-1eciwmd > :first-child, .framer-jef2O.framer-v-1cec6gl .framer-hssmwo > :first-child, .framer-jef2O.framer-v-1cec6gl .framer-1tkkn1e > :first-child { margin-top: 0px; } .framer-jef2O.framer-v-1cec6gl .framer-1eciwmd > :last-child, .framer-jef2O.framer-v-1cec6gl .framer-hssmwo > :last-child, .framer-jef2O.framer-v-1cec6gl .framer-1tkkn1e > :last-child { margin-bottom: 0px; } .framer-jef2O.framer-v-1cec6gl .framer-1tkkn1e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 419\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"L6uOM0XGL\":{\"layout\":[\"fixed\",\"auto\"]},\"VVnpNM_tl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVyoia5Wdp=withCSS(Component,css,\"framer-jef2O\");export default FramerVyoia5Wdp;FramerVyoia5Wdp.displayName=\"Navigtion/Footer\";FramerVyoia5Wdp.defaultProps={height:419,width:1440};addPropertyControls(FramerVyoia5Wdp,{variant:{options:[\"d37vIqjrs\",\"L6uOM0XGL\",\"VVnpNM_tl\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVyoia5Wdp,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVyoia5Wdp\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"419\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L6uOM0XGL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VVnpNM_tl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vyoia5Wdp.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Typeform from\"https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ComponentServicesCard from\"#framer/local/canvasComponent/BBTcXnPdl/BBTcXnPdl.js\";import ComponentComponentFAQs from\"#framer/local/canvasComponent/cQZGrYDYv/cQZGrYDYv.js\";import ComponentTeamCard from\"#framer/local/canvasComponent/i92KiItYr/i92KiItYr.js\";import NavigtionNav from\"#framer/local/canvasComponent/IXqppH7zP/IXqppH7zP.js\";import ComponentFeaturesCard from\"#framer/local/canvasComponent/ka7lqP9Eq/ka7lqP9Eq.js\";import ButtonButton from\"#framer/local/canvasComponent/lxAble9qC/lxAble9qC.js\";import ComponentPriceCard from\"#framer/local/canvasComponent/Pu1fEhfuY/Pu1fEhfuY.js\";import ButtonTags from\"#framer/local/canvasComponent/sJMGTD9OA/sJMGTD9OA.js\";import NavigtionFooter from\"#framer/local/canvasComponent/Vyoia5Wdp/Vyoia5Wdp.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigtionNavFonts=getFonts(NavigtionNav);const ButtonTagsFonts=getFonts(ButtonTags);const RichTextWithFX=withFX(RichText);const ComponentFeaturesCardFonts=getFonts(ComponentFeaturesCard);const ButtonButtonFonts=getFonts(ButtonButton);const PhosphorFonts=getFonts(Phosphor);const ContainerWithFX=withFX(Container);const ComponentTeamCardFonts=getFonts(ComponentTeamCard);const ComponentServicesCardFonts=getFonts(ComponentServicesCard);const ComponentPriceCardFonts=getFonts(ComponentPriceCard);const TypeformFonts=getFonts(Typeform);const ComponentComponentFAQsFonts=getFonts(ComponentComponentFAQs);const MotionDivWithFX=withFX(motion.div);const NavigtionFooterFonts=getFonts(NavigtionFooter);const breakpoints={eaghYTqEO:\"(max-width: 809px)\",IerVgvB7t:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\",xkp7EFE3X:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Rogbf\";const variantClassNames={eaghYTqEO:\"framer-v-1bnvh3r\",IerVgvB7t:\"framer-v-9egu64\",WQLkyLRf1:\"framer-v-72rtr7\",xkp7EFE3X:\"framer-v-tl9k7p\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const transition2={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const transition3={damping:20,delay:.2,mass:1,stiffness:110,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition5};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition6={damping:20,delay:.4,mass:1,stiffness:110,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1200\":\"xkp7EFE3X\",\"Desktop 1440\":\"WQLkyLRf1\",Phone:\"eaghYTqEO\",Tablet:\"IerVgvB7t\"};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const cX6xJCJqq3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const bd0c6HjBp1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const gYyKj_GH03bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xkp7EFE3X\")return true;return false;};const elementId=useRouteElementId(\"hPiAwepfo\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"bbY0hUvyI\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"iPceaDHKk\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"l72w5dQV_\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"yt091B0f4\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"xkp7EFE3X\",\"IerVgvB7t\",\"eaghYTqEO\"].includes(baseVariant))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: var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(13, 13, 13)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:\"382px\"},IerVgvB7t:{width:\"810px\"},xkp7EFE3X:{width:\"1200px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:\"1440px\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16d5c5x-container\",nodeId:\"wJWu0TWm3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{variant:\"CnDBMQhHw\"}},children:/*#__PURE__*/_jsx(NavigtionNav,{height:\"100%\",id:\"wJWu0TWm3\",layoutId:\"wJWu0TWm3\",mDwzIzryJ:\"100px\",mREhjIwVN:true,style:{width:\"100%\"},variant:\"znhunZCI_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h7418y\",\"data-framer-name\":\"Hero Fix\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b04ks9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vz2fqd\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Existem v\\xe1rios caminhos para voc\\xea sair do caos na \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-transform\":\"uppercase\"},children:\"advocacia\"}),\"\u2026\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(255, 125, 86))\"},children:\"mas o melhor para voc\\xea est\\xe1 aqui. \"})]})})},IerVgvB7t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Existem v\\xe1rios caminhos para voc\\xea sair do caos na \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-transform\":\"uppercase\"},children:\"advocacia\"}),\"\u2026\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(255, 125, 86))\"},children:\"mas o melhor para voc\\xea est\\xe1 aqui. \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Existem v\\xe1rios caminhos para voc\\xea sair do caos na \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-transform\":\"uppercase\"},children:\"advocacia\"}),\"\u2026\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(255, 125, 86))\"},children:\"mas o melhor para voc\\xea est\\xe1 aqui. \"})]})}),className:\"framer-kgdtse\",\"data-framer-name\":\"Existem v\\xe1rios caminhos para voc\\xea sair do caos na advocacia\u2026 mas o melhor para voc\\xea est\\xe1 aqui.\",fonts:[\"Inter-SemiBold\",\"Inter-Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aprenda a Atrair Clientes Certos, Cobrar Honor\\xe1rios Justos e Construir um Escrit\\xf3rio Estruturado e Rent\\xe1vel!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},IerVgvB7t:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aprenda a Atrair Clientes Certos, Cobrar Honor\\xe1rios Justos e Construir um Escrit\\xf3rio Estruturado e Rent\\xe1vel!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aprenda a Atrair Clientes Certos, Cobrar Honor\\xe1rios Justos e Construir um Escrit\\xf3rio Estruturado e Rent\\xe1vel!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-3sqk6o\",\"data-framer-name\":\"Aprenda a Atrair Clientes Certos, Cobrar Honor\\xe1rios Justos e Construir um Escrit\\xf3rio Estruturado e Rent\\xe1vel!\",fonts:[\"Inter-Light\",\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://pay.hotmart.com/E98498921R?checkoutMode=10\",motionChild:true,nodeId:\"p7xmGanGi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o2ii57 framer-lux5qc\",\"data-framer-name\":\"Frame 3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Clique no bot\\xe3o e inscreva-se j\\xe1!\"})})},IerVgvB7t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Clique no bot\\xe3o e inscreva-se j\\xe1!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Clique no bot\\xe3o e inscreva-se j\\xe1!\"})}),className:\"framer-do9ayb\",\"data-framer-name\":\"Clique no bot\\xe3o e inscreva-se j\\xe1!\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"VAGAS LIMITADAS \u2013 GARANTA A SUA AGORA!\"})})},IerVgvB7t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"VAGAS LIMITADAS \u2013 GARANTA A SUA AGORA!\"})})}},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\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"VAGAS LIMITADAS \u2013 GARANTA A SUA AGORA!\"})}),className:\"framer-1k0qodc\",\"data-framer-name\":\"VAGAS LIMITADAS \u2013 GARANTA A SUA AGORA!\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+117+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"314px\",src:\"https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png\",srcSet:\"https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png?scale-down-to=1024 614w,https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png?scale-down-to=2048 1228w,https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png 2456w\"}},IerVgvB7t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+117+16+0),sizes:\"258px\",src:\"https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png\",srcSet:\"https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png?scale-down-to=1024 614w,https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png?scale-down-to=2048 1228w,https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png 2456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+117+16+0),sizes:\"493px\",src:\"https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png\",srcSet:\"https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png?scale-down-to=1024 614w,https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png?scale-down-to=2048 1228w,https://framerusercontent.com/images/T9FShTl7zBfFkTyFwMdp4fgWHA.png 2456w\"},className:\"framer-353a0r\",\"data-framer-name\":\"_MG_0806@2x 2\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xkp7EFE3X:{background:{alt:\"\",loading:getLoadingLazyAtYPosition(0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png\",srcSet:\"https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(0),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png\",srcSet:\"https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mggTBSAOJz6KZhYD5INyyeq7gIc.png 1920w\"},className:\"framer-u9cr56\",\"data-framer-name\":\"Background image\"})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-w5659e\",\"data-framer-name\":\"Main\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmtk7a hidden-72rtr7 hidden-9egu64 hidden-1bnvh3r\",\"data-framer-name\":\"Blur\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-36btsa hidden-72rtr7 hidden-9egu64 hidden-1bnvh3r\",\"data-framer-name\":\"Blur\"}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1l2wxil\",\"data-framer-name\":\"O QUE E O AUL\\xc3O\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ex49zl\",\"data-framer-name\":\"Section Included Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{y:(componentViewport?.y||0)+0+1060+20+0+11+0+0+0},IerVgvB7t:{y:(componentViewport?.y||0)+0+681+20+0+90+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+769+20+0+90+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kefqyh-container\",nodeId:\"YQMzTAI8D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"YQMzTAI8D\",IIlG6wlDc:\"Voc\\xea ter\\xe1 acesso ao:\",layoutId:\"YQMzTAI8D\",variant:\"TtzJe9706\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1em79ni\",\"data-framer-name\":\"Info Included Features\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"Voc\\xea ter\\xe1 acesso ao:\"})}),className:\"framer-i9d42z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 163, 163)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:'A METODOLOGIA \"DO CAOS AOS HONOR\\xc1RIOS\"'})})}),className:\"framer-1rqjzrq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1fyykqx\",\"data-framer-name\":\"Section Features Card\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1650px)`,y:(componentViewport?.y||0)+0+1060+20+0+11+347+0+0},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1650px)`,y:(componentViewport?.y||0)+0+681+20+0+90+338+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+769+20+0+90+338+0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tiumci-container\",id:\"tiumci\",nodeId:\"wEz7J0u1_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(ComponentFeaturesCard,{cX6xJCJqq:cX6xJCJqq3bnx0g({overlay}),height:\"100%\",id:\"wEz7J0u1_\",KXD2GwAEI:\"AUL\\xc3O AO VIVO\",layoutId:\"wEz7J0u1_\",pPrPQgds2:addImageAlt({src:\"https://framerusercontent.com/images/TbwKI0eR4c84KngjJCLsl6DSde0.svg\"},\"\"),style:{width:\"100%\"},vfWpbuOx_:\"Participe de uma sess\\xe3o intensiva e interativa, onde voc\\xea aprender\\xe1 estrat\\xe9gias pr\\xe1ticas e comprovadas para transformar sua advocacia. Este aul\\xe3o ao vivo permitir\\xe1 que voc\\xea receba orienta\\xe7\\xe3o direta e personalizada, garantindo que voc\\xea saia com um plano de a\\xe7\\xe3o claro e eficaz.\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-fcmh7o\"),\"data-framer-portal-id\":\"tiumci\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"bnGnkTh2i\"),/*#__PURE__*/_jsx(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-y05mms\"),\"data-framer-name\":\"Blur background\",\"data-framer-portal-id\":\"tiumci\",exit:animation1,initial:animation3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irtlnx\",\"data-border\":true,\"data-framer-name\":\"Section Included Features Overlay\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qhx5ug\",\"data-framer-name\":\"Section Included Features\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cq9k4\",\"data-framer-name\":\"Section Included Features Info\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3sjbya-container\",inComponentSlot:true,nodeId:\"eyUUignF2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"eyUUignF2\",IIlG6wlDc:\"Included features\",layoutId:\"eyUUignF2\",variant:\"TtzJe9706\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CUSTOM DESIGN\"})}),className:\"framer-bpllvf\",fonts:[\"GF;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"Our custom design service ensures that your Shopify store stands out with a unique, tailored design that perfectly reflects your brand\u2019s personality and values. We work closely with you to understand your vision and translate it into a visually stunning and cohesive design. From color schemes to typography, every element is meticulously crafted to create a seamless and engaging user experience. Our goal is to deliver a design that not only looks great but also enhances your brand identity and helps you connect with your target audience.\"})}),className:\"framer-1kxodkt\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:\"min(max(min(max(100vw, 1px), 800px) - 48px, 1px), 175px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(max(min(max(100vw - 48px, 1px), 800px) - 84px, 1px), 175px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1epo4n9-container\",inComponentSlot:true,nodeId:\"KONIkKSXX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonButton,{bd0c6HjBp:bd0c6HjBp1wnntms({overlay}),fL2aGAQX0:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",id:\"KONIkKSXX\",iSLoKcHsk:\"Back to page\",layoutId:\"KONIkKSXX\",od0hWe3DS:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",r3k4GyH6J:\"var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(13, 13, 13))\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Xx3jQSvyj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-di3l32-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jyt1z8S3i\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation4,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x-circle\",iconSelection:\"House\",id:\"Jyt1z8S3i\",layoutId:\"Jyt1z8S3i\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1650px)`,y:(componentViewport?.y||0)+0+1060+20+0+11+347+0+374},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1650px)`,y:(componentViewport?.y||0)+0+681+20+0+90+338+0+374}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+769+20+0+90+338+0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x4syy4-container\",id:\"1x4syy4\",nodeId:\"biNSlVnxn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(ComponentFeaturesCard,{cX6xJCJqq:cX6xJCJqq3bnx0g({overlay:overlay1}),height:\"100%\",id:\"biNSlVnxn\",KXD2GwAEI:\"Material de apoio\",layoutId:\"biNSlVnxn\",pPrPQgds2:addImageAlt({src:\"https://framerusercontent.com/images/P5vK3vzEPOPHqt4yaTz3pabPx0.svg\"},\"\"),style:{width:\"100%\"},vfWpbuOx_:\"Receba materiais complementares que refor\\xe7am o conte\\xfado abordado no aul\\xe3o. Estes recursos incluem guias pr\\xe1ticos, checklists e exerc\\xedcios que ajudam a aplicar as estrat\\xe9gias ensinadas, facilitando a implementa\\xe7\\xe3o das mudan\\xe7as necess\\xe1rias para alcan\\xe7ar um faturamento maior e mais consistente\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-182mprl\"),\"data-framer-portal-id\":\"1x4syy4\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"eHKCbB7q_\"),/*#__PURE__*/_jsx(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-1i4q3ik\"),\"data-framer-name\":\"Blur background\",\"data-framer-portal-id\":\"1x4syy4\",exit:animation1,initial:animation3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gatb0w\",\"data-border\":true,\"data-framer-name\":\"Section Included Features Overlay\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gow5d8\",\"data-framer-name\":\"Section Included Features\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lixcc8\",\"data-framer-name\":\"Section Included Features Info\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5jynim-container\",inComponentSlot:true,nodeId:\"cJE9R8zI5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"cJE9R8zI5\",IIlG6wlDc:\"Included features\",layoutId:\"cJE9R8zI5\",variant:\"TtzJe9706\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"RESPONSIVE LAYOUT\"})}),className:\"framer-hz35n3\",fonts:[\"GF;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"In today\u2019s multi-device world, having a responsive layout is crucial. Our responsive design ensures that your Shopify store looks stunning and functions perfectly on all devices, whether it\u2019s a desktop, tablet, or smartphone. We use the latest techniques to create fluid grids and flexible images that automatically adjust to different screen sizes. This means your customers will enjoy a consistent and optimized shopping experience no matter how they access your site, leading to higher engagement and conversion rates.\"})}),className:\"framer-1ub6d3e\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:\"min(max(min(max(100vw, 1px), 800px) - 48px, 1px), 175px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(max(min(max(100vw - 48px, 1px), 800px) - 84px, 1px), 175px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qjpqx4-container\",inComponentSlot:true,nodeId:\"vqlKVHFpp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonButton,{bd0c6HjBp:bd0c6HjBp1wnntms({overlay:overlay1}),fL2aGAQX0:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",id:\"vqlKVHFpp\",iSLoKcHsk:\"Back to page\",layoutId:\"vqlKVHFpp\",od0hWe3DS:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",r3k4GyH6J:\"var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(13, 13, 13))\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Xx3jQSvyj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19fowf2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Po07V1DcD\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation4,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x-circle\",iconSelection:\"House\",id:\"Po07V1DcD\",layoutId:\"Po07V1DcD\",mirrored:false,onClick:onClick1wnntms({overlay:overlay1}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1650px)`,y:(componentViewport?.y||0)+0+1060+20+0+11+347+0+748},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1650px)`,y:(componentViewport?.y||0)+0+681+20+0+90+338+0+748}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+769+20+0+90+338+0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nbs5jl-container\",id:\"1nbs5jl\",nodeId:\"EOiyJ6f9C\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(ComponentFeaturesCard,{cX6xJCJqq:cX6xJCJqq3bnx0g({overlay:overlay2}),height:\"100%\",id:\"EOiyJ6f9C\",KXD2GwAEI:\"Acesso a um grupo exclusivo\",layoutId:\"EOiyJ6f9C\",pPrPQgds2:addImageAlt({src:\"https://framerusercontent.com/images/U8JsxXSnpDmqrTnjj9qk8BpA1vg.svg\"},\"\"),style:{width:\"100%\"},vfWpbuOx_:\"Junte-se a uma comunidade de advogados com objetivos semelhantes, onde voc\\xea pode trocar experi\\xeancias, tirar d\\xfavidas e receber suporte cont\\xednuo. Este grupo exclusivo oferece um ambiente colaborativo para discutir desafios, compartilhar sucessos e manter a motiva\\xe7\\xe3o, garantindo que voc\\xea continue no caminho do sucesso\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-e9r7o4\"),\"data-framer-portal-id\":\"1nbs5jl\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"dmXDb9gD4\"),/*#__PURE__*/_jsx(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-9w5g43\"),\"data-framer-name\":\"Blur background\",\"data-framer-portal-id\":\"1nbs5jl\",exit:animation1,initial:animation3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f7a4nq\",\"data-border\":true,\"data-framer-name\":\"Section Included Features Overlay\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10s3bwm\",\"data-framer-name\":\"Section Included Features\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1087liw\",\"data-framer-name\":\"Section Included Features Info\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-132wj1n-container\",inComponentSlot:true,nodeId:\"ChPpQFwCT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"ChPpQFwCT\",IIlG6wlDc:\"Included features\",layoutId:\"ChPpQFwCT\",variant:\"TtzJe9706\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SOCIAL MEDIA INTEGRATION\"})}),className:\"framer-e14vsa\",fonts:[\"GF;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"Social media integration is a powerful tool for expanding your reach and engaging with your audience. We seamlessly connect your Shopify store with major social media platforms like Facebook, Instagram, and Twitter. This allows you to easily share products, updates, and promotions, driving traffic back to your store. Additionally, integrated social media feeds keep your site content fresh and engaging. By leveraging social media, we help you build a community around your brand, increase visibility, and ultimately boost sales.\"})}),className:\"framer-eaggd1\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:\"min(max(min(max(100vw, 1px), 800px) - 48px, 1px), 175px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(max(min(max(100vw - 48px, 1px), 800px) - 84px, 1px), 175px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tsd9h1-container\",inComponentSlot:true,nodeId:\"n9RhP4Gfc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonButton,{bd0c6HjBp:bd0c6HjBp1wnntms({overlay:overlay2}),fL2aGAQX0:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",id:\"n9RhP4Gfc\",iSLoKcHsk:\"Back to page\",layoutId:\"n9RhP4Gfc\",od0hWe3DS:\"0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38))\",r3k4GyH6J:\"var(--token-35f430e9-6920-40c9-af46-ef27e1274771, rgb(13, 13, 13))\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Xx3jQSvyj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16memf2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fKpJkRsbq\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation4,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x-circle\",iconSelection:\"House\",id:\"fKpJkRsbq\",layoutId:\"fKpJkRsbq\",mirrored:false,onClick:onClick1wnntms({overlay:overlay2}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1cvvtat\",\"data-framer-name\":\"quem e a aline\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9yd68h\",\"data-framer-name\":\"Section The Team\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{height:607,width:\"292px\",y:(componentViewport?.y||0)+0+1060+20+1430+90+34+0+4.2000000000000455},IerVgvB7t:{height:1051,width:\"346px\",y:(componentViewport?.y||0)+0+681+20+1500+90+-37+0},xkp7EFE3X:{width:\"499px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:977,width:\"603.5px\",y:(componentViewport?.y||0)+0+769+20+752+90+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qtate1-container\",nodeId:\"llHdzypp1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{style:{width:\"100%\"},variant:\"X3SdKkYKA\"}},children:/*#__PURE__*/_jsx(ComponentTeamCard,{gsvBbnaKP:\"Advogada Trabalista e criadora do metodo Cafeina Juridica.\",height:\"100%\",id:\"llHdzypp1\",layoutId:\"llHdzypp1\",QktLVpXDD:\"Aline Laredo\",style:{height:\"100%\",width:\"100%\"},variant:\"hN8OntiaF\",wczRppDJI:addImageAlt({src:\"https://framerusercontent.com/images/xGwjFu1wCauDSUmrJJsrnoOJlpE.jpg\",srcSet:\"https://framerusercontent.com/images/xGwjFu1wCauDSUmrJJsrnoOJlpE.jpg?scale-down-to=1024 736w,https://framerusercontent.com/images/xGwjFu1wCauDSUmrJJsrnoOJlpE.jpg?scale-down-to=2048 1472w,https://framerusercontent.com/images/xGwjFu1wCauDSUmrJJsrnoOJlpE.jpg?scale-down-to=4096 2945w,https://framerusercontent.com/images/xGwjFu1wCauDSUmrJJsrnoOJlpE.jpg 3045w\"},\"\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsbkad\",\"data-framer-name\":\"Info The Team\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Quem \\xe9\"}),\" minha Mentora?\"]})})},IerVgvB7t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Quem \\xe9\"}),\" minha Mentora?\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"59px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Quem \\xe9\"}),\" minha Mentora?\"]})}),className:\"framer-19x3w3x\",fonts:[\"Inter-Black\",\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Ol\\xe1, sou Aline Laredo, advogada com 21 anos de experi\\xeancia na advocacia trabalhista. Durante minha trajet\\xf3ria, percebi que muitos advogados enfrentam dificuldades em estruturar suas pr\\xe1ticas, atrair clientes qualificados e cobrar honor\\xe1rios justos. Foi ent\\xe3o que decidi criar o programa \"Do Caos aos Honor\\xe1rios\".'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Desenvolvi um m\\xe9todo pr\\xe1tico, testado e validado, que vai al\\xe9m do conhecimento jur\\xeddico tradicional. Minha abordagem incorpora t\\xe9cnicas de gest\\xe3o, marketing e vendas espec\\xedficas para o mercado jur\\xeddico, com o objetivo de transformar advogados em empres\\xe1rios de sucesso.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'No programa \"Do Caos aos Honor\\xe1rios\", ofere\\xe7o uma imers\\xe3o completa para ajudar advogados a estruturar suas pr\\xe1ticas, aumentar seu faturamento e alcan\\xe7ar uma advocacia lucrativa e previs\\xedvel. Estou aqui para compartilhar minha experi\\xeancia e ajudar voc\\xea a transformar sua advocacia.'})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Ol\\xe1, sou Aline Laredo, advogada com 21 anos de experi\\xeancia na advocacia trabalhista. Durante minha trajet\\xf3ria, percebi que muitos advogados enfrentam dificuldades em estruturar suas pr\\xe1ticas, atrair clientes qualificados e cobrar honor\\xe1rios justos. Foi ent\\xe3o que decidi criar o programa \"Do Caos aos Honor\\xe1rios\".'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Desenvolvi um m\\xe9todo pr\\xe1tico, testado e validado, que vai al\\xe9m do conhecimento jur\\xeddico tradicional. Minha abordagem incorpora t\\xe9cnicas de gest\\xe3o, marketing e vendas espec\\xedficas para o mercado jur\\xeddico, com o objetivo de transformar advogados em empres\\xe1rios de sucesso.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'No programa \"Do Caos aos Honor\\xe1rios\", ofere\\xe7o uma imers\\xe3o completa para ajudar advogados a estruturar suas pr\\xe1ticas, aumentar seu faturamento e alcan\\xe7ar uma advocacia lucrativa e previs\\xedvel. Estou aqui para compartilhar minha experi\\xeancia e ajudar voc\\xea a transformar sua advocacia.'})]}),className:\"framer-1nc3kwp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15qwpub\",\"data-framer-name\":\"DORES\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-610vyu\",\"data-framer-name\":\"Section Our Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{y:(componentViewport?.y||0)+0+1060+20+3287+170+0+0+-14210854715202004e-30},IerVgvB7t:{y:(componentViewport?.y||0)+0+681+20+2627+170+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+769+20+1879+170+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6p0cz8-container\",nodeId:\"xUGpqIM5f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"xUGpqIM5f\",IIlG6wlDc:\"PARA QUEM \\xc9 ESSA IMERS\\xc3O?\",layoutId:\"xUGpqIM5f\",variant:\"TtzJe9706\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tb4a5c\",\"data-framer-name\":\"Info Our Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--framer-font-size\":\"37px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(255, 125, 86))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"PARA QUEM \\xc9 \"}),\"ESSA IMERS\\xc3O?\"]})})},IerVgvB7t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--framer-font-size\":\"47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(255, 125, 86))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"PARA QUEM \\xc9 \"}),\"ESSA IMERS\\xc3O?\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--framer-font-size\":\"90px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(255, 125, 86))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"PARA QUEM \\xc9 \"}),\"ESSA IMERS\\xc3O?\"]})}),className:\"framer-199kh13\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 163, 163)\"},children:\"From the groundwork to your online commercial growth, we've got it all under control! Explore our internal services:\"})})},IerVgvB7t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 163, 163)\"},children:\"From the groundwork to your online commercial growth, we've got it all under control! Explore our internal services:\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:0,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"33px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 163, 163)\"},children:\"From the groundwork to your online commercial growth, we've got it all under control! Explore our internal services:\"})}),className:\"framer-19ecru4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"article\",{className:\"framer-h0ccvo\",\"data-framer-name\":\"Grid Services Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1650px), 50px)`,y:(componentViewport?.y||0)+0+1060+20+3287+170+312.9+0+0},IerVgvB7t:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+681+20+2627+170+361.4+0+0},xkp7EFE3X:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 24px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14dovxc-container\",nodeId:\"jVozyi7HI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{I13YzNy71:\"24px\"}},children:/*#__PURE__*/_jsx(ComponentServicesCard,{dB3Dx5gxf:'Voc\\xea se sente exausto ao final do dia, mas quando olha para o saldo banc\\xe1rio, percebe que o esfor\\xe7o n\\xe3o est\\xe1 sendo recompensado? A Imers\\xe3o \"Do Caos aos Honor\\xe1rios\" vai te ensinar a trabalhar de maneira mais inteligente, focando em atividades que realmente aumentam seu faturamento e te livram da sobrecarga.',height:\"100%\",I13YzNy71:\"42px\",id:\"jVozyi7HI\",kVcww4jOA:\"https://framerusercontent.com/assets/iXTK8TreEngVwl5Fn39K9x2zPE.png\",layoutId:\"jVozyi7HI\",style:{width:\"100%\"},T83UTcd_Z:\"Advogados que trabalham muito e faturam pouco.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1650px), 50px)`,y:(componentViewport?.y||0)+0+1060+20+3287+170+312.9+0+404},IerVgvB7t:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+681+20+2627+170+361.4+0+0},xkp7EFE3X:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 24px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-119lwx5-container\",nodeId:\"wTDzPqZG4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{I13YzNy71:\"24px\"}},children:/*#__PURE__*/_jsx(ComponentServicesCard,{dB3Dx5gxf:\"O marketing jur\\xeddico \\xe9 uma ferramenta poderosa, mas muitos advogados t\\xeam medo de us\\xe1-lo por receio de infringir as regras da OAB. Na Imers\\xe3o, voc\\xea vai aprender como promover sua advocacia de maneira \\xe9tica e eficaz, construindo uma presen\\xe7a forte no mercado.\",height:\"100%\",I13YzNy71:\"42px\",id:\"wTDzPqZG4\",kVcww4jOA:\"https://framerusercontent.com/assets/5jnigWuaXtCghE75lTSND1okU.png\",layoutId:\"wTDzPqZG4\",style:{width:\"100%\"},T83UTcd_Z:\"Advogados perdidos no marketing jur\\xeddico e com medo de ferir o C\\xf3digo de \\xc9tica da OAB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1650px), 50px)`,y:(componentViewport?.y||0)+0+1060+20+3287+170+312.9+0+808},IerVgvB7t:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+681+20+2627+170+361.4+0+378},xkp7EFE3X:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+378}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iqkggx-container\",nodeId:\"wvTjZgs_F\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{I13YzNy71:\"24px\"}},children:/*#__PURE__*/_jsx(ComponentServicesCard,{dB3Dx5gxf:\"Negociar honor\\xe1rios pode ser um desafio, especialmente quando voc\\xea n\\xe3o tem um m\\xe9todo claro. Se voc\\xea tem dificuldade em fechar contratos e sempre acaba cedendo a descontos, a Imers\\xe3o vai te ensinar t\\xe9cnicas de negocia\\xe7\\xe3o que v\\xe3o garantir que voc\\xea seja bem remunerado pelo seu trabalho.\",height:\"100%\",I13YzNy71:\"42px\",id:\"wvTjZgs_F\",kVcww4jOA:\"https://framerusercontent.com/assets/aGy1Tza8BKPbEqu10Uw7pzNfEGA.png\",layoutId:\"wvTjZgs_F\",style:{width:\"100%\"},T83UTcd_Z:\"Quem sofre para fechar contratos e negociar valores mais altos.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1650px), 50px)`,y:(componentViewport?.y||0)+0+1060+20+3287+170+312.9+0+1212},IerVgvB7t:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+681+20+2627+170+361.4+0+378},xkp7EFE3X:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 24px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+378,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z1j9g2-container\",nodeId:\"LhKbFcsM3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{I13YzNy71:\"24px\"}},children:/*#__PURE__*/_jsx(ComponentServicesCard,{dB3Dx5gxf:\"Depender exclusivamente de indica\\xe7\\xf5es \\xe9 um risco enorme para qualquer advogado. Na Imers\\xe3o, voc\\xea vai aprender estrat\\xe9gias de marketing jur\\xeddico que v\\xe3o te ajudar a atrair clientes de forma constante e previs\\xedvel, sem violar o C\\xf3digo de \\xc9tica da OAB.\",height:\"100%\",I13YzNy71:\"42px\",id:\"LhKbFcsM3\",kVcww4jOA:\"https://framerusercontent.com/assets/hXrd09456VpDl0jDgJ5oHOrlZY.png\",layoutId:\"LhKbFcsM3\",style:{width:\"100%\"},T83UTcd_Z:\"Advogados sem m\\xe9todo para captar clientes e que dependem s\\xf3 de indica\\xe7\\xf5es\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1650px), 50px)`,y:(componentViewport?.y||0)+0+1060+20+3287+170+312.9+0+1616},IerVgvB7t:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+681+20+2627+170+361.4+0+756},xkp7EFE3X:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+756}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+378,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-155h58z-container\",nodeId:\"tNqd7ftYG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{I13YzNy71:\"24px\"}},children:/*#__PURE__*/_jsx(ComponentServicesCard,{dB3Dx5gxf:\"Se voc\\xea sente que sua advocacia \\xe9 desorganizada e n\\xe3o sabe como transformar isso em um neg\\xf3cio eficiente, a Imers\\xe3o vai te mostrar como estruturar seu escrit\\xf3rio, delegar tarefas, e implementar processos que v\\xe3o te permitir crescer de forma sustent\\xe1vel.\",height:\"100%\",I13YzNy71:\"42px\",id:\"tNqd7ftYG\",kVcww4jOA:\"https://framerusercontent.com/assets/sqxunjE1q7CgV53C4r6mYbSq0.png\",layoutId:\"tNqd7ftYG\",style:{width:\"100%\"},T83UTcd_Z:\"Quem tem dificuldades para estruturar sua advocacia como um verdadeiro neg\\xf3cio\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1650px), 50px)`,y:(componentViewport?.y||0)+0+1060+20+3287+170+312.9+0+2020},IerVgvB7t:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+681+20+2627+170+361.4+0+756},xkp7EFE3X:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+756}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1650px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+769+20+1879+170+445.5+0+378,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c79k1z-container\",nodeId:\"FQF0fpKza\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{I13YzNy71:\"24px\"}},children:/*#__PURE__*/_jsx(ComponentServicesCard,{dB3Dx5gxf:\"Fica na d\\xfavida na hora de definir o valor dos seus servi\\xe7os e acaba cobrando menos do que merece? A falta de uma precifica\\xe7\\xe3o estrat\\xe9gica \\xe9 um dos maiores vil\\xf5es do sucesso financeiro na advocacia. Aprenda a valorizar seu trabalho e a cobrar o pre\\xe7o justo, sem medo de perder clientes.\",height:\"100%\",I13YzNy71:\"42px\",id:\"FQF0fpKza\",kVcww4jOA:\"https://framerusercontent.com/assets/dkNioVyllVtSKGB8UvO7pEJmBAw.png\",layoutId:\"FQF0fpKza\",style:{width:\"100%\"},T83UTcd_Z:\"Profissionais que n\\xe3o sabem precificar corretamente seus honor\\xe1rios\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ulomne\",\"data-framer-name\":\"PRE\\xc7O\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1evsnhb\",\"data-framer-name\":\"Section Services Pricing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{y:(componentViewport?.y||0)+0+1060+20+6143.9+90+0+0+-14210854715202004e-30},IerVgvB7t:{y:(componentViewport?.y||0)+0+681+20+4268.4+90+5684341886080802e-29+0+0},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+3604.5+90+5684341886080802e-29+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+769+20+3226.5+90+5684341886080802e-29+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hn0q8q-container\",nodeId:\"Ykt7oPsyv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"Ykt7oPsyv\",IIlG6wlDc:\"QUANTO VAI CUSTAR ?\",layoutId:\"Ykt7oPsyv\",variant:\"TtzJe9706\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-182t9n5\",\"data-framer-name\":\"Info Services Pricing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-weight\":\"400\"},children:\"QUERO \"}),\"PARTICIPAR\"]})}),fonts:[\"Inter-Black\",\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"77px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"QUERO PARTICIPAR\"})}),className:\"framer-10ipfqo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 163, 163)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Por apenas R$29,90\"}),\", voc\\xea ter\\xe1 acesso a um treinamento ao vivo, din\\xe2mico e interativo, que vai revolucionar sua carreira na advocacia.\"]})}),className:\"framer-hbbuc9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3spuge\",\"data-framer-name\":\"Section Price Card\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:\"354px\",y:(componentViewport?.y||0)+0+1060+20+6143.9+90+312.9+0+0},IerVgvB7t:{y:(componentViewport?.y||0)+0+681+20+4268.4+90+351.90000000000003+0+0},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+3604.5+90+351.90000000000003+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:583,width:\"500px\",y:(componentViewport?.y||0)+0+769+20+3226.5+90+351.90000000000003+0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yjob37-container\",id:\"1yjob37\",nodeId:\"t_5wRMSr_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{Ktar7jwGZ:\"42px 24px 42px 24px\"}},children:/*#__PURE__*/_jsx(ComponentPriceCard,{gYyKj_GH0:gYyKj_GH03bnx0g({overlay:overlay3}),height:\"100%\",id:\"t_5wRMSr_\",Ktar7jwGZ:\"42px\",layoutId:\"t_5wRMSr_\",style:{width:\"100%\"},variant:\"zClg_WD5E\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-nf7yh8\"),\"data-framer-portal-id\":\"1yjob37\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"oeqsauUPb\"),/*#__PURE__*/_jsx(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-1v6lgfz\"),\"data-framer-name\":\"Blur background\",\"data-framer-portal-id\":\"1yjob37\",exit:animation1,initial:animation3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tjjsat\",\"data-framer-name\":\"Section Content Price Card Overlay\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r07b3x-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nfXEPhO60\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Typeform,{autoFocus:true,formId:\"R2s5BM\",height:\"100%\",hideFooter:false,hideHeaders:false,id:\"nfXEPhO60\",layoutId:\"nfXEPhO60\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2padw-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MFQBqOO01\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation4,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4bc08cd2-efa4-4d77-a0bc-32d17106d363, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x-circle\",iconSelection:\"House\",id:\"MFQBqOO01\",layoutId:\"MFQBqOO01\",mirrored:false,onClick:onClick1wnntms({overlay:overlay3}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})]}),getContainer())})})]})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1jz6aiv\",\"data-framer-name\":\"FAQs\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f0en1c\",\"data-framer-name\":\"Section FAQs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{y:(componentViewport?.y||0)+0+1060+20+7129.799999999999+90+0+0+0},IerVgvB7t:{y:(componentViewport?.y||0)+0+681+20+5293.299999999999+90+0+0+0},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+4629.4+90+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+769+20+4251.4+90+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vh7yms-container\",nodeId:\"tCB4Z4AYH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonTags,{b1IOr_fPo:\"var(--token-b9b152b4-3342-4794-9047-72636b0d1514, rgb(221, 255, 0))\",EdKNJOvfw:\"rgba(13, 13, 13, 0)\",EkdcjBesJ:{borderColor:'var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, rgb(38, 38, 38)) /* {\"name\":\"Dark-50\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"tCB4Z4AYH\",IIlG6wlDc:\"FAQs\",layoutId:\"tCB4Z4AYH\",variant:\"TtzJe9706\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xn7iu5\",\"data-framer-name\":\"Info FAQs\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"58px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4083373d-ce77-45f7-858d-8433fdfee663, rgb(204, 204, 204))\"},children:\"Perguntas Mais Frequente\"})}),className:\"framer-xtkbx3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l94xnc\",\"data-framer-name\":\"Section FAQs Component\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 750px)`,y:(componentViewport?.y||0)+0+1060+20+7129.799999999999+90+196.6+42+0},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 750px)`,y:(componentViewport?.y||0)+0+681+20+5293.299999999999+90+187.6+42+0},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+4629.4+90+187.6+42+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`min(${componentViewport?.width||\"100vw\"} - 100px, 750px)`,y:(componentViewport?.y||0)+0+769+20+4251.4+90+187.6+42+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e39h4l-container\",nodeId:\"icN4IXv9E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{XV1Qgqf9g:\"15px 24px 15px 24px\"}},children:/*#__PURE__*/_jsx(ComponentComponentFAQs,{height:\"100%\",id:\"icN4IXv9E\",J4fex6hzB:'O aul\\xe3o \"Do Caos aos Honor\\xe1rios\" \\xe9 uma sess\\xe3o ao vivo de 2 horas que oferece estrat\\xe9gias pr\\xe1ticas e comprovadas para transformar sua advocacia em um neg\\xf3cio lucrativo. Voc\\xea aprender\\xe1 a captar clientes, precificar seus servi\\xe7os corretamente e aumentar seu faturamento.',layoutId:\"icN4IXv9E\",style:{width:\"100%\"},TDtIwMmrH:'O que \\xe9 o aul\\xe3o \"Do Caos aos Honor\\xe1rios\"?',variant:\"hcy2F2DP5\",width:\"100%\",XV1Qgqf9g:\"15px 42px 15px 42px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 750px)`,y:(componentViewport?.y||0)+0+1060+20+7129.799999999999+90+196.6+42+64},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 750px)`,y:(componentViewport?.y||0)+0+681+20+5293.299999999999+90+187.6+42+64},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+4629.4+90+187.6+42+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`min(${componentViewport?.width||\"100vw\"} - 100px, 750px)`,y:(componentViewport?.y||0)+0+769+20+4251.4+90+187.6+42+64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6ryix-container\",nodeId:\"p6TGO0B7F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{XV1Qgqf9g:\"15px 24px 15px 24px\"}},children:/*#__PURE__*/_jsx(ComponentComponentFAQs,{height:\"100%\",id:\"p6TGO0B7F\",J4fex6hzB:\"O aul\\xe3o \\xe9 ideal para advogados que est\\xe3o cansados de trabalhar muito e faturar pouco. Se voc\\xea quer estruturar melhor seu escrit\\xf3rio, atrair clientes qualificados e aumentar seu faturamento, este aul\\xe3o \\xe9 para voc\\xea.\",layoutId:\"p6TGO0B7F\",style:{width:\"100%\"},TDtIwMmrH:\"Quem pode participar do aul\\xe3o?\",variant:\"hcy2F2DP5\",width:\"100%\",XV1Qgqf9g:\"15px 42px 15px 42px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 750px)`,y:(componentViewport?.y||0)+0+1060+20+7129.799999999999+90+196.6+42+128},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 750px)`,y:(componentViewport?.y||0)+0+681+20+5293.299999999999+90+187.6+42+128},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+4629.4+90+187.6+42+128}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`min(${componentViewport?.width||\"100vw\"} - 100px, 750px)`,y:(componentViewport?.y||0)+0+769+20+4251.4+90+187.6+42+128,children:/*#__PURE__*/_jsx(Container,{className:\"framer-25i8nz-container\",nodeId:\"mpmQXTcD0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{XV1Qgqf9g:\"15px 24px 15px 24px\"}},children:/*#__PURE__*/_jsx(ComponentComponentFAQs,{height:\"100%\",id:\"mpmQXTcD0\",J4fex6hzB:\"Ao se inscrever, voc\\xea ter\\xe1 acesso a:\\n - Aul\\xe3o ao vivo de 2 horas com conte\\xfado intensivo e transformador.\\n - Material de apoio, incluindo guias pr\\xe1ticos e checklists.\\n - Acesso a um grupo exclusivo de suporte para tirar d\\xfavidas e compartilhar experi\\xeancias.\\n\",layoutId:\"mpmQXTcD0\",style:{width:\"100%\"},TDtIwMmrH:\"O que est\\xe1 inclu\\xeddo no aul\\xe3o?\",variant:\"hcy2F2DP5\",width:\"100%\",XV1Qgqf9g:\"15px 42px 15px 42px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 750px)`,y:(componentViewport?.y||0)+0+1060+20+7129.799999999999+90+196.6+42+192},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 750px)`,y:(componentViewport?.y||0)+0+681+20+5293.299999999999+90+187.6+42+192},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+4629.4+90+187.6+42+192}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`min(${componentViewport?.width||\"100vw\"} - 100px, 750px)`,y:(componentViewport?.y||0)+0+769+20+4251.4+90+187.6+42+192,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckt2hr-container\",nodeId:\"dcn7tgJr3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{XV1Qgqf9g:\"15px 24px 15px 24px\"}},children:/*#__PURE__*/_jsx(ComponentComponentFAQs,{height:\"100%\",id:\"dcn7tgJr3\",J4fex6hzB:\"N\\xe3o se preocupe! Todos os inscritos receber\\xe3o acesso \\xe0 grava\\xe7\\xe3o do aul\\xe3o ao vivo. Assim, voc\\xea pode assistir no seu pr\\xf3prio ritmo e revisar o conte\\xfado sempre que precisar.\",layoutId:\"dcn7tgJr3\",style:{width:\"100%\"},TDtIwMmrH:\"E se eu n\\xe3o puder assistir ao aul\\xe3o ao vivo?\",variant:\"hcy2F2DP5\",width:\"100%\",XV1Qgqf9g:\"15px 42px 15px 42px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 750px)`,y:(componentViewport?.y||0)+0+1060+20+7129.799999999999+90+196.6+42+256},IerVgvB7t:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 750px)`,y:(componentViewport?.y||0)+0+681+20+5293.299999999999+90+187.6+42+256},xkp7EFE3X:{y:(componentViewport?.y||0)+0+769+20+4629.4+90+187.6+42+256}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`min(${componentViewport?.width||\"100vw\"} - 100px, 750px)`,y:(componentViewport?.y||0)+0+769+20+4251.4+90+187.6+42+256,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9bzroz-container\",nodeId:\"Gq7XdxBmT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{XV1Qgqf9g:\"15px 24px 15px 24px\"}},children:/*#__PURE__*/_jsx(ComponentComponentFAQs,{height:\"100%\",id:\"Gq7XdxBmT\",J4fex6hzB:\"Sim! Se voc\\xea n\\xe3o estiver satisfeito com o conte\\xfado do aul\\xe3o, oferecemos uma garantia incondicional. Basta nos informar e devolveremos seu dinheiro sem perguntas.\",layoutId:\"Gq7XdxBmT\",style:{width:\"100%\"},TDtIwMmrH:\"Existe alguma garantia de satisfa\\xe7\\xe3o?\",variant:\"hcy2F2DP5\",width:\"100%\",XV1Qgqf9g:\"15px 42px 15px 42px\"})})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15pk98r hidden-tl9k7p hidden-9egu64 hidden-1bnvh3r\",\"data-framer-name\":\"Blur\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fi9ikm hidden-tl9k7p hidden-9egu64 hidden-1bnvh3r\",\"data-framer-name\":\"Blur\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{y:(componentViewport?.y||0)+0+9017.4},IerVgvB7t:{y:(componentViewport?.y||0)+0+6792.9},xkp7EFE3X:{y:(componentViewport?.y||0)+0+6217}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:419,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5839,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1flw0yq-container\",nodeId:\"MWojSML0t\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eaghYTqEO:{variant:\"VVnpNM_tl\"},IerVgvB7t:{variant:\"L6uOM0XGL\"}},children:/*#__PURE__*/_jsx(NavigtionFooter,{height:\"100%\",id:\"MWojSML0t\",layoutId:\"MWojSML0t\",style:{width:\"100%\"},variant:\"d37vIqjrs\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rogbf.framer-lux5qc, .framer-Rogbf .framer-lux5qc { display: block; }\",\".framer-Rogbf.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-35f430e9-6920-40c9-af46-ef27e1274771, #0d0d0d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-Rogbf .framer-16d5c5x-container { flex: none; height: auto; opacity: 0.93; position: relative; width: 1440px; z-index: 3; }\",\".framer-Rogbf .framer-1h7418y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 16px 140px 16px 140px; position: relative; width: min-content; z-index: 1; }\",\".framer-Rogbf .framer-1b04ks9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 620px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Rogbf .framer-vz2fqd { 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 83px 0px 83px; position: relative; width: 702px; z-index: 1; }\",\".framer-Rogbf .framer-kgdtse { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 556px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rogbf .framer-3sqk6o { --framer-paragraph-spacing: 0px; flex: none; height: 89px; position: relative; white-space: pre-wrap; width: 538px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rogbf .framer-o2ii57 { align-content: flex-start; align-items: flex-start; background: linear-gradient(267.13250404542094deg, #118137 0%, rgba(15, 222, 73, 1) 100%); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 17px 24px 17px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Rogbf .framer-do9ayb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rogbf .framer-1k0qodc { --framer-paragraph-spacing: 0px; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 494px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rogbf .framer-353a0r { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0.01) -22%, rgba(0,0,0,0) -6%, rgba(0,0,0,1) 71%) add; border-bottom-left-radius: 81px; border-bottom-right-radius: 81px; border-top-left-radius: 81px; border-top-right-radius: 81px; flex: none; height: 100%; mask: linear-gradient(0deg, rgba(0, 0, 0, 0.01) -22%, rgba(0,0,0,0) -6%, rgba(0,0,0,1) 71%) add; overflow: visible; position: relative; width: 493px; }\",\".framer-Rogbf .framer-u9cr56 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; flex: none; height: 100vh; left: 0px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: fixed; right: 0px; top: 0px; z-index: 0; }\",\".framer-Rogbf .framer-w5659e { align-content: center; align-items: center; background-color: var(--token-35f430e9-6920-40c9-af46-ef27e1274771, #0d0d0d); border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",'.framer-Rogbf .framer-1qmtk7a { -webkit-filter: blur(100px); background: linear-gradient(180deg, var(--token-b9b152b4-3342-4794-9047-72636b0d1514, #ff7d56) /* {\"name\":\"Neon-500\"} */ -43%, var(--token-968b6c6d-d756-4a8a-99f9-0ef1fb58e406, rgb(255, 82, 14)) /* {\"name\":\"Accent\"} */ 100%); border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; filter: blur(100px); flex: none; height: 672px; left: -390px; opacity: 0.31; overflow: visible; position: absolute; top: 4127px; width: 580px; z-index: 1; }','.framer-Rogbf .framer-36btsa { -webkit-filter: blur(100px); background: linear-gradient(180deg, var(--token-b9b152b4-3342-4794-9047-72636b0d1514, #ff7d56) /* {\"name\":\"Neon-500\"} */ -43%, var(--token-968b6c6d-d756-4a8a-99f9-0ef1fb58e406, rgb(255, 82, 14)) /* {\"name\":\"Accent\"} */ 100%); border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; filter: blur(100px); flex: none; height: 672px; left: -478px; opacity: 0.31; overflow: visible; position: absolute; top: 1750px; width: 580px; z-index: 1; }',\".framer-Rogbf .framer-1l2wxil, .framer-Rogbf .framer-1ulomne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 90px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-1ex49zl, .framer-Rogbf .framer-610vyu, .framer-Rogbf .framer-1evsnhb, .framer-Rogbf .framer-1f0en1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 750px; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-1kefqyh-container, .framer-Rogbf .framer-3sjbya-container, .framer-Rogbf .framer-5jynim-container, .framer-Rogbf .framer-132wj1n-container, .framer-Rogbf .framer-6p0cz8-container, .framer-Rogbf .framer-1hn0q8q-container, .framer-Rogbf .framer-1vh7yms-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Rogbf .framer-1em79ni, .framer-Rogbf .framer-1tb4a5c, .framer-Rogbf .framer-182t9n5, .framer-Rogbf .framer-xn7iu5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-i9d42z, .framer-Rogbf .framer-1rqjzrq, .framer-Rogbf .framer-bpllvf, .framer-Rogbf .framer-1kxodkt, .framer-Rogbf .framer-hz35n3, .framer-Rogbf .framer-1ub6d3e, .framer-Rogbf .framer-e14vsa, .framer-Rogbf .framer-eaggd1, .framer-Rogbf .framer-19x3w3x, .framer-Rogbf .framer-199kh13, .framer-Rogbf .framer-10ipfqo, .framer-Rogbf .framer-hbbuc9, .framer-Rogbf .framer-xtkbx3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rogbf .framer-1fyykqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-tiumci-container, .framer-Rogbf .framer-1x4syy4-container, .framer-Rogbf .framer-1nbs5jl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Rogbf.framer-fcmh7o, .framer-Rogbf.framer-182mprl, .framer-Rogbf.framer-e9r7o4, .framer-Rogbf.framer-nf7yh8 { background-color: rgba(0, 0, 0, 0); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-Rogbf.framer-y05mms, .framer-Rogbf.framer-1i4q3ik, .framer-Rogbf.framer-9w5g43, .framer-Rogbf.framer-1v6lgfz { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.5); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: hidden; padding: 24px; pointer-events: none; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 4; }\",\".framer-Rogbf .framer-irtlnx, .framer-Rogbf .framer-1gatb0w, .framer-Rogbf .framer-1f7a4nq { --border-bottom-width: 1px; --border-color: var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-bbbf66bc-6d3e-442c-9402-49fd6e26aac7, #161616); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 42px; pointer-events: auto; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rogbf .framer-1qhx5ug, .framer-Rogbf .framer-1gow5d8, .framer-Rogbf .framer-10s3bwm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rogbf .framer-1cq9k4, .framer-Rogbf .framer-1lixcc8, .framer-Rogbf .framer-1087liw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-1epo4n9-container, .framer-Rogbf .framer-1qjpqx4-container, .framer-Rogbf .framer-1tsd9h1-container { flex: none; height: auto; max-width: 175px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-di3l32-container, .framer-Rogbf .framer-19fowf2-container, .framer-Rogbf .framer-16memf2-container, .framer-Rogbf .framer-1f2padw-container { cursor: pointer; flex: none; height: 50px; position: absolute; right: 20px; top: 20px; width: 50px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Rogbf .framer-1cvvtat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1127px; justify-content: center; overflow: visible; padding: 90px 50px 0px 50px; position: relative; width: 1440px; }\",\".framer-Rogbf .framer-9yd68h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 1037px; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 1222px; }\",\".framer-Rogbf .framer-1qtate1-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Rogbf .framer-1dsbkad { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Rogbf .framer-1nc3kwp { flex: none; height: 51%; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rogbf .framer-15qwpub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 170px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-19ecru4 { flex: none; height: auto; opacity: 0; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rogbf .framer-h0ccvo { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-14dovxc-container, .framer-Rogbf .framer-119lwx5-container, .framer-Rogbf .framer-1iqkggx-container, .framer-Rogbf .framer-z1j9g2-container, .framer-Rogbf .framer-155h58z-container, .framer-Rogbf .framer-c79k1z-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-Rogbf .framer-3spuge { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-1yjob37-container { flex: none; height: auto; position: relative; width: 500px; }\",\".framer-Rogbf .framer-1tjjsat { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rogbf .framer-r07b3x-container { flex: 1 0 0px; height: 600px; position: relative; width: 1px; }\",\".framer-Rogbf .framer-1jz6aiv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 90px 50px 127px 50px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-l94xnc { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0px 0px 1px var(--token-b1990ab1-c2a9-42b4-af29-b4d56f0b04db, #262626); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 750px; overflow: visible; padding: 42px 0px 42px 0px; position: relative; width: 100%; }\",\".framer-Rogbf .framer-1e39h4l-container, .framer-Rogbf .framer-1a6ryix-container, .framer-Rogbf .framer-25i8nz-container, .framer-Rogbf .framer-1ckt2hr-container, .framer-Rogbf .framer-9bzroz-container { flex: none; height: auto; position: relative; width: 100%; }\",'.framer-Rogbf .framer-15pk98r { -webkit-filter: blur(100px); background: linear-gradient(180deg, var(--token-b9b152b4-3342-4794-9047-72636b0d1514, #ff7d56) /* {\"name\":\"Neon-500\"} */ -43%, var(--token-968b6c6d-d756-4a8a-99f9-0ef1fb58e406, rgb(255, 82, 14)) /* {\"name\":\"Accent\"} */ 100%); border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; filter: blur(100px); flex: none; height: 672px; left: -216px; opacity: 0.31; overflow: visible; position: absolute; top: 3418px; width: 580px; z-index: 1; }','.framer-Rogbf .framer-1fi9ikm { -webkit-filter: blur(100px); background: linear-gradient(180deg, var(--token-b9b152b4-3342-4794-9047-72636b0d1514, #ff7d56) /* {\"name\":\"Neon-500\"} */ -43%, var(--token-968b6c6d-d756-4a8a-99f9-0ef1fb58e406, rgb(255, 82, 14)) /* {\"name\":\"Accent\"} */ 100%); border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; filter: blur(100px); flex: none; height: 672px; left: -471px; opacity: 0.31; overflow: visible; position: absolute; top: 674px; width: 580px; z-index: 1; }',\".framer-Rogbf .framer-1flw0yq-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rogbf.framer-72rtr7, .framer-Rogbf .framer-1h7418y, .framer-Rogbf .framer-1b04ks9, .framer-Rogbf .framer-vz2fqd, .framer-Rogbf .framer-o2ii57, .framer-Rogbf .framer-w5659e, .framer-Rogbf .framer-1l2wxil, .framer-Rogbf .framer-1ex49zl, .framer-Rogbf .framer-1em79ni, .framer-Rogbf .framer-1fyykqx, .framer-Rogbf.framer-y05mms, .framer-Rogbf .framer-irtlnx, .framer-Rogbf .framer-1qhx5ug, .framer-Rogbf .framer-1cq9k4, .framer-Rogbf.framer-1i4q3ik, .framer-Rogbf .framer-1gatb0w, .framer-Rogbf .framer-1gow5d8, .framer-Rogbf .framer-1lixcc8, .framer-Rogbf.framer-9w5g43, .framer-Rogbf .framer-1f7a4nq, .framer-Rogbf .framer-10s3bwm, .framer-Rogbf .framer-1087liw, .framer-Rogbf .framer-1cvvtat, .framer-Rogbf .framer-9yd68h, .framer-Rogbf .framer-1dsbkad, .framer-Rogbf .framer-15qwpub, .framer-Rogbf .framer-610vyu, .framer-Rogbf .framer-1tb4a5c, .framer-Rogbf .framer-1ulomne, .framer-Rogbf .framer-1evsnhb, .framer-Rogbf .framer-182t9n5, .framer-Rogbf .framer-3spuge, .framer-Rogbf.framer-1v6lgfz, .framer-Rogbf .framer-1tjjsat, .framer-Rogbf .framer-1jz6aiv, .framer-Rogbf .framer-1f0en1c, .framer-Rogbf .framer-xn7iu5, .framer-Rogbf .framer-l94xnc { gap: 0px; } .framer-Rogbf.framer-72rtr7 > *, .framer-Rogbf .framer-w5659e > *, .framer-Rogbf .framer-1l2wxil > *, .framer-Rogbf .framer-1cvvtat > *, .framer-Rogbf .framer-15qwpub > *, .framer-Rogbf .framer-1ulomne > *, .framer-Rogbf .framer-1jz6aiv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rogbf.framer-72rtr7 > :first-child, .framer-Rogbf .framer-vz2fqd > :first-child, .framer-Rogbf .framer-w5659e > :first-child, .framer-Rogbf .framer-1l2wxil > :first-child, .framer-Rogbf .framer-1ex49zl > :first-child, .framer-Rogbf .framer-1em79ni > :first-child, .framer-Rogbf .framer-1qhx5ug > :first-child, .framer-Rogbf .framer-1cq9k4 > :first-child, .framer-Rogbf .framer-1gow5d8 > :first-child, .framer-Rogbf .framer-1lixcc8 > :first-child, .framer-Rogbf .framer-10s3bwm > :first-child, .framer-Rogbf .framer-1087liw > :first-child, .framer-Rogbf .framer-1cvvtat > :first-child, .framer-Rogbf .framer-1dsbkad > :first-child, .framer-Rogbf .framer-15qwpub > :first-child, .framer-Rogbf .framer-610vyu > :first-child, .framer-Rogbf .framer-1tb4a5c > :first-child, .framer-Rogbf .framer-1ulomne > :first-child, .framer-Rogbf .framer-1evsnhb > :first-child, .framer-Rogbf .framer-182t9n5 > :first-child, .framer-Rogbf .framer-1jz6aiv > :first-child, .framer-Rogbf .framer-1f0en1c > :first-child, .framer-Rogbf .framer-xn7iu5 > :first-child, .framer-Rogbf .framer-l94xnc > :first-child { margin-top: 0px; } .framer-Rogbf.framer-72rtr7 > :last-child, .framer-Rogbf .framer-vz2fqd > :last-child, .framer-Rogbf .framer-w5659e > :last-child, .framer-Rogbf .framer-1l2wxil > :last-child, .framer-Rogbf .framer-1ex49zl > :last-child, .framer-Rogbf .framer-1em79ni > :last-child, .framer-Rogbf .framer-1qhx5ug > :last-child, .framer-Rogbf .framer-1cq9k4 > :last-child, .framer-Rogbf .framer-1gow5d8 > :last-child, .framer-Rogbf .framer-1lixcc8 > :last-child, .framer-Rogbf .framer-10s3bwm > :last-child, .framer-Rogbf .framer-1087liw > :last-child, .framer-Rogbf .framer-1cvvtat > :last-child, .framer-Rogbf .framer-1dsbkad > :last-child, .framer-Rogbf .framer-15qwpub > :last-child, .framer-Rogbf .framer-610vyu > :last-child, .framer-Rogbf .framer-1tb4a5c > :last-child, .framer-Rogbf .framer-1ulomne > :last-child, .framer-Rogbf .framer-1evsnhb > :last-child, .framer-Rogbf .framer-182t9n5 > :last-child, .framer-Rogbf .framer-1jz6aiv > :last-child, .framer-Rogbf .framer-1f0en1c > :last-child, .framer-Rogbf .framer-xn7iu5 > :last-child, .framer-Rogbf .framer-l94xnc > :last-child { margin-bottom: 0px; } .framer-Rogbf .framer-1h7418y > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Rogbf .framer-1h7418y > :first-child, .framer-Rogbf .framer-1b04ks9 > :first-child, .framer-Rogbf .framer-o2ii57 > :first-child, .framer-Rogbf .framer-1fyykqx > :first-child, .framer-Rogbf.framer-y05mms > :first-child, .framer-Rogbf .framer-irtlnx > :first-child, .framer-Rogbf.framer-1i4q3ik > :first-child, .framer-Rogbf .framer-1gatb0w > :first-child, .framer-Rogbf.framer-9w5g43 > :first-child, .framer-Rogbf .framer-1f7a4nq > :first-child, .framer-Rogbf .framer-9yd68h > :first-child, .framer-Rogbf .framer-3spuge > :first-child, .framer-Rogbf.framer-1v6lgfz > :first-child, .framer-Rogbf .framer-1tjjsat > :first-child { margin-left: 0px; } .framer-Rogbf .framer-1h7418y > :last-child, .framer-Rogbf .framer-1b04ks9 > :last-child, .framer-Rogbf .framer-o2ii57 > :last-child, .framer-Rogbf .framer-1fyykqx > :last-child, .framer-Rogbf.framer-y05mms > :last-child, .framer-Rogbf .framer-irtlnx > :last-child, .framer-Rogbf.framer-1i4q3ik > :last-child, .framer-Rogbf .framer-1gatb0w > :last-child, .framer-Rogbf.framer-9w5g43 > :last-child, .framer-Rogbf .framer-1f7a4nq > :last-child, .framer-Rogbf .framer-9yd68h > :last-child, .framer-Rogbf .framer-3spuge > :last-child, .framer-Rogbf.framer-1v6lgfz > :last-child, .framer-Rogbf .framer-1tjjsat > :last-child { margin-right: 0px; } .framer-Rogbf .framer-1b04ks9 > *, .framer-Rogbf .framer-o2ii57 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rogbf .framer-vz2fqd > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Rogbf .framer-1ex49zl > *, .framer-Rogbf .framer-610vyu > *, .framer-Rogbf .framer-1evsnhb > *, .framer-Rogbf .framer-1f0en1c > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Rogbf .framer-1em79ni > *, .framer-Rogbf .framer-1dsbkad > *, .framer-Rogbf .framer-1tb4a5c > *, .framer-Rogbf .framer-182t9n5 > *, .framer-Rogbf .framer-xn7iu5 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Rogbf .framer-1fyykqx > *, .framer-Rogbf .framer-3spuge > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Rogbf.framer-y05mms > *, .framer-Rogbf .framer-irtlnx > *, .framer-Rogbf.framer-1i4q3ik > *, .framer-Rogbf .framer-1gatb0w > *, .framer-Rogbf.framer-9w5g43 > *, .framer-Rogbf .framer-1f7a4nq > *, .framer-Rogbf.framer-1v6lgfz > *, .framer-Rogbf .framer-1tjjsat > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rogbf .framer-1qhx5ug > *, .framer-Rogbf .framer-1gow5d8 > *, .framer-Rogbf .framer-10s3bwm > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Rogbf .framer-1cq9k4 > *, .framer-Rogbf .framer-1lixcc8 > *, .framer-Rogbf .framer-1087liw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Rogbf .framer-9yd68h > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Rogbf .framer-l94xnc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-Rogbf[data-border=\"true\"]::after, .framer-Rogbf [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }','.framer-Rogbf[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-Rogbf [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-Rogbf[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-Rogbf [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-Rogbf[data-hide-scrollbars=\"true\"], .framer-Rogbf [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-Rogbf.framer-72rtr7 { height: 6464px; width: 1200px; } .framer-Rogbf .framer-16d5c5x-container { width: 1200px; } .framer-Rogbf .framer-1cvvtat { width: 1013px; } .framer-Rogbf .framer-1nc3kwp { height: 67%; width: 80%; } .framer-Rogbf .framer-h0ccvo { grid-template-columns: repeat(2, minmax(50px, 1fr)); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Rogbf.framer-72rtr7, .framer-Rogbf .framer-16d5c5x-container { width: 810px; } .framer-Rogbf .framer-1h7418y { gap: 0px; max-width: 810px; width: 730px; } .framer-Rogbf .framer-1b04ks9 { height: min-content; order: 0; width: 714px; } .framer-Rogbf .framer-vz2fqd { gap: 26px; height: 472px; padding: 0px; width: 427px; } .framer-Rogbf .framer-kgdtse { width: 413px; } .framer-Rogbf .framer-3sqk6o { width: 423px; } .framer-Rogbf .framer-1k0qodc { width: 406px; } .framer-Rogbf .framer-353a0r { height: 532px; width: 258px; } .framer-Rogbf .framer-1l2wxil, .framer-Rogbf .framer-1ulomne { padding: 90px 30px 0px 30px; } .framer-Rogbf .framer-1fyykqx, .framer-Rogbf .framer-3spuge { flex-direction: column; gap: 50px; } .framer-Rogbf .framer-tiumci-container, .framer-Rogbf .framer-1x4syy4-container, .framer-Rogbf .framer-1nbs5jl-container { flex: none; width: 100%; } .framer-Rogbf .framer-1cvvtat { padding: 90px 30px 0px 30px; width: 767px; } .framer-Rogbf .framer-9yd68h { height: 1111px; width: 707px; } .framer-Rogbf .framer-1dsbkad { height: min-content; } .framer-Rogbf .framer-19x3w3x { width: 346px; } .framer-Rogbf .framer-1nc3kwp { height: 826px; width: 277px; } .framer-Rogbf .framer-15qwpub { padding: 170px 30px 0px 30px; } .framer-Rogbf .framer-h0ccvo { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-Rogbf .framer-1jz6aiv { padding: 90px 30px 127px 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rogbf .framer-1h7418y, .framer-Rogbf .framer-vz2fqd, .framer-Rogbf .framer-1fyykqx, .framer-Rogbf .framer-3spuge { gap: 0px; } .framer-Rogbf .framer-1h7418y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rogbf .framer-1h7418y > :first-child { margin-left: 0px; } .framer-Rogbf .framer-1h7418y > :last-child { margin-right: 0px; } .framer-Rogbf .framer-vz2fqd > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-Rogbf .framer-vz2fqd > :first-child, .framer-Rogbf .framer-1fyykqx > :first-child, .framer-Rogbf .framer-3spuge > :first-child { margin-top: 0px; } .framer-Rogbf .framer-vz2fqd > :last-child, .framer-Rogbf .framer-1fyykqx > :last-child, .framer-Rogbf .framer-3spuge > :last-child { margin-bottom: 0px; } .framer-Rogbf .framer-1fyykqx > *, .framer-Rogbf .framer-3spuge > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (max-width: 809px) { .framer-Rogbf.framer-72rtr7 { width: 390px; } .framer-Rogbf .framer-16d5c5x-container { order: 0; width: 382px; } .framer-Rogbf .framer-1h7418y { max-width: 100%; order: 1; padding: 0px 140px 0px 140px; } .framer-Rogbf .framer-1b04ks9 { flex-direction: column; height: min-content; width: 362px; } .framer-Rogbf .framer-vz2fqd { align-content: center; align-items: center; order: 1; width: min-content; } .framer-Rogbf .framer-kgdtse { order: 0; width: 359px; } .framer-Rogbf .framer-3sqk6o { height: 145px; order: 1; width: 344px; } .framer-Rogbf .framer-o2ii57 { align-content: center; align-items: center; height: 69px; order: 2; width: 356px; } .framer-Rogbf .framer-1k0qodc { height: 70px; order: 3; width: 332px; } .framer-Rogbf .framer-353a0r { height: 383px; order: 0; width: 314px; } .framer-Rogbf .framer-u9cr56 { order: 2; } .framer-Rogbf .framer-w5659e { order: 3; } .framer-Rogbf .framer-1l2wxil { padding: 11px 24px 0px 24px; } .framer-Rogbf .framer-1ex49zl, .framer-Rogbf .framer-610vyu, .framer-Rogbf .framer-1evsnhb, .framer-Rogbf .framer-1f0en1c { gap: 24px; } .framer-Rogbf .framer-1fyykqx, .framer-Rogbf .framer-3spuge { flex-direction: column; gap: 50px; } .framer-Rogbf .framer-tiumci-container, .framer-Rogbf .framer-1x4syy4-container, .framer-Rogbf .framer-1nbs5jl-container { flex: none; width: 100%; } .framer-Rogbf.framer-y05mms, .framer-Rogbf.framer-1i4q3ik, .framer-Rogbf.framer-9w5g43, .framer-Rogbf.framer-1v6lgfz { align-content: flex-start; align-items: flex-start; overflow-y: auto; padding: 0px; } .framer-Rogbf .framer-irtlnx, .framer-Rogbf .framer-1gatb0w, .framer-Rogbf .framer-1f7a4nq { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; padding: 42px 24px 42px 24px; will-change: unset; } .framer-Rogbf .framer-1qhx5ug, .framer-Rogbf .framer-1gow5d8, .framer-Rogbf .framer-10s3bwm { gap: 50px; } .framer-Rogbf .framer-1cvvtat { height: 1857px; padding: 90px 24px 0px 24px; width: 340px; } .framer-Rogbf .framer-9yd68h { flex-direction: column; gap: 24px; height: 1699px; width: 292px; } .framer-Rogbf .framer-1qtate1-container { flex: none; height: auto; width: 100%; } .framer-Rogbf .framer-1dsbkad { flex: none; height: min-content; width: 100%; } .framer-Rogbf .framer-1nc3kwp { height: 949px; width: 96%; } .framer-Rogbf .framer-15qwpub { padding: 170px 24px 0px 24px; } .framer-Rogbf .framer-h0ccvo { gap: 50px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-Rogbf .framer-1ulomne { padding: 90px 24px 0px 24px; } .framer-Rogbf .framer-1yjob37-container { width: 354px; } .framer-Rogbf .framer-1tjjsat { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 100vh; will-change: unset; } .framer-Rogbf .framer-r07b3x-container { height: 100%; } .framer-Rogbf .framer-1jz6aiv { padding: 90px 24px 127px 24px; } .framer-Rogbf .framer-1flw0yq-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rogbf .framer-1b04ks9, .framer-Rogbf .framer-1ex49zl, .framer-Rogbf .framer-1fyykqx, .framer-Rogbf .framer-1qhx5ug, .framer-Rogbf .framer-1gow5d8, .framer-Rogbf .framer-10s3bwm, .framer-Rogbf .framer-9yd68h, .framer-Rogbf .framer-610vyu, .framer-Rogbf .framer-h0ccvo, .framer-Rogbf .framer-1evsnhb, .framer-Rogbf .framer-3spuge, .framer-Rogbf .framer-1f0en1c { gap: 0px; } .framer-Rogbf .framer-1b04ks9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Rogbf .framer-1b04ks9 > :first-child, .framer-Rogbf .framer-1ex49zl > :first-child, .framer-Rogbf .framer-1fyykqx > :first-child, .framer-Rogbf .framer-1qhx5ug > :first-child, .framer-Rogbf .framer-1gow5d8 > :first-child, .framer-Rogbf .framer-10s3bwm > :first-child, .framer-Rogbf .framer-9yd68h > :first-child, .framer-Rogbf .framer-610vyu > :first-child, .framer-Rogbf .framer-1evsnhb > :first-child, .framer-Rogbf .framer-3spuge > :first-child, .framer-Rogbf .framer-1f0en1c > :first-child { margin-top: 0px; } .framer-Rogbf .framer-1b04ks9 > :last-child, .framer-Rogbf .framer-1ex49zl > :last-child, .framer-Rogbf .framer-1fyykqx > :last-child, .framer-Rogbf .framer-1qhx5ug > :last-child, .framer-Rogbf .framer-1gow5d8 > :last-child, .framer-Rogbf .framer-10s3bwm > :last-child, .framer-Rogbf .framer-9yd68h > :last-child, .framer-Rogbf .framer-610vyu > :last-child, .framer-Rogbf .framer-1evsnhb > :last-child, .framer-Rogbf .framer-3spuge > :last-child, .framer-Rogbf .framer-1f0en1c > :last-child { margin-bottom: 0px; } .framer-Rogbf .framer-1ex49zl > *, .framer-Rogbf .framer-9yd68h > *, .framer-Rogbf .framer-610vyu > *, .framer-Rogbf .framer-1evsnhb > *, .framer-Rogbf .framer-1f0en1c > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rogbf .framer-1fyykqx > *, .framer-Rogbf .framer-1qhx5ug > *, .framer-Rogbf .framer-1gow5d8 > *, .framer-Rogbf .framer-10s3bwm > *, .framer-Rogbf .framer-3spuge > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Rogbf .framer-h0ccvo > *, .framer-Rogbf .framer-h0ccvo > :first-child, .framer-Rogbf .framer-h0ccvo > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6557\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xkp7EFE3X\":{\"layout\":[\"fixed\",\"fixed\"]},\"IerVgvB7t\":{\"layout\":[\"fixed\",\"auto\"]},\"eaghYTqEO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"hPiAwepfo\":{\"pattern\":\":hPiAwepfo\",\"name\":\"included-features\"},\"bbY0hUvyI\":{\"pattern\":\":bbY0hUvyI\",\"name\":\"the-team\"},\"iPceaDHKk\":{\"pattern\":\":iPceaDHKk\",\"name\":\"our-services\"},\"l72w5dQV_\":{\"pattern\":\":l72w5dQV_\",\"name\":\"services-pricing\"},\"yt091B0f4\":{\"pattern\":\":yt091B0f4\",\"name\":\"faqs\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Rogbf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6557,width:1440};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/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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.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/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:\"Bebas Neue\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXooxWtrygbi49c.woff2\",weight:\"400\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBM731BKMSK.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\"}]},...NavigtionNavFonts,...ButtonTagsFonts,...ComponentFeaturesCardFonts,...ButtonButtonFonts,...PhosphorFonts,...ComponentTeamCardFonts,...ComponentServicesCardFonts,...ComponentPriceCardFonts,...TypeformFonts,...ComponentComponentFAQsFonts,...NavigtionFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xkp7EFE3X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IerVgvB7t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eaghYTqEO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"hPiAwepfo\\\":{\\\"pattern\\\":\\\":hPiAwepfo\\\",\\\"name\\\":\\\"included-features\\\"},\\\"bbY0hUvyI\\\":{\\\"pattern\\\":\\\":bbY0hUvyI\\\",\\\"name\\\":\\\"the-team\\\"},\\\"iPceaDHKk\\\":{\\\"pattern\\\":\\\":iPceaDHKk\\\",\\\"name\\\":\\\"our-services\\\"},\\\"l72w5dQV_\\\":{\\\"pattern\\\":\\\":l72w5dQV_\\\",\\\"name\\\":\\\"services-pricing\\\"},\\\"yt091B0f4\\\":{\\\"pattern\\\":\\\":yt091B0f4\\\",\\\"name\\\":\\\"faqs\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6557\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "commonjsGlobal", "window", "global", "createCommonjsModule", "fn", "basedir", "module", "path", "base", "commonjsRequire", "build", "exports", "e", "t", "commonjsGlobal", "e2", "t2", "n", "o", "e3", "t3", "n2", "o2", "r2", "r", "i", "a", "c", "u", "s", "d", "l", "f", "p", "v", "m", "e4", "t4", "n3", "h", "b", "i2", "a2", "y", "g", "O", "_", "w", "P", "E", "C", "window", "s2", "d2", "l2", "f2", "p2", "v2", "e5", "i3", "c2", "i4", "navigator", "createPopover", "build", "createPopup", "createSidetab", "createSlider", "createWidget", "emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "Widget", "withCSS", "id", "style", "onSubmit", "hideFooter", "hideHeaders", "disableAutoFocus", "props", "container", "pe", "ue", "widget", "createWidget", "p", "Typeform", "formId", "autoFocus", "handleSubmit", "e", "motion", "containerStyles", "u", "emptyStateStyle", "stateTitleStyle", "stateParagraphStyle", "addPropertyControls", "ControlType", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "SrcType", "baseUrl", "getLogoUrl", "company", "Logo", "props", "radius", "isSearch", "srcType", "srcUrl", "srcFile", "style", "logoURL", "se", "emptyState", "RenderTarget", "p", "NullState", "baseStyles", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "LogoFonts", "getFonts", "Logo", "LogoControls", "getPropertyControls", "serializationHash", "variantClassNames", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "content", "height", "id", "logo", "name1", "padding", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "kVcww4jOA", "T83UTcd_Z", "dB3Dx5gxf", "I13YzNy71", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Logo", "RichText2", "css", "FramerBBTcXnPdl", "withCSS", "BBTcXnPdl_default", "addPropertyControls", "LogoControls", "ControlType", "addFonts", "LogoFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "padding", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TDtIwMmrH", "J4fex6hzB", "XV1Qgqf9g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1hghyti", "args", "onTaph4yt3h", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramercQZGrYDYv", "withCSS", "cQZGrYDYv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "function1", "height", "id", "image", "name1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wczRppDJI", "QktLVpXDD", "gsvBbnaKP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Frameri92KiItYr", "withCSS", "i92KiItYr_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "radiusForCorner", "value", "cornerIndex", "segments", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "radius", "visibleSectionMore", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mREhjIwVN", "mDwzIzryJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerIXqppH7zP", "withCSS", "IXqppH7zP_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "click3", "height", "hover", "id", "image", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cX6xJCJqq", "KXD2GwAEI", "vfWpbuOx_", "xh0wxBs_T", "GuE7eamxx", "pPrPQgds2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapq2ffjr", "args", "onMouseEnter15oh3b4", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerka7lqP9Eq", "withCSS", "ka7lqP9Eq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionSectionWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "border", "colorText", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EkdcjBesJ", "b1IOr_fPo", "IIlG6wlDc", "EdKNJOvfw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramersJMGTD9OA", "withCSS", "sJMGTD9OA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonTagsFonts", "getFonts", "sJMGTD9OA_default", "PhosphorFonts", "Icon", "ButtonButtonFonts", "lxAble9qC_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "overlay", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Ktar7jwGZ", "gYyKj_GH0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "bd0c6HjBp9zxqno", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerPu1fEhfuY", "withCSS", "Pu1fEhfuY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "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", "u", "SVG", "RichText2", "Link", "css", "FramerVyoia5Wdp", "withCSS", "Vyoia5Wdp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigtionNavFonts", "getFonts", "IXqppH7zP_default", "ButtonTagsFonts", "sJMGTD9OA_default", "RichTextWithFX", "withFX", "RichText2", "ComponentFeaturesCardFonts", "ka7lqP9Eq_default", "ButtonButtonFonts", "lxAble9qC_default", "PhosphorFonts", "Icon", "ContainerWithFX", "Container", "ComponentTeamCardFonts", "i92KiItYr_default", "ComponentServicesCardFonts", "BBTcXnPdl_default", "ComponentPriceCardFonts", "Pu1fEhfuY_default", "TypeformFonts", "Typeform", "ComponentComponentFAQsFonts", "cQZGrYDYv_default", "MotionDivWithFX", "motion", "NavigtionFooterFonts", "Vyoia5Wdp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "transition3", "addImageAlt", "image", "alt", "transition4", "animation1", "animation2", "animation3", "transition5", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition6", "animation5", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "cX6xJCJqq3bnx0g", "overlay", "loadMore", "args", "bd0c6HjBp1wnntms", "onClick1wnntms", "gYyKj_GH03bnx0g", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "l", "AnimatePresence", "Ga", "overlay1", "overlay2", "overlay3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
