{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/9N50PMbCaZNc8J76vXRL/zbPz4O3CnWxY2tjbhM7b/TextMask.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://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js", "ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/ntc28KKWc8rfO9EBqBWF/K5LHKqPIHO35feaUuZ3x/AqpELfsT6.js", "ssg:https://framerusercontent.com/modules/6UIgnDucqe5anoXuGMrZ/AdafbYNcw82hoaDNFI5h/GlYLCIsqO.js", "ssg:https://framerusercontent.com/modules/JZbDBSl16r485O6LSMWJ/3X9Z7W1BFPEKeIca2aL5/H8AyTRi1L.js", "ssg:https://framerusercontent.com/modules/AP2LVDO3aSjWCoaIAX7y/wDupEpDoTiGJt9wzBYWc/jF6O2OetP.js", "ssg:https://framerusercontent.com/modules/mTUgXhjQSMfLQsZ332pa/XK4ZQi19LE6JgnmEftpU/mE92O2nsd.js", "ssg:https://framerusercontent.com/modules/PEbYyADGzK4x4bJL2enJ/S0FJEhHcGGz4ZGC60CWR/rr6TnnYrw.js", "ssg:https://framerusercontent.com/modules/LEfMyhtGpvG09s85lxe5/QQ1gLB2wNHavksGj7rIl/sOOpYCiS5.js", "ssg:https://framerusercontent.com/modules/ZsQQRoL0eL3MugsoSiii/kflHrTbhX6cRcz9lGvvp/sQnl2ddOb.js", "ssg:https://framerusercontent.com/modules/GN0Cx3tB3FHxMQRcUNh9/sEl2hKzb3HKW8rWF4WsX/u374cC128.js", "ssg:https://framerusercontent.com/modules/n5ytOTEKnEUMrBXZ7aIY/Rr90SvJrBBboQlR4ILLu/FLATpECuM.js", "ssg:https://framerusercontent.com/modules/17aq0tA3F8q0XlHiWXXc/IyB3fZFOWTKabmiZrtRY/VpxGNXEBH.js", "ssg:https://framerusercontent.com/modules/x3Y97xvi2O3vBJI7PvVI/fiCwNC3DrWqiyXL0HI8z/zukirTz23.js", "ssg:https://framerusercontent.com/modules/z6Eu7cWT2DXsfGZdsF10/tL1FAxb5zg2OjijJ5S8K/BlYS76KAP.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * TEXTMASK\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n */ export default function TextMask(props){const{textContent,image,bgSizeType,bgSize,bgPosX,bgPosY,font,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft}=props;const{color,fontSize,fontFamily,fontWeight,fontStyle,textAlign,letterSpacing,whiteSpace,lineHeight,lineHeightPixels,lineHeightType}=font;const backgroundSizeValue=props.bgSizeType===\"cover\"||props.bgSizeType===\"contain\"?bgSizeType:`${bgSize}%`;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;return /*#__PURE__*/ _jsx(\"h1\",{style:{backgroundImage:image&&`url(${image.src})`,backgroundSize:backgroundSizeValue,backgroundRepeat:\"no-repeat\",backgroundPosition:`${bgPosX}% ${bgPosY}%`,backgroundClip:image&&\"text\",WebkitBackgroundClip:image&&\"text\",WebkitTextFillColor:image&&\"transparent\",textFillColor:image&&\"transparent\",color,fontSize,fontFamily:`\"${fontFamily}\", sans-serif`,fontStyle,fontWeight,textAlign,letterSpacing,whiteSpace,lineHeight:lineHeightType?lineHeight:`${lineHeightPixels}px`,margin:0,padding:paddingValue},children:textContent});};/* Default Properties */ TextMask.defaultProps={textContent:\"Hello\",bgSize:100,bgPosX:0,bgPosY:0,font:{fontSize:100,lineHeight:1,lineHeightType:true}};TextMask.displayName=\"Text Mask\";/* Property Controls */ addPropertyControls(TextMask,{textContent:{type:ControlType.String,title:\"Text\",defaultValue:\"Hello\"},image:{type:ControlType.ResponsiveImage,title:\"Image\"},bgSizeType:{type:ControlType.Enum,options:[\"cover\",\"contain\",\"percentage\"],optionTitles:[\"Cover\",\"Contain\",\"Percentage\"],title:\"Background\",defaultValue:\"cover\"},bgSize:{type:ControlType.Number,min:0,max:200,defaultValue:100,unit:\"%\",title:\"Size\",hidden:props=>props.bgSizeType===\"cover\"||props.bgSizeType===\"contain\"},bgPosX:{type:ControlType.Number,min:0,max:100,defaultValue:0,unit:\"%\",title:\"Offset X\"},bgPosY:{type:ControlType.Number,min:0,max:100,defaultValue:0,unit:\"%\",title:\"Offset Y\"},font:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"#888\"},fontSize:{type:ControlType.Number,title:\"Size\",min:0,displayStepper:true,step:1,defaultValue:100},fontFamily:{type:ControlType.String,title:\"Font\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],defaultValue:400},fontStyle:{type:ControlType.Enum,title:\"Style\",options:[\"normal\",\"italic\",\"oblique\"],optionTitles:[\"Normal\",\"Italic\",\"Oblique\"],defaultValue:\"normal\"},textAlign:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Align\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"},whiteSpace:{type:ControlType.Enum,title:\"Space\",options:[\"normal\",\"nowrap\",\"pre\",\"pre-wrap\",\"preline\",\"break-spaces\",],optionTitles:[\"Normal\",\"No Wrap\",\"Pre\",\"Pre Wrap\",\"Preline\",\"Break Spaces\",],defaultValue:\"center\"},letterSpacing:{type:ControlType.Number,title:\"Letter\",min:-100,max:100,displayStepper:true,step:.1,defaultValue:0},lineHeight:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:1,hidden:props=>!props.lineHeightType},lineHeightPixels:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:100,hidden:props=>props.lineHeightType},lineHeightType:{type:ControlType.Boolean,title:\" \",enabledTitle:\"em\",disabledTitle:\"px\",defaultValue:true}}},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextMask\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"260\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextMask.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\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import Lenis from\"lenis\";import{useEffect,useRef}from\"react\";function SmoothScrollComponent(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current){try{lenis.current.scrollTo(0,{immediate:true});}catch(error){console.error(\"Error scrolling to top:\",error);}}},[lenis]);// Watch for stop scroll elements\nuseEffect(()=>{const checkForStopScroll=()=>{try{const stopScrollElement=document.querySelector(\"[data-frameruni-stop-scroll]\");const htmlElement=document.documentElement;const hasHiddenOverflow=htmlElement&&htmlElement.style&&htmlElement.style.overflow===\"hidden\";if(lenis.current){if(stopScrollElement||hasHiddenOverflow){lenis.current.stop();}else{lenis.current.start();}}}catch(error){console.error(\"Error in checkForStopScroll:\",error);}};// Initial check\ncheckForStopScroll();// Set up observers\nlet stopScrollObserver;let htmlStyleObserver;try{stopScrollObserver=new MutationObserver(checkForStopScroll);htmlStyleObserver=new MutationObserver(checkForStopScroll);// Observe document for data-frameruni-stop-scroll attribute\nif(document&&document.documentElement){stopScrollObserver.observe(document.documentElement,{childList:true,subtree:true,attributes:true,attributeFilter:[\"data-frameruni-stop-scroll\"]});// Observe only the HTML element for style changes\nhtmlStyleObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});}}catch(error){console.error(\"Error setting up observers:\",error);}return()=>{try{if(stopScrollObserver)stopScrollObserver.disconnect();if(htmlStyleObserver)htmlStyleObserver.disconnect();}catch(error){console.error(\"Error disconnecting observers:\",error);}};},[]);useEffect(()=>{try{if(!document)return;const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];if(!element)continue;try{const computedStyle=window.getComputedStyle(element);if(computedStyle&&computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}catch(styleError){console.error(\"Error getting computed style:\",styleError);}}}catch(error){console.error(\"Error in overflow detection:\",error);}},[]);useEffect(()=>{try{if(typeof Lenis!==\"function\"){console.error(\"Lenis is not available\");return;}lenis.current=new Lenis({duration:(intensity||10)/10});const raf=time=>{if(lenis.current){try{lenis.current.raf(time);requestAnimationFrame(raf);}catch(error){console.error(\"Error in animation frame:\",error);}}};const animationId=requestAnimationFrame(raf);return()=>{cancelAnimationFrame(animationId);if(lenis.current){try{lenis.current.destroy();lenis.current=null;}catch(error){console.error(\"Error destroying Lenis:\",error);}}};}catch(error){console.error(\"Error initializing Lenis:\",error);return()=>{};}},[intensity]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{try{if(!document||!lenis.current)return;// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=Array.from(document.querySelectorAll(\"a[href]\")||[]).filter(element=>{if(!element)return false;const anchor=element;if(!anchor.href)return false;// Only handle internal anchor links\nconst isInternalLink=anchor.href.startsWith(window.location.origin)||anchor.href.startsWith(\"./\")||anchor.href.startsWith(\"/\");const hasHash=anchor.href.includes(\"#\");return isInternalLink&&hasHash;}).map(anchor=>{try{const anchorElement=anchor;const href=anchorElement.href.includes(\"#\")?`#${anchorElement.href.split(\"#\").pop()}`:\"\";const decodedHref=href?decodeURIComponent(href):\"\";let scrollMargin=0;try{if(decodedHref){const targetElement=document.querySelector(decodedHref);if(targetElement){const marginStyle=window.getComputedStyle(targetElement).scrollMarginTop;scrollMargin=marginStyle?parseInt(marginStyle)||0:0;}}}catch(targetError){console.error(\"Error finding target element:\",targetError);}return{href,scrollMargin,anchorElement:anchorElement};}catch(anchorError){console.error(\"Error processing anchor:\",anchorError);return null;}}).filter(Boolean);const handleClick=(e,href,scrollMargin)=>{try{if(e&&e.preventDefault)e.preventDefault();if(lenis.current&&href){lenis.current.scrollTo(href,{offset:-(scrollMargin||0)});}}catch(error){console.error(\"Error in anchor click handler:\",error);}};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.addEventListener(\"click\",handlers[index]);}});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.removeEventListener(\"click\",handlers[index]);}});};}catch(error){console.error(\"Error setting up anchor links:\",error);return()=>{};}},[lenis]);return /*#__PURE__*/_jsx(\"div\",{style:props.style});}/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */const SmoothScroll=withCSS(SmoothScrollComponent,[\"html.lenis { height: auto; }\",\".lenis.lenis-smooth { scroll-behavior: auto !important; }\",\".lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }\",\".lenis.lenis-stopped { overflow: hidden; }\",\".lenis.lenis-scrolling iframe { pointer-events: none; }\"],\"\");export default SmoothScroll;SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:0,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zgmXqUbpY\",\"A9FKMvqV6\"];const serializationHash=\"framer-sSvU8\";const variantClassNames={A9FKMvqV6:\"framer-v-1f9n695\",zgmXqUbpY:\"framer-v-x8t8nd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"zgmXqUbpY\",Hover:\"A9FKMvqV6\"};const getProps=({height,id,link,newTab,smoothScroll,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,aw9hCqzCY:(_ref=title!==null&&title!==void 0?title:props.aw9hCqzCY)!==null&&_ref!==void 0?_ref:\"Hover me\",FsJQLC6Zo:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.FsJQLC6Zo,FV9q84oBp:link!==null&&link!==void 0?link:props.FV9q84oBp,qUWpVfITp:newTab!==null&&newTab!==void 0?newTab:props.qUWpVfITp,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"zgmXqUbpY\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,aw9hCqzCY,FV9q84oBp,qUWpVfITp,FsJQLC6Zo,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zgmXqUbpY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterpvht5x=activeVariantCallback(async(...args)=>{setVariant(\"A9FKMvqV6\");});const onMouseLeave117a7ye=activeVariantCallback(async(...args)=>{setVariant(\"zgmXqUbpY\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:FV9q84oBp,openInNewTab:qUWpVfITp,smoothScroll:FsJQLC6Zo,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-x8t8nd\",className,classNames)} framer-6ovnt8`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zgmXqUbpY\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterpvht5x,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({A9FKMvqV6:{\"data-framer-name\":\"Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave117a7ye}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dahi0a\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"B8YPLJTIx\",style:{backgroundColor:\"var(--token-965e5c17-6359-41cc-bd03-2fa4898e2c2b, rgb(34, 36, 38))\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rvi7ef\",\"data-framer-name\":\"Color 1\",layoutDependency:layoutDependency,layoutId:\"fA2c4S9oW\",style:{background:\"conic-gradient(from 62deg at 50% 50%, rgba(255, 255, 255, 0) 249.01072271182258deg, rgb(19, 112, 235) 249.57697526299043deg)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44,opacity:0},variants:{A9FKMvqV6:{background:\"conic-gradient(from 224deg at 50% 50%, rgba(255, 255, 255, 0) 224.36205426798813deg, rgb(137, 19, 235) 249.57697526299043deg)\",opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-is35be\",\"data-framer-name\":\"Color 1 Glow\",layoutDependency:layoutDependency,layoutId:\"jnu400cYE\",style:{background:\"conic-gradient(from 62deg at 50% 50%, rgba(255, 255, 255, 0) 249.01072271182258deg, rgb(19, 112, 235) 249.57697526299043deg)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44,filter:\"blur(8px)\",opacity:0,WebkitFilter:\"blur(8px)\"},variants:{A9FKMvqV6:{background:\"conic-gradient(from 224deg at 50% 50%, rgba(255, 255, 255, 0) 224.36205426798813deg, rgb(137, 19, 235) 249.57697526299043deg)\",opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-no9wli\",\"data-framer-name\":\"Color 2\",layoutDependency:layoutDependency,layoutId:\"tseyZqwjQ\",style:{background:\"conic-gradient(from 62deg at 50% 50%, rgba(255, 255, 255, 0) 249.01072271182258deg, rgb(19, 112, 235) 249.57697526299043deg)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44,opacity:0,rotate:180},variants:{A9FKMvqV6:{background:\"conic-gradient(from 224deg at 50% 50%, rgba(255, 255, 255, 0) 224.36205426798813deg, rgb(137, 19, 235) 249.57697526299043deg)\",opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eaegcr\",\"data-framer-name\":\"Color 2 Glow\",layoutDependency:layoutDependency,layoutId:\"QdMoaPcoX\",style:{background:\"conic-gradient(from 62deg at 50% 50%, rgba(255, 255, 255, 0) 249.01072271182258deg, rgb(19, 112, 235) 249.57697526299043deg)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44,filter:\"blur(8px)\",opacity:0,rotate:180,WebkitFilter:\"blur(8px)\"},variants:{A9FKMvqV6:{background:\"conic-gradient(from 224deg at 50% 50%, rgba(255, 255, 255, 0) 224.36205426798813deg, rgb(137, 19, 235) 249.57697526299043deg)\",opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dhjt3b\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"tbxeSBJhg\",style:{background:\"linear-gradient(335deg, rgb(191, 93, 240) 0%, rgba(5, 5, 5, 1) 47.70297011093415%, rgb(5, 5, 5) 50.48241853731952%, rgb(142, 93, 240) 100%)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlIFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace SC\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Hover me\"})}),className:\"framer-led8tb\",fonts:[\"GF;Bruno Ace SC-regular\"],layoutDependency:layoutDependency,layoutId:\"fPYfITclq\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:aw9hCqzCY,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sSvU8.framer-6ovnt8, .framer-sSvU8 .framer-6ovnt8 { display: block; }\",\".framer-sSvU8.framer-x8t8nd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-sSvU8 .framer-1dahi0a, .framer-sSvU8 .framer-rvi7ef, .framer-sSvU8 .framer-is35be, .framer-sSvU8 .framer-no9wli, .framer-sSvU8 .framer-eaegcr { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sSvU8 .framer-1dhjt3b { align-content: center; align-items: center; bottom: 1px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 1px; overflow: hidden; padding: 0px 24px 0px 24px; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sSvU8 .framer-led8tb { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sSvU8.framer-x8t8nd, .framer-sSvU8 .framer-1dhjt3b { gap: 0px; } .framer-sSvU8.framer-x8t8nd > *, .framer-sSvU8 .framer-1dhjt3b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sSvU8.framer-x8t8nd > :first-child, .framer-sSvU8 .framer-1dhjt3b > :first-child { margin-top: 0px; } .framer-sSvU8.framer-x8t8nd > :last-child, .framer-sSvU8 .framer-1dhjt3b > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 133\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"A9FKMvqV6\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"aw9hCqzCY\":\"title\",\"FV9q84oBp\":\"link\",\"qUWpVfITp\":\"newTab\",\"FsJQLC6Zo\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAqpELfsT6=withCSS(Component,css,\"framer-sSvU8\");export default FramerAqpELfsT6;FramerAqpELfsT6.displayName=\"Button\";FramerAqpELfsT6.defaultProps={height:44,width:133};addPropertyControls(FramerAqpELfsT6,{variant:{options:[\"zgmXqUbpY\",\"A9FKMvqV6\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},aw9hCqzCY:{defaultValue:\"Hover me\",displayTextArea:false,title:\"Title\",type:ControlType.String},FV9q84oBp:{title:\"Link\",type:ControlType.Link},qUWpVfITp:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},FsJQLC6Zo:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(FramerAqpELfsT6,[{explicitInter:true,fonts:[{family:\"Bruno Ace SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/brunoacesc/v5/ptROTiycffFLBuiHjdJDl634KCFrpe8uZA.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAqpELfsT6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"44\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"133\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"A9FKMvqV6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"aw9hCqzCY\\\":\\\"title\\\",\\\"FV9q84oBp\\\":\\\"link\\\",\\\"qUWpVfITp\\\":\\\"newTab\\\",\\\"FsJQLC6Zo\\\":\\\"smoothScroll\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AqpELfsT6.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";const LottieFonts=getFonts(Lottie);const cycleOrder=[\"nDmVB0D4t\",\"Ff2gCAVzO\",\"H2CQJDaoO\",\"DmWK1xdYg\",\"rju1PDkF3\",\"GJvhVv9gD\",\"vL10cbOmI\"];const serializationHash=\"framer-vH8xO\";const variantClassNames={DmWK1xdYg:\"framer-v-13865qi\",Ff2gCAVzO:\"framer-v-163q4x8\",GJvhVv9gD:\"framer-v-1tu3rgs\",H2CQJDaoO:\"framer-v-bywjek\",nDmVB0D4t:\"framer-v-inia81\",rju1PDkF3:\"framer-v-kkrwur\",vL10cbOmI:\"framer-v-88usdv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:0,duration:1,ease:[.5,0,.88,.77],type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"nDmVB0D4t\",\"Variant 2\":\"Ff2gCAVzO\",\"Variant 3\":\"H2CQJDaoO\",\"Variant 4\":\"DmWK1xdYg\",\"Variant 5\":\"rju1PDkF3\",\"Variant 6\":\"GJvhVv9gD\",\"Variant 7\":\"vL10cbOmI\"};const getProps=({height,id,image,playing,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,EtSm0Vdv4:(_ref=image!==null&&image!==void 0?image:props.EtSm0Vdv4)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/6kPofEclQ5cPP0PcjmuBHaNWg.png\",srcSet:\"https://framerusercontent.com/images/6kPofEclQ5cPP0PcjmuBHaNWg.png?scale-down-to=512 512w,https://framerusercontent.com/images/6kPofEclQ5cPP0PcjmuBHaNWg.png 940w\"},o51oPYi4B:(_ref1=playing!==null&&playing!==void 0?playing:props.o51oPYi4B)!==null&&_ref1!==void 0?_ref1:true,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"nDmVB0D4t\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,o51oPYi4B,EtSm0Vdv4,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nDmVB0D4t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter87psh3=activeVariantCallback(async(...args)=>{setVariant(\"Ff2gCAVzO\");});const onMouseLeave17ukm1k=activeVariantCallback(async(...args)=>{setVariant(\"nDmVB0D4t\");});const onMouseEnter1qqa2dz=activeVariantCallback(async(...args)=>{setVariant(\"vL10cbOmI\");});const onMouseEnterecnez8=activeVariantCallback(async(...args)=>{setVariant(\"H2CQJDaoO\");});const onMouseEnter10ep1um=activeVariantCallback(async(...args)=>{setVariant(\"GJvhVv9gD\");});const onMouseEntervw07fp=activeVariantCallback(async(...args)=>{setVariant(\"DmWK1xdYg\");});const onMouseEnterir3mjj=activeVariantCallback(async(...args)=>{setVariant(\"rju1PDkF3\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,background:{alt:\"\",fit:\"fit\",intrinsicHeight:940,intrinsicWidth:940,pixelHeight:940,pixelWidth:940,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(EtSm0Vdv4),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-inia81\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nDmVB0D4t\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DmWK1xdYg:{\"data-framer-name\":\"Variant 4\"},Ff2gCAVzO:{\"data-framer-name\":\"Variant 2\"},GJvhVv9gD:{\"data-framer-name\":\"Variant 6\"},H2CQJDaoO:{\"data-framer-name\":\"Variant 3\"},rju1PDkF3:{\"data-framer-name\":\"Variant 5\"},vL10cbOmI:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qablpn\",\"data-framer-name\":\"Empty Frame\",layoutDependency:layoutDependency,layoutId:\"nPUr_O9hY\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cb6q5s\",\"data-framer-name\":\"TM-1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R3oGsIAUu\",onMouseEnter:onMouseEnter87psh3,whileHover:animation,...addPropertyOverrides({DmWK1xdYg:{\"data-highlight\":undefined,onMouseEnter:undefined},Ff2gCAVzO:{\"data-highlight\":undefined,onMouseEnter:undefined},GJvhVv9gD:{\"data-highlight\":undefined,onMouseEnter:undefined},H2CQJDaoO:{\"data-highlight\":undefined,onMouseEnter:undefined},rju1PDkF3:{\"data-highlight\":undefined,onMouseEnter:undefined},vL10cbOmI:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ny51y1\",layoutDependency:layoutDependency,layoutId:\"UmAUdV4gg\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(122, 186, 255) 6.486497483811937%, rgba(15, 45, 217, 0.73) 49.009031003659906%, rgba(0, 0, 0, 0.41) 74.9549659522804%, rgba(0, 0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PERSONAL\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"PRACTICE\"})]}),className:\"framer-8ljgrc\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"pGWksGwRu\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 1px 4px rgba(0,0,0,0.25)\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Ff2gCAVzO:{\"data-highlight\":true,onMouseLeave:onMouseLeave17ukm1k}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1niwe60\",\"data-framer-name\":\"Empty Frame\",layoutDependency:layoutDependency,layoutId:\"FGehIFtWS\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ndbd6w\",\"data-framer-name\":\"TM-1\",layoutDependency:layoutDependency,layoutId:\"YhSFByw7m\",whileHover:animation1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-138mjop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VSPxAnci3\",onMouseEnter:onMouseEnter1qqa2dz,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(26, 153, 75) 6.486497483811937%, rgba(86, 15, 217, 0.73) 49.009031003659906%, rgba(0, 0, 0, 0.41) 74.9549659522804%, rgba(0, 0, 0, 0) 100%)\"},...addPropertyOverrides({DmWK1xdYg:{\"data-highlight\":undefined,onMouseEnter:undefined},Ff2gCAVzO:{\"data-highlight\":undefined,onMouseEnter:undefined},GJvhVv9gD:{\"data-highlight\":undefined,onMouseEnter:undefined},H2CQJDaoO:{\"data-highlight\":undefined,onMouseEnter:undefined},rju1PDkF3:{\"data-highlight\":undefined,onMouseEnter:undefined},vL10cbOmI:{onMouseEnter:undefined,onMouseLeave:onMouseLeave17ukm1k}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"ADJUCT TO\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"THERAPHY\"})]}),className:\"framer-1rjnyo7\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"YvIgBy5cI\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 1px 4px rgba(0,0,0,0.25)\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-quyzgf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"VCXtGJASD\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1132e79\",\"data-framer-name\":\"Gradient Lottie\",layoutDependency:layoutDependency,layoutId:\"szwy2HYyu\",style:{borderBottomLeftRadius:538,borderBottomRightRadius:538,borderTopLeftRadius:538,borderTopRightRadius:538},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xiw3bo-container\",layoutDependency:layoutDependency,layoutId:\"o9nleAnQQ-container\",style:{opacity:.2},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"o9nleAnQQ\",isForwardsDirection:true,layoutId:\"o9nleAnQQ\",loop:true,playing:o51oPYi4B,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/L25d2mR46jjpA1FZTXppqhoHII.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-140ov68-container\",layoutDependency:layoutDependency,layoutId:\"jd2BHL3TC-container\",style:{opacity:.37},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"jd2BHL3TC\",isForwardsDirection:true,layoutId:\"jd2BHL3TC\",loop:true,playing:o51oPYi4B,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/Is2yDUnVpQL97dDYDQkQQ6bPg.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 119, 250))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(288deg, rgb(179, 255, 79) 18.2153%, rgb(235, 84, 255) 52.7027%, rgb(150, 154, 255) 76.7492%)\"},children:\"Who is PathsXR for?\"})})}),className:\"framer-2tn180\",\"data-framer-name\":\"Empty Variant\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"eWIU9QoME\",style:{\"--extracted-r6o4lv\":\"rgb(82, 119, 250)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1,textShadow:\"2px 2px 3px rgba(0, 0, 0, 0.23)\"},variants:{DmWK1xdYg:{opacity:0},Ff2gCAVzO:{opacity:0},GJvhVv9gD:{opacity:0},H2CQJDaoO:{opacity:0},rju1PDkF3:{opacity:0},vL10cbOmI:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We offer immersive experiences that guide individuals \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"through self-exploration and psychological growth, \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(255, 255, 255))\"},children:\"harnessing the power of immersive technology blended with therapeutic insights.\"})]}),className:\"framer-3x23xi\",\"data-framer-name\":\"Variant 2\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"qGFDMqcPL\",style:{\"--extracted-1iakedh\":\"rgb(255, 255, 255)\",\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0,textShadow:\"1px 2px 2px rgba(0,0,0,0.25)\"},variants:{Ff2gCAVzO:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We craft immersive learning journeys that complement psychedelic therapy, enhancing the therapeutic process and deepening the understanding of one\u2019s psyche.\"})}),className:\"framer-1u68802\",\"data-framer-name\":\"Variant 3\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"AUAcP5TJa\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0,textShadow:\"2px 2px 3px rgba(0, 0, 0, 0.23)\"},variants:{H2CQJDaoO:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our platform offers immersive learning journeys that nurture employee wellbeing, fostering a healthier, more balanced work environment.\"})}),className:\"framer-19mgewv\",\"data-framer-name\":\"Variant 4\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"vP3D4PscR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0,textShadow:\"2px 2px 3px rgba(0, 0, 0, 0.23)\"},variants:{DmWK1xdYg:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enhancing patient care with technology-driven solutions for psychological wellbeing, aiding in patient recovery and mental health care through innovative learning journeys.\"})}),className:\"framer-1y2312z\",\"data-framer-name\":\"Variant 5\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"AvKs3zyIr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0,textShadow:\"2px 2px 3px rgba(0, 0, 0, 0.23)\"},variants:{rju1PDkF3:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We equip researchers with immersive technology platforms, facilitating cutting-edge studies in mental health and therapeutic practices.\"})}),className:\"framer-18zvh9v\",\"data-framer-name\":\"Variant 6\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"R8WUJDEyP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0,textShadow:\"2px 2px 3px rgba(0, 0, 0, 0.23)\"},variants:{GJvhVv9gD:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We enrich therapeutic processes by offering immersive learning journeys that support and extend the impact of conventional therapy, aiding therapists and clients alike in the path towards healing\"})}),className:\"framer-1wu0oiv\",\"data-framer-name\":\"Variant 7\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"VapNiUrt0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0,textShadow:\"2px 2px 3px rgba(0, 0, 0, 0.23)\"},variants:{vL10cbOmI:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kks1c4\",\"data-framer-name\":\"TM-1\",layoutDependency:layoutDependency,layoutId:\"wByAmxWvE\",whileHover:animation1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a61o77\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"r7CTQEp2l\",onMouseEnter:onMouseEnterecnez8,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 204, 246) 6.486497483811937%, rgba(171, 14, 166, 0.73) 49.009031003659906%, rgba(0, 0, 0, 0.41) 74.9549659522804%, rgba(0, 0, 0, 0) 100%)\"},...addPropertyOverrides({DmWK1xdYg:{\"data-highlight\":undefined,onMouseEnter:undefined},Ff2gCAVzO:{\"data-highlight\":undefined,onMouseEnter:undefined},GJvhVv9gD:{\"data-highlight\":undefined,onMouseEnter:undefined},H2CQJDaoO:{onMouseEnter:undefined,onMouseLeave:onMouseLeave17ukm1k},rju1PDkF3:{\"data-highlight\":undefined,onMouseEnter:undefined},vL10cbOmI:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PSYCHEDELIC\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"THERAPY\"})]}),className:\"framer-1mau6e5\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"dIqcnOOhm\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 1px 4px rgba(0,0,0,0.25)\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kaqzwt\",\"data-framer-name\":\"Empty Frame\",layoutDependency:layoutDependency,layoutId:\"HLP0lYMA3\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9xu1i\",\"data-framer-name\":\"Empty Frame\",layoutDependency:layoutDependency,layoutId:\"eAPAX0t6d\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ivgxv\",\"data-framer-name\":\"TM-1\",layoutDependency:layoutDependency,layoutId:\"IZbuI34iJ\",whileHover:animation1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nmbllc\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UZ27iJfts\",onMouseEnter:onMouseEnter10ep1um,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(209, 122, 255) 6.486497483811937%, rgba(72, 15, 217, 0.73) 49.009031003659906%, rgba(0, 0, 0, 0.41) 74.9549659522804%, rgba(0, 0, 0, 0) 100%)\"},...addPropertyOverrides({DmWK1xdYg:{\"data-highlight\":undefined,onMouseEnter:undefined},Ff2gCAVzO:{\"data-highlight\":undefined,onMouseEnter:undefined},GJvhVv9gD:{onMouseEnter:undefined,onMouseLeave:onMouseLeave17ukm1k},H2CQJDaoO:{\"data-highlight\":undefined,onMouseEnter:undefined},rju1PDkF3:{\"data-highlight\":undefined,onMouseEnter:undefined},vL10cbOmI:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"RESEARCHERS\"})}),className:\"framer-24c6zn\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"s7_c1wOnB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 1px 4px rgba(0,0,0,0.25)\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4x2n89\",\"data-framer-name\":\"TM-1\",layoutDependency:layoutDependency,layoutId:\"O9yazvWMr\",whileHover:animation1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w1ujkt\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Q3DNrEPlo\",onMouseEnter:onMouseEntervw07fp,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(248, 255, 122) 6.486497483811937%, rgba(148, 11, 9, 0.73) 49.009031003659906%, rgba(0, 0, 0, 0.41) 74.9549659522804%, rgba(0, 0, 0, 0) 100%)\"},...addPropertyOverrides({DmWK1xdYg:{onMouseEnter:undefined,onMouseLeave:onMouseLeave17ukm1k},Ff2gCAVzO:{\"data-highlight\":undefined,onMouseEnter:undefined},GJvhVv9gD:{\"data-highlight\":undefined,onMouseEnter:undefined},H2CQJDaoO:{\"data-highlight\":undefined,onMouseEnter:undefined},rju1PDkF3:{\"data-highlight\":undefined,onMouseEnter:undefined},vL10cbOmI:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"ENTERPRISE\"})}),className:\"framer-13j3crk\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"xDYAqol3G\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 1px 4px rgba(0,0,0,0.25)\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gzsfi3\",\"data-framer-name\":\"Empty Frame\",layoutDependency:layoutDependency,layoutId:\"kWZpRP368\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r35o0c\",\"data-framer-name\":\"TM-1\",layoutDependency:layoutDependency,layoutId:\"xtkxPe3ZO\",transformTemplate:transformTemplate2,whileHover:animation1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h7eu0e\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QQlfR20hc\",onMouseEnter:onMouseEnterir3mjj,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(228, 255, 122) 6.486497483811937%, rgba(8, 105, 77, 0.73) 49.009031003659906%, rgba(0, 0, 0, 0.41) 74.9549659522804%, rgba(0, 0, 0, 0) 100%)\"},...addPropertyOverrides({DmWK1xdYg:{\"data-highlight\":undefined,onMouseEnter:undefined},Ff2gCAVzO:{\"data-highlight\":undefined,onMouseEnter:undefined},GJvhVv9gD:{\"data-highlight\":undefined,onMouseEnter:undefined},H2CQJDaoO:{\"data-highlight\":undefined,onMouseEnter:undefined},rju1PDkF3:{onMouseEnter:undefined,onMouseLeave:onMouseLeave17ukm1k},vL10cbOmI:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"HOSPITALS\"})}),className:\"framer-1qk8p0v\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"vtHraf2ky\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 1px 4px rgba(0,0,0,0.25)\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q2kpyq\",\"data-framer-name\":\"Empty Frame\",layoutDependency:layoutDependency,layoutId:\"IzUoArbIK\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vH8xO.framer-1qycnv0, .framer-vH8xO .framer-1qycnv0 { display: block; }\",\".framer-vH8xO.framer-inia81 { display: grid; gap: 0px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(5, 200px); height: 741px; justify-content: center; padding: 0px; position: relative; width: 991px; }\",\".framer-vH8xO .framer-qablpn, .framer-vH8xO .framer-1niwe60, .framer-vH8xO .framer-1kaqzwt, .framer-vH8xO .framer-1u9xu1i, .framer-vH8xO .framer-gzsfi3, .framer-vH8xO .framer-q2kpyq { align-self: start; flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-vH8xO .framer-cb6q5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 156px; justify-content: center; left: calc(50.05045408678105% - 144px / 2); overflow: visible; padding: 0px; position: absolute; top: -56px; width: 144px; z-index: 1; }\",\".framer-vH8xO .framer-1ny51y1, .framer-vH8xO .framer-138mjop, .framer-vH8xO .framer-1a61o77, .framer-vH8xO .framer-1nmbllc, .framer-vH8xO .framer-w1ujkt, .framer-vH8xO .framer-h7eu0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 172px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 173px; z-index: 1; }\",\".framer-vH8xO .framer-8ljgrc { flex: none; height: 86px; position: relative; white-space: pre-wrap; width: 168px; word-break: break-word; word-wrap: break-word; }\",\".framer-vH8xO .framer-1ndbd6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 198px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 110px; width: 33%; z-index: 1; }\",\".framer-vH8xO .framer-1rjnyo7, .framer-vH8xO .framer-1mau6e5, .framer-vH8xO .framer-24c6zn, .framer-vH8xO .framer-13j3crk { flex: none; height: 86px; position: relative; white-space: pre-wrap; width: 271px; word-break: break-word; word-wrap: break-word; }\",\".framer-vH8xO .framer-quyzgf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; min-height: 541px; min-width: 496px; overflow: visible; padding: 0px; position: absolute; top: 51%; width: min-content; z-index: 0; }\",\".framer-vH8xO .framer-1132e79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: absolute; top: -108px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-vH8xO .framer-xiw3bo-container { flex: none; height: 741px; position: relative; width: 729px; z-index: -1; }\",\".framer-vH8xO .framer-140ov68-container { flex: none; height: 137%; left: -120px; position: absolute; top: -109px; width: 148%; z-index: -1; }\",\".framer-vH8xO .framer-2tn180, .framer-vH8xO .framer-1u68802, .framer-vH8xO .framer-19mgewv, .framer-vH8xO .framer-18zvh9v, .framer-vH8xO .framer-1wu0oiv { flex: none; height: 321px; left: calc(49.59677419354841% - 357px / 2); position: absolute; top: calc(48.24399260628468% - 320.60173697270466px / 2); white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-vH8xO .framer-3x23xi { flex: none; height: 321px; left: calc(49.59677419354841% - 357px / 2); position: absolute; top: calc(48.0591497227357% - 321px / 2); white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-vH8xO .framer-1y2312z { flex: none; height: 320px; left: calc(49.59677419354841% - 357px / 2); position: absolute; top: calc(48.61367837338265% - 319.6029776674937px / 2); white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-vH8xO .framer-kks1c4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 198px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 110px; width: 33%; z-index: 1; }\",\".framer-vH8xO .framer-8ivgxv { align-content: center; align-items: center; bottom: 124px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 173px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 33%; z-index: 1; }\",\".framer-vH8xO .framer-4x2n89 { align-content: center; align-items: center; bottom: 124px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 173px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; width: 33%; z-index: 1; }\",\".framer-vH8xO .framer-1r35o0c { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: -193px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; width: 400px; z-index: 1; }\",\".framer-vH8xO .framer-1qk8p0v { flex: none; height: 86px; position: relative; white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vH8xO .framer-cb6q5s, .framer-vH8xO .framer-1ny51y1, .framer-vH8xO .framer-1ndbd6w, .framer-vH8xO .framer-138mjop, .framer-vH8xO .framer-quyzgf, .framer-vH8xO .framer-1132e79, .framer-vH8xO .framer-kks1c4, .framer-vH8xO .framer-1a61o77, .framer-vH8xO .framer-8ivgxv, .framer-vH8xO .framer-1nmbllc, .framer-vH8xO .framer-4x2n89, .framer-vH8xO .framer-w1ujkt, .framer-vH8xO .framer-1r35o0c, .framer-vH8xO .framer-h7eu0e { gap: 0px; } .framer-vH8xO .framer-cb6q5s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vH8xO .framer-cb6q5s > :first-child, .framer-vH8xO .framer-1ny51y1 > :first-child, .framer-vH8xO .framer-138mjop > :first-child, .framer-vH8xO .framer-1132e79 > :first-child, .framer-vH8xO .framer-1a61o77 > :first-child, .framer-vH8xO .framer-1nmbllc > :first-child, .framer-vH8xO .framer-w1ujkt > :first-child, .framer-vH8xO .framer-h7eu0e > :first-child { margin-top: 0px; } .framer-vH8xO .framer-cb6q5s > :last-child, .framer-vH8xO .framer-1ny51y1 > :last-child, .framer-vH8xO .framer-138mjop > :last-child, .framer-vH8xO .framer-1132e79 > :last-child, .framer-vH8xO .framer-1a61o77 > :last-child, .framer-vH8xO .framer-1nmbllc > :last-child, .framer-vH8xO .framer-w1ujkt > :last-child, .framer-vH8xO .framer-h7eu0e > :last-child { margin-bottom: 0px; } .framer-vH8xO .framer-1ny51y1 > *, .framer-vH8xO .framer-138mjop > *, .framer-vH8xO .framer-1132e79 > *, .framer-vH8xO .framer-1a61o77 > *, .framer-vH8xO .framer-1nmbllc > *, .framer-vH8xO .framer-w1ujkt > *, .framer-vH8xO .framer-h7eu0e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vH8xO .framer-1ndbd6w > *, .framer-vH8xO .framer-kks1c4 > *, .framer-vH8xO .framer-8ivgxv > *, .framer-vH8xO .framer-4x2n89 > *, .framer-vH8xO .framer-1r35o0c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vH8xO .framer-1ndbd6w > :first-child, .framer-vH8xO .framer-quyzgf > :first-child, .framer-vH8xO .framer-kks1c4 > :first-child, .framer-vH8xO .framer-8ivgxv > :first-child, .framer-vH8xO .framer-4x2n89 > :first-child, .framer-vH8xO .framer-1r35o0c > :first-child { margin-left: 0px; } .framer-vH8xO .framer-1ndbd6w > :last-child, .framer-vH8xO .framer-quyzgf > :last-child, .framer-vH8xO .framer-kks1c4 > :last-child, .framer-vH8xO .framer-8ivgxv > :last-child, .framer-vH8xO .framer-4x2n89 > :last-child, .framer-vH8xO .framer-1r35o0c > :last-child { margin-right: 0px; } .framer-vH8xO .framer-quyzgf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-vH8xO.framer-v-163q4x8.framer-inia81 { overflow: visible; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-1132e79, .framer-vH8xO.framer-v-bywjek .framer-1132e79, .framer-vH8xO.framer-v-13865qi .framer-1132e79, .framer-vH8xO.framer-v-kkrwur .framer-1132e79, .framer-vH8xO.framer-v-1tu3rgs .framer-1132e79 { order: 0; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-140ov68-container, .framer-vH8xO.framer-v-bywjek .framer-140ov68-container, .framer-vH8xO.framer-v-13865qi .framer-140ov68-container, .framer-vH8xO.framer-v-kkrwur .framer-140ov68-container, .framer-vH8xO.framer-v-1tu3rgs .framer-140ov68-container { order: 1; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-2tn180, .framer-vH8xO.framer-v-bywjek .framer-2tn180, .framer-vH8xO.framer-v-13865qi .framer-2tn180, .framer-vH8xO.framer-v-kkrwur .framer-2tn180, .framer-vH8xO.framer-v-1tu3rgs .framer-2tn180 { order: 2; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-3x23xi, .framer-vH8xO.framer-v-bywjek .framer-3x23xi, .framer-vH8xO.framer-v-13865qi .framer-3x23xi, .framer-vH8xO.framer-v-kkrwur .framer-3x23xi, .framer-vH8xO.framer-v-1tu3rgs .framer-3x23xi { order: 3; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-1u68802, .framer-vH8xO.framer-v-bywjek .framer-1u68802, .framer-vH8xO.framer-v-13865qi .framer-1u68802, .framer-vH8xO.framer-v-kkrwur .framer-1u68802, .framer-vH8xO.framer-v-1tu3rgs .framer-1u68802 { order: 4; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-19mgewv, .framer-vH8xO.framer-v-bywjek .framer-19mgewv, .framer-vH8xO.framer-v-13865qi .framer-19mgewv, .framer-vH8xO.framer-v-kkrwur .framer-19mgewv, .framer-vH8xO.framer-v-1tu3rgs .framer-19mgewv { order: 5; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-1y2312z, .framer-vH8xO.framer-v-bywjek .framer-1y2312z, .framer-vH8xO.framer-v-13865qi .framer-1y2312z, .framer-vH8xO.framer-v-kkrwur .framer-1y2312z, .framer-vH8xO.framer-v-1tu3rgs .framer-1y2312z { order: 6; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-18zvh9v, .framer-vH8xO.framer-v-bywjek .framer-18zvh9v, .framer-vH8xO.framer-v-13865qi .framer-18zvh9v, .framer-vH8xO.framer-v-kkrwur .framer-18zvh9v, .framer-vH8xO.framer-v-1tu3rgs .framer-1wu0oiv { order: 7; }\",\".framer-vH8xO.framer-v-163q4x8 .framer-1wu0oiv, .framer-vH8xO.framer-v-bywjek .framer-1wu0oiv, .framer-vH8xO.framer-v-13865qi .framer-1wu0oiv, .framer-vH8xO.framer-v-kkrwur .framer-1wu0oiv, .framer-vH8xO.framer-v-1tu3rgs .framer-18zvh9v { order: 8; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 741\n * @framerIntrinsicWidth 991\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ff2gCAVzO\":{\"layout\":[\"fixed\",\"fixed\"]},\"H2CQJDaoO\":{\"layout\":[\"fixed\",\"fixed\"]},\"DmWK1xdYg\":{\"layout\":[\"fixed\",\"fixed\"]},\"rju1PDkF3\":{\"layout\":[\"fixed\",\"fixed\"]},\"GJvhVv9gD\":{\"layout\":[\"fixed\",\"fixed\"]},\"vL10cbOmI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"o51oPYi4B\":\"playing\",\"EtSm0Vdv4\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGlYLCIsqO=withCSS(Component,css,\"framer-vH8xO\");export default FramerGlYLCIsqO;FramerGlYLCIsqO.displayName=\"TM Grid\";FramerGlYLCIsqO.defaultProps={height:741,width:991};addPropertyControls(FramerGlYLCIsqO,{variant:{options:[\"nDmVB0D4t\",\"Ff2gCAVzO\",\"H2CQJDaoO\",\"DmWK1xdYg\",\"rju1PDkF3\",\"GJvhVv9gD\",\"vL10cbOmI\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},o51oPYi4B:{defaultValue:true,title:\"Playing\",type:ControlType.Boolean},EtSm0Vdv4:{__defaultAssetReference:\"data:framer/asset-reference,6kPofEclQ5cPP0PcjmuBHaNWg.png?originalFilename=Ellipse+114.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerGlYLCIsqO,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...LottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGlYLCIsqO\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"o51oPYi4B\\\":\\\"playing\\\",\\\"EtSm0Vdv4\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"991\",\"framerIntrinsicHeight\":\"741\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ff2gCAVzO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H2CQJDaoO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DmWK1xdYg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rju1PDkF3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GJvhVv9gD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vL10cbOmI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GlYLCIsqO.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={JxsNPcHKI:{hover:true}};const cycleOrder=[\"JxsNPcHKI\"];const serializationHash=\"framer-OhMfr\";const variantClassNames={JxsNPcHKI:\"framer-v-msuyq1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JxsNPcHKI\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapo4iq6r=activeVariantCallback(async(...args)=>{setVariant(\"JxsNPcHKI\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"JxsNPcHKI-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-msuyq1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"JxsNPcHKI\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"2px 3px 6px 0px rgba(0, 0, 0, 0.33)\",...style},...addPropertyOverrides({\"JxsNPcHKI-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hz8qdo\",\"data-framer-name\":\"Vignette\",layoutDependency:layoutDependency,layoutId:\"SxmmtG8k9\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 49.54954954954955%, rgba(0, 0, 0, 0.69) 100%)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlIFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace SC\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"TRAIN CONTEMPLATIVE PRACTICES\"})}),className:\"framer-d6ee6l\",\"data-highlight\":true,fonts:[\"GF;Bruno Ace SC-regular\"],layoutDependency:layoutDependency,layoutId:\"C5c5eVFBW\",onTap:onTapo4iq6r,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"JxsNPcHKI-hover\":{\"--extracted-r6o4lv\":\" rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 133, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(301deg, rgb(92, 255, 209) 27.3874%, rgb(173, 135, 255) 73.5968%)\"},children:\"Contemplative practices can lead to improved cognitive functions and increased emotional regulation, supporting individuals in personal development and stress management.\"})})}),className:\"framer-9gpxiy\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"JfurwNQzd\",style:{\"--extracted-r6o4lv\":\"rgb(171, 133, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1390,intrinsicWidth:1984,pixelHeight:1390,pixelWidth:1984,sizes:\"700px\",src:\"https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png\",srcSet:\"https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png 1984w\"},className:\"framer-9eu75k\",\"data-framer-name\":\"HighresScreenshot00004\",layoutDependency:layoutDependency,layoutId:\"csPAbU2BX\",style:{opacity:1},variants:{\"JxsNPcHKI-hover\":{opacity:.31}},...addPropertyOverrides({\"JxsNPcHKI-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1390,intrinsicWidth:1984,pixelHeight:1390,pixelWidth:1984,sizes:\"653px\",src:\"https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png\",srcSet:\"https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFVMwqMuWYBdd8pa0CpGDHe1aI.png 1984w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OhMfr.framer-je1eq2, .framer-OhMfr .framer-je1eq2 { display: block; }\",\".framer-OhMfr.framer-msuyq1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 455px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 455px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OhMfr .framer-1hz8qdo { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-OhMfr .framer-d6ee6l { bottom: 0px; cursor: pointer; flex: none; height: 97px; left: calc(50.10989010989013% - 427px / 2); position: absolute; white-space: pre-wrap; width: 427px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-OhMfr .framer-9gpxiy { bottom: 113px; flex: none; height: 166px; left: calc(52.96703296703299% - 333px / 2); position: absolute; white-space: pre-wrap; width: 333px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-OhMfr .framer-9eu75k { aspect-ratio: 1.427338129496403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 490px); overflow: visible; position: relative; width: 700px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OhMfr.framer-msuyq1 { gap: 0px; } .framer-OhMfr.framer-msuyq1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OhMfr.framer-msuyq1 > :first-child { margin-top: 0px; } .framer-OhMfr.framer-msuyq1 > :last-child { margin-bottom: 0px; } }\",\".framer-OhMfr.framer-v-msuyq1.hover.framer-msuyq1 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 455px); }\",\".framer-OhMfr.framer-v-msuyq1.hover .framer-1hz8qdo { order: 0; }\",\".framer-OhMfr.framer-v-msuyq1.hover .framer-d6ee6l { bottom: 300px; height: 113px; left: calc(51.8681318681319% - 400px / 2); order: 1; width: 400px; }\",\".framer-OhMfr.framer-v-msuyq1.hover .framer-9gpxiy { order: 2; }\",\".framer-OhMfr.framer-v-msuyq1.hover .framer-9eu75k { height: var(--framer-aspect-ratio-supported, 458px); order: 4; width: 653px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 455\n * @framerIntrinsicWidth 455\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VBoeq7nsI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH8AyTRi1L=withCSS(Component,css,\"framer-OhMfr\");export default FramerH8AyTRi1L;FramerH8AyTRi1L.displayName=\"Slide 2\";FramerH8AyTRi1L.defaultProps={height:455,width:455};addFonts(FramerH8AyTRi1L,[{explicitInter:true,fonts:[{family:\"Bruno Ace SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/brunoacesc/v5/ptROTiycffFLBuiHjdJDl634KCFrpe8uZA.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH8AyTRi1L\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"455\",\"framerIntrinsicHeight\":\"455\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VBoeq7nsI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H8AyTRi1L.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"huwTIFEJ7\",\"dbf1KhGjQ\",\"NjQUF6Rvu\",\"nk0ONUaSz\"];const serializationHash=\"framer-OGplV\";const variantClassNames={dbf1KhGjQ:\"framer-v-flvi8y\",huwTIFEJ7:\"framer-v-14e45ri\",NjQUF6Rvu:\"framer-v-yprco1\",nk0ONUaSz:\"framer-v-1c72wae\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"huwTIFEJ7\",\"Variant 2\":\"dbf1KhGjQ\",\"Variant 3\":\"NjQUF6Rvu\",\"Variant 4\":\"nk0ONUaSz\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"huwTIFEJ7\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"huwTIFEJ7\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14e45ri\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"huwTIFEJ7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dbf1KhGjQ:{\"data-framer-name\":\"Variant 2\"},NjQUF6Rvu:{\"data-framer-name\":\"Variant 3\"},nk0ONUaSz:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638.4,intrinsicWidth:638.4,pixelHeight:798,pixelWidth:798,sizes:\"calc(min(450px, 100vw) * 0.7511)\",src:\"https://framerusercontent.com/images/lkrcimZMIquvlqx4hYFbXt7oE8.png\",srcSet:\"https://framerusercontent.com/images/lkrcimZMIquvlqx4hYFbXt7oE8.png?scale-down-to=512 512w, https://framerusercontent.com/images/lkrcimZMIquvlqx4hYFbXt7oE8.png 798w\"},className:\"framer-1actsoc\",\"data-framer-name\":\"Ellipse_115\",layoutDependency:layoutDependency,layoutId:\"URPKNMnVy\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:742.4,intrinsicWidth:742.4,pixelHeight:928,pixelWidth:928,sizes:\"calc(min(450px, 100vw) / 1.148)\",src:\"https://framerusercontent.com/images/pYdGKEUz24RPHSmgQ3Zl9TPuNKs.png\",srcSet:\"https://framerusercontent.com/images/pYdGKEUz24RPHSmgQ3Zl9TPuNKs.png?scale-down-to=512 512w, https://framerusercontent.com/images/pYdGKEUz24RPHSmgQ3Zl9TPuNKs.png 928w\"},className:\"framer-ppnffi\",\"data-framer-name\":\"gis_compass_alt_o\",layoutDependency:layoutDependency,layoutId:\"mLFmViLbx\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{dbf1KhGjQ:{rotate:30},NjQUF6Rvu:{rotate:60},nk0ONUaSz:{rotate:90}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1600,pixelHeight:1600,pixelWidth:1600,sizes:\"calc(min(450px, 100vw) * 0.9022)\",src:\"https://framerusercontent.com/images/HYoL2DWxb2XSY8wUyB66WZ8osj0.png\",srcSet:\"https://framerusercontent.com/images/HYoL2DWxb2XSY8wUyB66WZ8osj0.png?scale-down-to=512 512w, https://framerusercontent.com/images/HYoL2DWxb2XSY8wUyB66WZ8osj0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/HYoL2DWxb2XSY8wUyB66WZ8osj0.png 1600w\"},className:\"framer-prgtix\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qR302uUYp\",style:{filter:\"brightness(0.8)\",rotate:33,WebkitFilter:\"brightness(0.8)\"},transformTemplate:transformTemplate1})]})})});});const css=['.framer-OGplV[data-border=\"true\"]::after, .framer-OGplV [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OGplV.framer-1kvbr9p, .framer-OGplV .framer-1kvbr9p { display: block; }\",\".framer-OGplV.framer-14e45ri { height: 432px; position: relative; width: 450px; }\",\".framer-OGplV .framer-1actsoc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 338px); left: 52%; overflow: visible; position: absolute; top: 50%; width: 75%; }\",\".framer-OGplV .framer-ppnffi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 392px); left: 52%; overflow: visible; position: absolute; top: 50%; width: 87%; }\",\".framer-OGplV .framer-prgtix { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 406px); left: 52%; mix-blend-mode: screen; overflow: hidden; position: absolute; top: 50%; width: 90%; z-index: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 432\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dbf1KhGjQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"NjQUF6Rvu\":{\"layout\":[\"fixed\",\"fixed\"]},\"nk0ONUaSz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerjF6O2OetP=withCSS(Component,css,\"framer-OGplV\");export default FramerjF6O2OetP;FramerjF6O2OetP.displayName=\"Compass\";FramerjF6O2OetP.defaultProps={height:432,width:450};addPropertyControls(FramerjF6O2OetP,{variant:{options:[\"huwTIFEJ7\",\"dbf1KhGjQ\",\"NjQUF6Rvu\",\"nk0ONUaSz\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjF6O2OetP,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjF6O2OetP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dbf1KhGjQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NjQUF6Rvu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nk0ONUaSz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"450\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"432\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jF6O2OetP.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BmG5wtwOV:{hover:true}};const cycleOrder=[\"BmG5wtwOV\"];const serializationHash=\"framer-9Lqna\";const variantClassNames={BmG5wtwOV:\"framer-v-ioeneg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BmG5wtwOV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"BmG5wtwOV-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ioeneg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BmG5wtwOV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"2px 3px 6px 0px rgba(0, 0, 0, 0.33)\",...style},...addPropertyOverrides({\"BmG5wtwOV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ph0ylj\",\"data-framer-name\":\"Vignette\",layoutDependency:layoutDependency,layoutId:\"CzT6DnkUi\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 71.17117117117118%, rgba(0, 0, 0, 0.6) 100%)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlIFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace SC\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CONNECT TO YOUR FUTURE SELF\"})}),className:\"framer-1lrzq1b\",fonts:[\"GF;Bruno Ace SC-regular\"],layoutDependency:layoutDependency,layoutId:\"VMpNDuZRV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(301deg, rgb(92, 255, 209) 27.3874%, rgb(173, 135, 255) 73.5968%)\"},children:\"Increased connectedness with a future self has been shown to positively impact decision making and motivation towards wellbeing behaviours. \"})})}),className:\"framer-1p0dg6a\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"hVWIHNGNO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:882,intrinsicWidth:1017,pixelHeight:882,pixelWidth:1017,sizes:\"550px\",src:\"https://framerusercontent.com/images/Ik42xuS4rMImwGPeXgwPDgqd34.png\",srcSet:\"https://framerusercontent.com/images/Ik42xuS4rMImwGPeXgwPDgqd34.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ik42xuS4rMImwGPeXgwPDgqd34.png 1017w\"},className:\"framer-gj4fqj\",\"data-framer-name\":\"Future_Self\",layoutDependency:layoutDependency,layoutId:\"r9KMMFxFg\",style:{opacity:1},variants:{\"BmG5wtwOV-hover\":{opacity:.29}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9Lqna.framer-srcrbf, .framer-9Lqna .framer-srcrbf { display: block; }\",\".framer-9Lqna.framer-ioeneg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 455px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 455px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Lqna .framer-1ph0ylj { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-9Lqna .framer-1lrzq1b { bottom: -22px; flex: none; height: 106px; left: calc(49.01098901098903% - 339px / 2); position: absolute; white-space: pre-wrap; width: 339px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-9Lqna .framer-1p0dg6a { bottom: 137px; flex: none; height: 111px; left: calc(51.64835164835168% - 324px / 2); position: absolute; white-space: pre-wrap; width: 324px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-9Lqna .framer-gj4fqj { aspect-ratio: 1.153061224489796 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 477px); overflow: visible; position: relative; width: 550px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9Lqna.framer-ioeneg { gap: 0px; } .framer-9Lqna.framer-ioeneg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9Lqna.framer-ioeneg > :first-child { margin-top: 0px; } .framer-9Lqna.framer-ioeneg > :last-child { margin-bottom: 0px; } }\",\".framer-9Lqna.framer-v-ioeneg.hover.framer-ioeneg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 455px); }\",\".framer-9Lqna.framer-v-ioeneg.hover .framer-1lrzq1b { bottom: 248px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 455\n * @framerIntrinsicWidth 455\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RBeXvR7xS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermE92O2nsd=withCSS(Component,css,\"framer-9Lqna\");export default FramermE92O2nsd;FramermE92O2nsd.displayName=\"Slide 3\";FramermE92O2nsd.defaultProps={height:455,width:455};addFonts(FramermE92O2nsd,[{explicitInter:true,fonts:[{family:\"Bruno Ace SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/brunoacesc/v5/ptROTiycffFLBuiHjdJDl634KCFrpe8uZA.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermE92O2nsd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RBeXvR7xS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"455\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"455\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mE92O2nsd.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"y5Ha1CZUd\",\"xJeLuWOxB\",\"Za2ZHyL3W\",\"cxV75eipj\",\"kx4vtwH1K\"];const serializationHash=\"framer-lqebP\";const variantClassNames={cxV75eipj:\"framer-v-aev2fm\",kx4vtwH1K:\"framer-v-k96934\",xJeLuWOxB:\"framer-v-nae84a\",y5Ha1CZUd:\"framer-v-qwxxhp\",Za2ZHyL3W:\"framer-v-hw7pxs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"y5Ha1CZUd\",\"Variant 2\":\"xJeLuWOxB\",\"Variant 3\":\"Za2ZHyL3W\",\"Variant 4\":\"cxV75eipj\",\"Variant 5\":\"kx4vtwH1K\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"y5Ha1CZUd\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"y5Ha1CZUd\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qwxxhp\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"y5Ha1CZUd\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(180, 59, 255) -0.9009009009009009%, rgba(180, 150, 255, 0) 23.06304106841216%, rgb(255, 255, 255) 32.072050077421174%, rgba(0, 0, 0, 0) 53.51353550816442%)\",...style},variants:{cxV75eipj:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(147, 255, 59) -0.9009009009009009%, rgba(180, 150, 255, 0) 23.06304106841216%, rgb(255, 255, 255) 32.072050077421174%, rgba(0, 0, 0, 0) 53.51353550816442%)\"},kx4vtwH1K:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) -0.9009009009009009%, rgba(180, 150, 255, 0) 23.06304106841216%, rgb(255, 255, 255) 32.072050077421174%, rgba(0, 0, 0, 0) 53.51353550816442%)\"},xJeLuWOxB:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(59, 255, 245) -0.9009009009009009%, rgba(180, 150, 255, 0) 23.06304106841216%, rgb(255, 255, 255) 32.072050077421174%, rgba(0, 0, 0, 0) 53.51353550816442%)\"},Za2ZHyL3W:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 159, 15) -0.9009009009009009%, rgba(180, 150, 255, 0) 23.06304106841216%, rgb(255, 255, 255) 32.072050077421174%, rgba(0, 0, 0, 0) 53.51353550816442%)\"}},...addPropertyOverrides({cxV75eipj:{\"data-framer-name\":\"Variant 4\"},kx4vtwH1K:{\"data-framer-name\":\"Variant 5\"},xJeLuWOxB:{\"data-framer-name\":\"Variant 2\"},Za2ZHyL3W:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant)})})});});const css=['.framer-lqebP[data-border=\"true\"]::after, .framer-lqebP [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lqebP.framer-16fg91j, .framer-lqebP .framer-16fg91j { display: block; }\",\".framer-lqebP.framer-qwxxhp { height: 144px; overflow: hidden; position: relative; width: 144px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xJeLuWOxB\":{\"layout\":[\"fixed\",\"fixed\"]},\"Za2ZHyL3W\":{\"layout\":[\"fixed\",\"fixed\"]},\"cxV75eipj\":{\"layout\":[\"fixed\",\"fixed\"]},\"kx4vtwH1K\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerrr6TnnYrw=withCSS(Component,css,\"framer-lqebP\");export default Framerrr6TnnYrw;Framerrr6TnnYrw.displayName=\"Cordenate Star\";Framerrr6TnnYrw.defaultProps={height:144,width:144};addPropertyControls(Framerrr6TnnYrw,{variant:{options:[\"y5Ha1CZUd\",\"xJeLuWOxB\",\"Za2ZHyL3W\",\"cxV75eipj\",\"kx4vtwH1K\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerrr6TnnYrw,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrr6TnnYrw\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"144\",\"framerIntrinsicWidth\":\"144\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xJeLuWOxB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Za2ZHyL3W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cxV75eipj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kx4vtwH1K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rr6TnnYrw.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BzV17tO1z:{hover:true},cGTo4N_UM:{hover:true},Jf04XZyUR:{hover:true},zSryFcof0:{hover:true}};const cycleOrder=[\"Jf04XZyUR\",\"cGTo4N_UM\",\"BzV17tO1z\",\"zSryFcof0\"];const serializationHash=\"framer-omXSK\";const variantClassNames={BzV17tO1z:\"framer-v-1d31r0e\",cGTo4N_UM:\"framer-v-1uo8lda\",Jf04XZyUR:\"framer-v-10tsza\",zSryFcof0:\"framer-v-54kxew\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Bottom:\"BzV17tO1z\",Left:\"zSryFcof0\",Right:\"cGTo4N_UM\",Top:\"Jf04XZyUR\"};const getProps=({buttonFill,buttonText,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,ofLqZhEO8:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.ofLqZhEO8)!==null&&_ref!==void 0?_ref:\"Running stroke\",PPM8eZNfR:(_ref1=buttonFill!==null&&buttonFill!==void 0?buttonFill:props.PPM8eZNfR)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Jf04XZyUR\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ofLqZhEO8,PPM8eZNfR,Rb5OgUSWElRi7XplMx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Jf04XZyUR\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearx4yxc4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),700);});useOnVariantChange(baseVariant,{default:onAppearx4yxc4});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10tsza\",className,classNames),\"data-framer-name\":\"Top\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Jf04XZyUR\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:118,borderBottomRightRadius:118,borderTopLeftRadius:118,borderTopRightRadius:118,...style},...addPropertyOverrides({\"BzV17tO1z-hover\":{\"data-framer-name\":undefined},\"cGTo4N_UM-hover\":{\"data-framer-name\":undefined},\"Jf04XZyUR-hover\":{\"data-framer-name\":undefined},\"zSryFcof0-hover\":{\"data-framer-name\":undefined},BzV17tO1z:{\"data-framer-name\":\"Bottom\"},cGTo4N_UM:{\"data-framer-name\":\"Right\"},zSryFcof0:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f37nlo\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"cRawr7JVv\",style:{background:\"radial-gradient(25% 50% at 50% 0%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"BzV17tO1z-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},\"cGTo4N_UM-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},\"Jf04XZyUR-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},\"zSryFcof0-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},BzV17tO1z:{background:\"radial-gradient(25% 50% at 50% 100%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},cGTo4N_UM:{background:\"radial-gradient(25% 35.4% at 100% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},zSryFcof0:{background:\"radial-gradient(25% 34.4% at 0% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1frmnyo\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"m3StHu4QV\",style:{background:\"radial-gradient(20.7% 50% at 50% 0%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72},variants:{\"BzV17tO1z-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},\"cGTo4N_UM-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},\"Jf04XZyUR-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},\"zSryFcof0-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},BzV17tO1z:{background:\"radial-gradient(20.7% 50% at 50% 100%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},cGTo4N_UM:{background:\"radial-gradient(16.2% 41.199999999999996% at 100% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"},zSryFcof0:{background:\"radial-gradient(16.6% 43.1% at 0% 50%, rgb(46, 255, 252) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10zidpz\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"z8VBPXbvq\",style:{backgroundColor:PPM8eZNfR,borderBottomLeftRadius:114,borderBottomRightRadius:114,borderTopLeftRadius:114,borderTopRightRadius:114}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-Rb5OgUSWE-lRi7XplMx) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(173, 255, 241))\"},children:\"Running stroke\"})}),className:\"framer-1vvz6i9\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"qNA3mLjVc\",style:{\"--extracted-r6o4lv\":\"rgb(173, 255, 241)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-Rb5OgUSWE-lRi7XplMx\":Rb5OgUSWElRi7XplMx},text:ofLqZhEO8,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-omXSK.framer-6xdwas, .framer-omXSK .framer-6xdwas { display: block; }\",\".framer-omXSK.framer-10tsza { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 20px 28px 20px 28px; position: relative; width: auto; }\",\".framer-omXSK .framer-1f37nlo, .framer-omXSK .framer-1frmnyo { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-omXSK .framer-10zidpz { bottom: 2px; flex: none; left: 2px; overflow: hidden; position: absolute; right: 2px; top: 2px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-omXSK .framer-1vvz6i9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-omXSK.framer-10tsza { gap: 0px; } .framer-omXSK.framer-10tsza > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-omXSK.framer-10tsza > :first-child { margin-top: 0px; } .framer-omXSK.framer-10tsza > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 59\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cGTo4N_UM\":{\"layout\":[\"auto\",\"auto\"]},\"BzV17tO1z\":{\"layout\":[\"auto\",\"auto\"]},\"zSryFcof0\":{\"layout\":[\"auto\",\"auto\"]},\"WXZ9nain2\":{\"layout\":[\"auto\",\"auto\"]},\"UEeUGJTYY\":{\"layout\":[\"auto\",\"auto\"]},\"YXPcyerU9\":{\"layout\":[\"auto\",\"auto\"]},\"zkbaEtT72\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ofLqZhEO8\":\"buttonText\",\"PPM8eZNfR\":\"buttonFill\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersOOpYCiS5=withCSS(Component,css,\"framer-omXSK\");export default FramersOOpYCiS5;FramersOOpYCiS5.displayName=\"Running-Stroke Copy\";FramersOOpYCiS5.defaultProps={height:59,width:168};addPropertyControls(FramersOOpYCiS5,{variant:{options:[\"Jf04XZyUR\",\"cGTo4N_UM\",\"BzV17tO1z\",\"zSryFcof0\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},ofLqZhEO8:{defaultValue:\"Running stroke\",displayTextArea:false,title:\"Button text\",type:ControlType.String},PPM8eZNfR:{defaultValue:\"rgb(0, 0, 0)\",title:\"Button fill\",type:ControlType.Color}});addFonts(FramersOOpYCiS5,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersOOpYCiS5\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ofLqZhEO8\\\":\\\"buttonText\\\",\\\"PPM8eZNfR\\\":\\\"buttonFill\\\"}\",\"framerIntrinsicWidth\":\"168\",\"framerIntrinsicHeight\":\"59\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cGTo4N_UM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BzV17tO1z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zSryFcof0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WXZ9nain2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UEeUGJTYY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YXPcyerU9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zkbaEtT72\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sOOpYCiS5.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={fPwW9_zc_:{hover:true},kmUIpZXiS:{hover:true},TC1pYcL_g:{hover:true},y_ASGPINf:{hover:true}};const cycleOrder=[\"TC1pYcL_g\",\"kmUIpZXiS\",\"fPwW9_zc_\",\"y_ASGPINf\"];const serializationHash=\"framer-XJREJ\";const variantClassNames={fPwW9_zc_:\"framer-v-u1kvfo\",kmUIpZXiS:\"framer-v-1mxea4j\",TC1pYcL_g:\"framer-v-175d7c\",y_ASGPINf:\"framer-v-1qkcvfq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Bottom:\"fPwW9_zc_\",Left:\"y_ASGPINf\",Right:\"kmUIpZXiS\",Top:\"TC1pYcL_g\"};const getProps=({buttonFill,buttonText,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,ofLqZhEO8:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.ofLqZhEO8)!==null&&_ref!==void 0?_ref:\"Running stroke\",PPM8eZNfR:(_ref1=buttonFill!==null&&buttonFill!==void 0?buttonFill:props.PPM8eZNfR)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"TC1pYcL_g\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ofLqZhEO8,PPM8eZNfR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TC1pYcL_g\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearx4yxc4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),700);});useOnVariantChange(baseVariant,{default:onAppearx4yxc4});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-175d7c\",className,classNames),\"data-framer-name\":\"Top\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TC1pYcL_g\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:118,borderBottomRightRadius:118,borderTopLeftRadius:118,borderTopRightRadius:118,...style},...addPropertyOverrides({\"fPwW9_zc_-hover\":{\"data-framer-name\":undefined},\"kmUIpZXiS-hover\":{\"data-framer-name\":undefined},\"TC1pYcL_g-hover\":{\"data-framer-name\":undefined},\"y_ASGPINf-hover\":{\"data-framer-name\":undefined},fPwW9_zc_:{\"data-framer-name\":\"Bottom\"},kmUIpZXiS:{\"data-framer-name\":\"Right\"},y_ASGPINf:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ef67x\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"yIay6j1SM\",style:{background:\"radial-gradient(25% 50% at 50% 0%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"fPwW9_zc_-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},\"kmUIpZXiS-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},\"TC1pYcL_g-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},\"y_ASGPINf-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},fPwW9_zc_:{background:\"radial-gradient(25% 50% at 50% 100%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},kmUIpZXiS:{background:\"radial-gradient(25% 35.4% at 100% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},y_ASGPINf:{background:\"radial-gradient(25% 34.4% at 0% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-181v3ch\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"VfotlZdH3\",style:{background:\"radial-gradient(20.7% 50% at 50% 0%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72},variants:{\"fPwW9_zc_-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},\"kmUIpZXiS-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},\"TC1pYcL_g-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},\"y_ASGPINf-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},fPwW9_zc_:{background:\"radial-gradient(20.7% 50% at 50% 100%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},kmUIpZXiS:{background:\"radial-gradient(16.2% 41.199999999999996% at 100% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"},y_ASGPINf:{background:\"radial-gradient(16.6% 43.1% at 0% 50%, rgb(255, 158, 102) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12i21pv\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"U3cX8_8af\",style:{backgroundColor:PPM8eZNfR,borderBottomLeftRadius:114,borderBottomRightRadius:114,borderTopLeftRadius:114,borderTopRightRadius:114}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 194, 163))\"},children:\"Running stroke\"})}),className:\"framer-135dcht\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"lSCGD5s8u\",style:{\"--extracted-r6o4lv\":\"rgb(255, 194, 163)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ofLqZhEO8,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XJREJ.framer-1r7zezh, .framer-XJREJ .framer-1r7zezh { display: block; }\",\".framer-XJREJ.framer-175d7c { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 20px 28px 20px 28px; position: relative; width: auto; }\",\".framer-XJREJ .framer-11ef67x, .framer-XJREJ .framer-181v3ch { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XJREJ .framer-12i21pv { bottom: 2px; flex: none; left: 2px; overflow: hidden; position: absolute; right: 2px; top: 2px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XJREJ .framer-135dcht { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XJREJ.framer-175d7c { gap: 0px; } .framer-XJREJ.framer-175d7c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XJREJ.framer-175d7c > :first-child { margin-top: 0px; } .framer-XJREJ.framer-175d7c > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 59\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kmUIpZXiS\":{\"layout\":[\"auto\",\"auto\"]},\"fPwW9_zc_\":{\"layout\":[\"auto\",\"auto\"]},\"y_ASGPINf\":{\"layout\":[\"auto\",\"auto\"]},\"t8yemETE5\":{\"layout\":[\"auto\",\"auto\"]},\"vLkgVFtbZ\":{\"layout\":[\"auto\",\"auto\"]},\"M_XK22Mmf\":{\"layout\":[\"auto\",\"auto\"]},\"rtZyip_au\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ofLqZhEO8\":\"buttonText\",\"PPM8eZNfR\":\"buttonFill\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersQnl2ddOb=withCSS(Component,css,\"framer-XJREJ\");export default FramersQnl2ddOb;FramersQnl2ddOb.displayName=\"Running-Stroke Copy 2\";FramersQnl2ddOb.defaultProps={height:59,width:168};addPropertyControls(FramersQnl2ddOb,{variant:{options:[\"TC1pYcL_g\",\"kmUIpZXiS\",\"fPwW9_zc_\",\"y_ASGPINf\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},ofLqZhEO8:{defaultValue:\"Running stroke\",displayTextArea:false,title:\"Button text\",type:ControlType.String},PPM8eZNfR:{defaultValue:\"rgb(0, 0, 0)\",title:\"Button fill\",type:ControlType.Color}});addFonts(FramersQnl2ddOb,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersQnl2ddOb\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kmUIpZXiS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fPwW9_zc_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"y_ASGPINf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t8yemETE5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vLkgVFtbZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"M_XK22Mmf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rtZyip_au\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"59\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"168\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ofLqZhEO8\\\":\\\"buttonText\\\",\\\"PPM8eZNfR\\\":\\\"buttonFill\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sQnl2ddOb.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={VSiSdKp1g:{hover:true}};const cycleOrder=[\"VSiSdKp1g\"];const serializationHash=\"framer-hsb71\";const variantClassNames={VSiSdKp1g:\"framer-v-j8b8ei\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VSiSdKp1g\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"VSiSdKp1g-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j8b8ei\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VSiSdKp1g\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"2px 3px 6px 0px rgba(0, 0, 0, 0.95)\",...style},...addPropertyOverrides({\"VSiSdKp1g-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ia3un\",\"data-framer-name\":\"Vignette\",layoutDependency:layoutDependency,layoutId:\"elkIAP2v5\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 71.17117117117118%, rgba(0, 0, 0, 0.6) 100%)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlIFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace SC\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"OPEN UP WITH AWE\"})}),className:\"framer-ee74wq\",fonts:[\"GF;Bruno Ace SC-regular\"],layoutDependency:layoutDependency,layoutId:\"uCRT9rwkj\",style:{\"--extracted-r6o4lv\":\" rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(301deg, rgb(92, 255, 209) 27.3874%, rgb(173, 135, 255) 73.5968%)\"},children:\"A key aspect of peak experiences, awe is associated with an expansion of one\u2019s frame of reference and can induce gratitude, humility & connection to others and nature. \"})})}),className:\"framer-1uaowo8\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"W4npqDI6w\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1390,intrinsicWidth:1984,pixelHeight:1390,pixelWidth:1984,sizes:\"800px\",src:\"https://framerusercontent.com/images/HDsBtjtOCevsBgPL1lerBMXClI.png\",srcSet:\"https://framerusercontent.com/images/HDsBtjtOCevsBgPL1lerBMXClI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HDsBtjtOCevsBgPL1lerBMXClI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HDsBtjtOCevsBgPL1lerBMXClI.png 1984w\"},className:\"framer-1vzvavb\",\"data-framer-name\":\"HighresScreenshot00011\",layoutDependency:layoutDependency,layoutId:\"kYbrEcSIf\",style:{opacity:.62},variants:{\"VSiSdKp1g-hover\":{opacity:.42}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hsb71.framer-1a9bb8i, .framer-hsb71 .framer-1a9bb8i { display: block; }\",\".framer-hsb71.framer-j8b8ei { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 455px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 455px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hsb71 .framer-3ia3un { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-hsb71 .framer-ee74wq { bottom: -8px; flex: none; height: 106px; left: calc(50.98901098901101% - 197px / 2); position: absolute; white-space: pre-wrap; width: 197px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-hsb71 .framer-1uaowo8 { flex: none; height: 106px; left: calc(50.10989010989013% - 299px / 2); position: absolute; top: calc(52.087912087912116% - 106px / 2); white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-hsb71 .framer-1vzvavb { aspect-ratio: 1.427338129496403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); overflow: visible; position: relative; width: 800px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hsb71.framer-j8b8ei { gap: 0px; } .framer-hsb71.framer-j8b8ei > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hsb71.framer-j8b8ei > :first-child { margin-top: 0px; } .framer-hsb71.framer-j8b8ei > :last-child { margin-bottom: 0px; } }\",\".framer-hsb71.framer-v-j8b8ei.hover.framer-j8b8ei { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 455px); }\",\".framer-hsb71.framer-v-j8b8ei.hover .framer-ee74wq { bottom: unset; left: calc(51.208791208791226% - 197px / 2); top: 27px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 455\n * @framerIntrinsicWidth 455\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"L97sAyWEM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameru374cC128=withCSS(Component,css,\"framer-hsb71\");export default Frameru374cC128;Frameru374cC128.displayName=\"Slide 1\";Frameru374cC128.defaultProps={height:455,width:455};addFonts(Frameru374cC128,[{explicitInter:true,fonts:[{family:\"Bruno Ace SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/brunoacesc/v5/ptROTiycffFLBuiHjdJDl634KCFrpe8uZA.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru374cC128\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"455\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L97sAyWEM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"455\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./u374cC128.map", "// Generated by Framer (d0574d7)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as n,cx as o,RichText as i,useActiveVariantCallback as s,useLocaleInfo as l,useOnVariantChange as d,useVariantState as m,withCSS as p}from\"framer\";import{LayoutGroup as f,motion as u,MotionConfigContext as c}from\"framer-motion\";import*as h from\"react\";let v=[\"yuD2p1s3m\",\"PespQWnWj\",\"vLCR4CItp\"],y=\"framer-aRexr\",g={PespQWnWj:\"framer-v-xdbggg\",vLCR4CItp:\"framer-v-bhcbyw\",yuD2p1s3m:\"framer-v-oyeokd\"};function b(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let x={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},R=(e,r)=>`translate(-50%, -50%) ${r}`,C={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},w={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"},I=({value:r,children:t})=>{let a=h.useContext(c),n=null!=r?r:a.transition,o=h.useMemo(()=>({...a,transition:n}),[JSON.stringify(n)]);return /*#__PURE__*/e(c.Provider,{value:o,children:t});},j={1:\"yuD2p1s3m\",2:\"PespQWnWj\",3:\"vLCR4CItp\"},W=({height:e,id:r,submitted:t,title:a,width:n,...o})=>{var i,s,l;return{...o,I4djrsrOh:null!=t?t:o.I4djrsrOh,t2sA2yhrN:null!==(i=null!=a?a:o.t2sA2yhrN)&&void 0!==i?i:\"Your response has been submitted.\",variant:null!==(l=null!==(s=j[o.variant])&&void 0!==s?s:o.variant)&&void 0!==l?l:\"yuD2p1s3m\"};},L=(e,r)=>r.join(\"-\")+e.layoutDependency,k=/*#__PURE__*/h.forwardRef(function(t,a){let{activeLocale:n}=l(),{style:p,className:c,layoutId:y,variant:j,t2sA2yhrN:k,I4djrsrOh:P,...T}=W(t),{baseVariant:D,classNames:N,gestureVariant:S,setGestureState:Q,setVariant:V,transition:E,variants:H}=m({cycleOrder:v,defaultVariant:\"yuD2p1s3m\",transitions:x,variant:j,variantClassNames:g}),A=L(t,H),{activeVariantCallback:O,delay:M}=s(D),X=O(async(...e)=>{V(\"PespQWnWj\");}),Y=O(async(...e)=>{await M(()=>V(\"vLCR4CItp\"),500);}),_=O(async(...e)=>{if(P){let r=await P(...e);if(!1===r)return!1;}});d(D,{default:X,PespQWnWj:Y,vLCR4CItp:_});let B=h.useRef(null),J=h.useId();return /*#__PURE__*/e(f,{id:null!=y?y:J,children:/*#__PURE__*/e(u.div,{initial:j,animate:H,onHoverStart:()=>Q({isHovered:!0}),onHoverEnd:()=>Q({isHovered:!1}),onTapStart:()=>Q({isPressed:!0}),onTap:()=>Q({isPressed:!1}),onTapCancel:()=>Q({isPressed:!1}),className:o(\"framer-aRexr\",...[],N),style:{display:\"contents\"},children:/*#__PURE__*/e(I,{value:E,children:/*#__PURE__*/r(u.div,{...T,className:o(\"framer-oyeokd\",c),\"data-framer-name\":\"1\",\"data-highlight\":!0,layoutDependency:A,layoutId:\"yuD2p1s3m\",ref:null!=a?a:B,style:{...p},...b({PespQWnWj:{\"data-framer-name\":\"2\"},vLCR4CItp:{\"data-framer-name\":\"3\"}},D,S),children:[/*#__PURE__*/e(u.div,{className:\"framer-6g2lsk\",layoutDependency:A,layoutId:\"JbCmjH__d\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1},variants:{vLCR4CItp:{opacity:0}}}),/*#__PURE__*/e(I,{value:C,...b({vLCR4CItp:{value:w}},D,S),children:/*#__PURE__*/e(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(u.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Your response has been submitted.\"})}),className:\"framer-rivmj1\",fonts:[\"Inter-Medium\"],layoutDependency:A,layoutId:\"vtJnx2Tfw\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:k,transformTemplate:R,variants:{vLCR4CItp:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:!0,...b({vLCR4CItp:{children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(u.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Your response has been submitted.\"})})}},D,S)})})]})})})});}),P=['.framer-aRexr [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aRexr .framer-mld7s9 { display: block; }\",\".framer-aRexr .framer-oyeokd { height: 41px; overflow: hidden; position: relative; width: 301px; }\",\".framer-aRexr .framer-6g2lsk { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aRexr .framer-rivmj1 { flex: none; height: auto; left: 50%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\".framer-aRexr.framer-v-xdbggg .framer-6g2lsk { bottom: unset; height: 41px; left: calc(49.83388704318939% - 41px / 2); right: unset; top: calc(48.78048780487807% - 41px / 2); width: 41px; }\",\".framer-aRexr.framer-v-bhcbyw .framer-6g2lsk { bottom: unset; height: 1px; left: calc(49.83388704318939% - 1px / 2); right: unset; top: calc(48.78048780487807% - 1px / 2); width: 1px; }\"],T=p(k,P,\"framer-aRexr\");export default T;T.displayName=\"Email Button/Success message\",T.defaultProps={height:41,width:301},a(T,{variant:{options:[\"yuD2p1s3m\",\"PespQWnWj\",\"vLCR4CItp\"],optionTitles:[\"1\",\"2\",\"3\"],title:\"Variant\",type:n.Enum},t2sA2yhrN:{defaultValue:\"Your response has been submitted.\",displayTextArea:!1,title:\"Title\",type:n.String},I4djrsrOh:{title:\"Submitted\",type:n.EventHandler}}),t(T,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFLATpECuM\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"false\",\"framerVariables\":\"{\\\"t2sA2yhrN\\\":\\\"title\\\",\\\"I4djrsrOh\\\":\\\"submitted\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PespQWnWj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vLCR4CItp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"301\",\"framerIntrinsicHeight\":\"41\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FLATpECuM.map", "// Generated by Framer (3f9fff0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import EmailButtonSuccessMessage from\"https://framerusercontent.com/modules/n5ytOTEKnEUMrBXZ7aIY/Rr90SvJrBBboQlR4ILLu/FLATpECuM.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js\";const InputFonts=getFonts(Input);const EmailButtonSuccessMessageFonts=getFonts(EmailButtonSuccessMessage);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"rUsaahvNh\",\"zgwg0Hchs\",\"PhotedHLL\",\"FmpBsyyZl\",\"S140MUoiz\",\"SRxv4jjpY\",\"W9JJnouI5\",\"B8eyBPmDM\"];const serializationHash=\"framer-kqHlq\";const variantClassNames={B8eyBPmDM:\"framer-v-onihbf\",FmpBsyyZl:\"framer-v-xljhxk\",PhotedHLL:\"framer-v-1r9bwiq\",rUsaahvNh:\"framer-v-m12l5z\",S140MUoiz:\"framer-v-eox76t\",SRxv4jjpY:\"framer-v-cm4wol\",W9JJnouI5:\"framer-v-lggb6i\",zgwg0Hchs:\"framer-v-p5jzm5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={damping:60,delay:.4,mass:1,stiffness:600,type:\"spring\"};const transition5={delay:.4,duration:.3,ease:[0,0,1,1],type:\"tween\"};const transition6={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const 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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Dark Mode = Primary\":\"S140MUoiz\",\"Hover -  DM\":\"SRxv4jjpY\",\"Open 1 - DM\":\"W9JJnouI5\",\"Open 1\":\"PhotedHLL\",\"Open 2 - DM\":\"B8eyBPmDM\",\"Open 2\":\"FmpBsyyZl\",Default:\"rUsaahvNh\",Hover:\"zgwg0Hchs\"};const getProps=({height,id,label,message,siteBG,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,mCjPyaNQN:(_ref=siteBG!==null&&siteBG!==void 0?siteBG:props.mCjPyaNQN)!==null&&_ref!==void 0?_ref:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",Rnws_SKtt:(_ref1=label!==null&&label!==void 0?label:props.Rnws_SKtt)!==null&&_ref1!==void 0?_ref1:\"Notify Me\",Rv8ilcyS8:(_ref2=message!==null&&message!==void 0?message:props.Rv8ilcyS8)!==null&&_ref2!==void 0?_ref2:\"Your response has been submitted.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"rUsaahvNh\"};};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,Rnws_SKtt,Rv8ilcyS8,mCjPyaNQN,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rUsaahvNh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapjtenh5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"PhotedHLL\");});const onMouseEnter1x68why=activeVariantCallback(async(...args)=>{setVariant(\"zgwg0Hchs\");});const onMouseLeave1lzvn1=activeVariantCallback(async(...args)=>{setVariant(\"rUsaahvNh\");});const onAppear13s45hc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FmpBsyyZl\"),250);});const onTap79qxwp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"W9JJnouI5\");});const onMouseEnterunp69z=activeVariantCallback(async(...args)=>{setVariant(\"SRxv4jjpY\");});const onMouseLeave1enbscm=activeVariantCallback(async(...args)=>{setVariant(\"S140MUoiz\");});const onAppear16embv4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"B8eyBPmDM\"),250);});const onSubmitizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const I4djrsrOh1lzvn1=activeVariantCallback(async(...args)=>{setVariant(\"rUsaahvNh\");});const onTap1lzvn1=activeVariantCallback(async(...args)=>{setVariant(\"rUsaahvNh\");});const onTap1enbscm=activeVariantCallback(async(...args)=>{setVariant(\"S140MUoiz\");});useOnVariantChange(baseVariant,{PhotedHLL:onAppear13s45hc,W9JJnouI5:onAppear16embv4});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({B8eyBPmDM:{value:transition2},FmpBsyyZl:{value:transition2},PhotedHLL:{value:transition2},SRxv4jjpY:{value:transition3},W9JJnouI5:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-m12l5z\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rUsaahvNh\",onMouseEnter:onMouseEnter1x68why,onTap:onTapjtenh5,ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(171, 171, 171) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"none\",...style},variants:{B8eyBPmDM:{background:\"linear-gradient(180deg, rgb(117, 117, 117) 0%, rgba(0, 0, 0, 0) 100%)\"},S140MUoiz:{background:\"linear-gradient(179deg, rgb(105, 105, 105) 0%, rgb(0, 0, 0) 100%)\"},SRxv4jjpY:{background:\"linear-gradient(179deg, rgb(105, 105, 105) 0%, rgb(0, 0, 0) 100%)\",boxShadow:\"0px 0px 18px 12px rgba(146, 87, 255, 0.36)\"},W9JJnouI5:{background:\"linear-gradient(180deg, rgb(92, 92, 92) 0%, rgb(0, 0, 0) 100%)\"}},...addPropertyOverrides({B8eyBPmDM:{\"data-framer-name\":\"Open 2 - DM\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined},FmpBsyyZl:{\"data-framer-name\":\"Open 2\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined},PhotedHLL:{\"data-framer-name\":\"Open 1\",onMouseEnter:undefined,onTap:undefined},S140MUoiz:{\"data-framer-name\":\"Dark Mode = Primary\",onMouseEnter:onMouseEnterunp69z,onTap:onTap79qxwp},SRxv4jjpY:{\"data-framer-name\":\"Hover -  DM\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1enbscm,onTap:onTap79qxwp},W9JJnouI5:{\"data-framer-name\":\"Open 1 - DM\",onMouseEnter:undefined,onTap:undefined},zgwg0Hchs:{\"data-framer-name\":\"Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1lzvn1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(110, 0, 173))\"},children:\"Notify Me\"})}),className:\"framer-1uxn18g\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"DVy72SvMB\",style:{\"--extracted-r6o4lv\":\"rgb(110, 0, 173)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:Rnws_SKtt,transformTemplate:transformTemplate1,variants:{B8eyBPmDM:{opacity:0},FmpBsyyZl:{opacity:0},PhotedHLL:{opacity:0},S140MUoiz:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},SRxv4jjpY:{\"--extracted-r6o4lv\":\"rgb(179, 28, 255)\"},W9JJnouI5:{opacity:0},zgwg0Hchs:{\"--extracted-r6o4lv\":\"rgb(179, 28, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B8eyBPmDM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(110, 0, 173))\"},children:\"Notify Me\"})})},S140MUoiz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(150, 150, 150, 0.81) 100%)\"},children:\"Notify Me\"})})})},SRxv4jjpY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 28, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(107, 28, 255) 0%, rgba(255, 255, 255, 0.96) 100%)\"},children:\"Notify Me\"})})})},W9JJnouI5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(110, 0, 173))\"},children:\"Notify Me\"})})},zgwg0Hchs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 28, 255))\"},children:\"Notify Me\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Notify Me\"})}),className:\"framer-1qll8r3\",\"data-framer-name\":\"Helper\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"AJdTLzNoq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:Rnws_SKtt,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B8eyBPmDM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Notify Me\"})}),transformTemplate:transformTemplate1},FmpBsyyZl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Notify Me\"})}),transformTemplate:transformTemplate1},PhotedHLL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Notify Me\"})}),transformTemplate:transformTemplate1},S140MUoiz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Notify Me\"})})},SRxv4jjpY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Notify Me\"})})},W9JJnouI5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Notify Me\"})}),transformTemplate:transformTemplate1},zgwg0Hchs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Notify Me\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({B8eyBPmDM:{value:transition5},FmpBsyyZl:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rypbw-container\",id:`${layoutId}-rypbw`,layoutDependency:layoutDependency,layoutId:\"xTQ4GSIID-container\",ref:ref2,style:{opacity:0},transformTemplate:transformTemplate1,variants:{B8eyBPmDM:{opacity:1},FmpBsyyZl:{opacity:1}},children:[/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:0,buttonPaddingBottom:0,buttonPaddingLeft:0,buttonPaddingPerSide:false,buttonPaddingRight:0,buttonPaddingTop:0,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0.1)\",insetWhenDocked:6,isDocked:true,label:\"\u2191\",shouldAppear:true,widthWhenDocked:28},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"clt0scpnd007c74xr1fykgy61\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"xTQ4GSIID\",input:{borderRadius:100,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fixedHeight:50,height:true,padding:10,paddingBottom:10,paddingLeft:16,paddingPerSide:true,paddingRight:10,paddingTop:10,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"xTQ4GSIID\",loopsID:\"clt0scpnd007c74xr1fykgy61\",loopsUserGroup:\"Paths XR\",mailchimpURL:\"\",onSubmit:onSubmitizu9gt({overlay}),redirectAs:\"overlay\",service:\"loops\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B8eyBPmDM:{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:0,buttonPaddingBottom:0,buttonPaddingLeft:0,buttonPaddingPerSide:false,buttonPaddingRight:0,buttonPaddingTop:0,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",insetWhenDocked:6,isDocked:true,label:\"\u2191\",shouldAppear:true,widthWhenDocked:28},input:{borderRadius:100,color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fixedHeight:50,height:true,padding:10,paddingBottom:10,paddingLeft:16,paddingPerSide:true,paddingRight:10,paddingTop:10,placeholder:\"name@email.com\",placeholderColor:\"rgba(255, 255, 255, 0.3)\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-rypbw`,offsetX:0,offsetY:-42.75,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:false,zIndex:11,...addPropertyOverrides({B8eyBPmDM:{offsetX:2,offsetY:-43.4},FmpBsyyZl:{offsetX:2,offsetY:-43.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({B8eyBPmDM:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1h9kse3\",exit:animation,initial:animation1,layoutDependency:layoutDependency,layoutId:\"tA4IVuvC6\",ref:ref3,role:\"dialog\",style:{backgroundColor:mCjPyaNQN,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xq2m22-container\",layoutDependency:layoutDependency,layoutId:\"DVylfCtaW-container\",children:/*#__PURE__*/_jsx(EmailButtonSuccessMessage,{height:\"100%\",I4djrsrOh:I4djrsrOh1lzvn1,id:\"DVylfCtaW\",layoutId:\"DVylfCtaW\",style:{height:\"100%\",width:\"100%\"},t2sA2yhrN:Rv8ilcyS8,variant:\"yuD2p1s3m\",width:\"100%\"})})})})})})})]})})})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({B8eyBPmDM:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y17o1g\",\"data-framer-name\":\"Close trigger\",layoutDependency:layoutDependency,layoutId:\"BFox4_uiD\",...addPropertyOverrides({B8eyBPmDM:{\"data-highlight\":true,onTap:onTap1enbscm},FmpBsyyZl:{\"data-highlight\":true,onTap:onTap1lzvn1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ug11a\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"b2CQ6NVKB\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kqHlq.framer-u76em, .framer-kqHlq .framer-u76em { display: block; }\",\".framer-kqHlq.framer-m12l5z { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-kqHlq .framer-1uxn18g { -webkit-user-select: none; flex: none; height: auto; left: 50%; position: absolute; top: 50%; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-kqHlq .framer-1qll8r3 { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-kqHlq .framer-rypbw-container { flex: none; height: auto; left: 50%; pointer-events: none; position: absolute; top: 50%; width: 300px; z-index: 1; }\",\".framer-kqHlq .framer-1h9kse3 { height: 47px; overflow: hidden; position: relative; width: 304px; }\",\".framer-kqHlq .framer-xq2m22-container { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-kqHlq .framer-y17o1g { cursor: default; flex: none; height: 3000px; left: calc(50.65502183406115% - 3000px / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 3000px / 2); width: 3000px; z-index: 0; }\",\".framer-kqHlq .framer-6ug11a { flex: none; height: 44px; left: calc(49.78165938864631% - 300px / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 44px / 2); width: 300px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kqHlq.framer-m12l5z { gap: 0px; } .framer-kqHlq.framer-m12l5z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-kqHlq.framer-m12l5z > :first-child { margin-top: 0px; } .framer-kqHlq.framer-m12l5z > :last-child { margin-bottom: 0px; } }\",\".framer-kqHlq.framer-v-1r9bwiq.framer-m12l5z, .framer-kqHlq.framer-v-xljhxk.framer-m12l5z, .framer-kqHlq.framer-v-lggb6i.framer-m12l5z, .framer-kqHlq.framer-v-onihbf.framer-m12l5z { cursor: unset; padding: 0px 2px 0px 2px; }\",\".framer-kqHlq.framer-v-1r9bwiq .framer-1uxn18g, .framer-kqHlq.framer-v-xljhxk .framer-1uxn18g, .framer-kqHlq.framer-v-lggb6i .framer-1uxn18g, .framer-kqHlq.framer-v-onihbf .framer-1uxn18g { left: 50%; }\",\".framer-kqHlq.framer-v-1r9bwiq .framer-1qll8r3, .framer-kqHlq.framer-v-xljhxk .framer-1qll8r3, .framer-kqHlq.framer-v-lggb6i .framer-1qll8r3, .framer-kqHlq.framer-v-onihbf .framer-1qll8r3 { left: 50%; position: absolute; top: 50%; }\",\".framer-kqHlq.framer-v-1r9bwiq .framer-rypbw-container, .framer-kqHlq.framer-v-xljhxk .framer-rypbw-container, .framer-kqHlq.framer-v-lggb6i .framer-rypbw-container { pointer-events: auto; }\",\".framer-kqHlq.framer-v-1r9bwiq .framer-y17o1g, .framer-kqHlq.framer-v-xljhxk .framer-y17o1g, .framer-kqHlq.framer-v-lggb6i .framer-y17o1g, .framer-kqHlq.framer-v-onihbf .framer-y17o1g { left: calc(50.00000000000002% - 3000px / 2); pointer-events: auto; }\",\".framer-kqHlq.framer-v-1r9bwiq .framer-6ug11a, .framer-kqHlq.framer-v-xljhxk .framer-6ug11a, .framer-kqHlq.framer-v-lggb6i .framer-6ug11a, .framer-kqHlq.framer-v-onihbf .framer-6ug11a { left: unset; position: relative; top: unset; }\",\".framer-kqHlq.framer-v-onihbf .framer-rypbw-container { mix-blend-mode: screen; pointer-events: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 114\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"zgwg0Hchs\":{\"layout\":[\"auto\",\"fixed\"]},\"PhotedHLL\":{\"layout\":[\"auto\",\"fixed\"]},\"FmpBsyyZl\":{\"layout\":[\"auto\",\"fixed\"]},\"S140MUoiz\":{\"layout\":[\"auto\",\"fixed\"]},\"SRxv4jjpY\":{\"layout\":[\"auto\",\"fixed\"]},\"W9JJnouI5\":{\"layout\":[\"auto\",\"fixed\"]},\"B8eyBPmDM\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Rnws_SKtt\":\"label\",\"Rv8ilcyS8\":\"message\",\"mCjPyaNQN\":\"siteBG\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVpxGNXEBH=withCSS(Component,css,\"framer-kqHlq\");export default FramerVpxGNXEBH;FramerVpxGNXEBH.displayName=\"Email Button/Compat Email Button\";FramerVpxGNXEBH.defaultProps={height:44,width:114};addPropertyControls(FramerVpxGNXEBH,{variant:{options:[\"rUsaahvNh\",\"zgwg0Hchs\",\"PhotedHLL\",\"FmpBsyyZl\",\"S140MUoiz\",\"SRxv4jjpY\",\"W9JJnouI5\",\"B8eyBPmDM\"],optionTitles:[\"Default\",\"Hover\",\"Open 1\",\"Open 2\",\"Dark Mode = Primary\",\"Hover -  DM\",\"Open 1 - DM\",\"Open 2 - DM\"],title:\"Variant\",type:ControlType.Enum},Rnws_SKtt:{defaultValue:\"Notify Me\",displayTextArea:false,title:\"Label\",type:ControlType.String},Rv8ilcyS8:{defaultValue:\"Your response has been submitted.\",displayTextArea:false,title:\"Message\",type:ControlType.String},mCjPyaNQN:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Site BG\",type:ControlType.Color}});addFonts(FramerVpxGNXEBH,[{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.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://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.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://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.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://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.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://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.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://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-ext-C7KWUKA7.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://app.framerstatic.com/Inter-SemiBold.cyrillic-JWV7SOZ6.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-ext-FBKSFTSU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-EQ3PSENU.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://app.framerstatic.com/Inter-SemiBold.latin-ext-ULRSO3ZR.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://app.framerstatic.com/Inter-SemiBold.latin-RDYY2AG2.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://app.framerstatic.com/Inter-SemiBold.vietnamese-ESQNSEQ3.woff2\",weight:\"600\"}]},...InputFonts,...EmailButtonSuccessMessageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVpxGNXEBH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"114\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zgwg0Hchs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PhotedHLL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FmpBsyyZl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"S140MUoiz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SRxv4jjpY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"W9JJnouI5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"B8eyBPmDM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Rnws_SKtt\\\":\\\"label\\\",\\\"Rv8ilcyS8\\\":\\\"message\\\",\\\"mCjPyaNQN\\\":\\\"siteBG\\\"}\",\"framerIntrinsicHeight\":\"44\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VpxGNXEBH.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={FhMJAyQiN:{hover:true},jNs_4DK7P:{hover:true},NZfJFO_WR:{hover:true},tBPxXI_az:{hover:true}};const cycleOrder=[\"jNs_4DK7P\",\"FhMJAyQiN\",\"tBPxXI_az\",\"NZfJFO_WR\"];const serializationHash=\"framer-ePQh1\";const variantClassNames={FhMJAyQiN:\"framer-v-19t1v79\",jNs_4DK7P:\"framer-v-ckungu\",NZfJFO_WR:\"framer-v-1g61cxv\",tBPxXI_az:\"framer-v-1kep0zv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Bottom:\"tBPxXI_az\",Left:\"NZfJFO_WR\",Right:\"FhMJAyQiN\",Top:\"jNs_4DK7P\"};const getProps=({buttonFill,buttonText,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,ofLqZhEO8:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.ofLqZhEO8)!==null&&_ref!==void 0?_ref:\"Running stroke\",PPM8eZNfR:(_ref1=buttonFill!==null&&buttonFill!==void 0?buttonFill:props.PPM8eZNfR)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"jNs_4DK7P\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ofLqZhEO8,PPM8eZNfR,Rb5OgUSWElRi7XplMx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jNs_4DK7P\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearx4yxc4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),700);});useOnVariantChange(baseVariant,{default:onAppearx4yxc4});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ckungu\",className,classNames),\"data-framer-name\":\"Top\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jNs_4DK7P\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:118,borderBottomRightRadius:118,borderTopLeftRadius:118,borderTopRightRadius:118,...style},...addPropertyOverrides({\"FhMJAyQiN-hover\":{\"data-framer-name\":undefined},\"jNs_4DK7P-hover\":{\"data-framer-name\":undefined},\"NZfJFO_WR-hover\":{\"data-framer-name\":undefined},\"tBPxXI_az-hover\":{\"data-framer-name\":undefined},FhMJAyQiN:{\"data-framer-name\":\"Right\"},NZfJFO_WR:{\"data-framer-name\":\"Left\"},tBPxXI_az:{\"data-framer-name\":\"Bottom\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ijs7w\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"a6A6Kti97\",style:{background:\"radial-gradient(25% 50% at 50% 0%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"FhMJAyQiN-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},\"jNs_4DK7P-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},\"NZfJFO_WR-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},\"tBPxXI_az-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},FhMJAyQiN:{background:\"radial-gradient(25% 35.4% at 100% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},NZfJFO_WR:{background:\"radial-gradient(25% 34.4% at 0% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},tBPxXI_az:{background:\"radial-gradient(25% 50% at 50% 100%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bl177v\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"uMoW5B5f5\",style:{background:\"radial-gradient(20.7% 50% at 50% 0%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72},variants:{\"FhMJAyQiN-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},\"jNs_4DK7P-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},\"NZfJFO_WR-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},\"tBPxXI_az-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},FhMJAyQiN:{background:\"radial-gradient(16.2% 41.199999999999996% at 100% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},NZfJFO_WR:{background:\"radial-gradient(16.6% 43.1% at 0% 50%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"},tBPxXI_az:{background:\"radial-gradient(20.7% 50% at 50% 100%, rgb(143, 255, 147) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d6udbp\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"i8x60BDKK\",style:{backgroundColor:PPM8eZNfR,borderBottomLeftRadius:114,borderBottomRightRadius:114,borderTopLeftRadius:114,borderTopRightRadius:114}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-Rb5OgUSWE-lRi7XplMx) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(204, 255, 206))\"},children:\"Running stroke\"})}),className:\"framer-1l7irn8\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"RZcze0Wc_\",style:{\"--extracted-r6o4lv\":\"rgb(204, 255, 206)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-Rb5OgUSWE-lRi7XplMx\":Rb5OgUSWElRi7XplMx},text:ofLqZhEO8,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ePQh1.framer-v5mgjc, .framer-ePQh1 .framer-v5mgjc { display: block; }\",\".framer-ePQh1.framer-ckungu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 20px 28px 20px 28px; position: relative; width: auto; }\",\".framer-ePQh1 .framer-19ijs7w, .framer-ePQh1 .framer-1bl177v { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-ePQh1 .framer-d6udbp { bottom: 2px; flex: none; left: 2px; overflow: hidden; position: absolute; right: 2px; top: 2px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-ePQh1 .framer-1l7irn8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ePQh1.framer-ckungu { gap: 0px; } .framer-ePQh1.framer-ckungu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ePQh1.framer-ckungu > :first-child { margin-top: 0px; } .framer-ePQh1.framer-ckungu > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 59\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FhMJAyQiN\":{\"layout\":[\"auto\",\"auto\"]},\"tBPxXI_az\":{\"layout\":[\"auto\",\"auto\"]},\"NZfJFO_WR\":{\"layout\":[\"auto\",\"auto\"]},\"LnAEJYNNo\":{\"layout\":[\"auto\",\"auto\"]},\"tEVSQK85l\":{\"layout\":[\"auto\",\"auto\"]},\"nTaNzW9wW\":{\"layout\":[\"auto\",\"auto\"]},\"eYthd1pO2\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ofLqZhEO8\":\"buttonText\",\"PPM8eZNfR\":\"buttonFill\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzukirTz23=withCSS(Component,css,\"framer-ePQh1\");export default FramerzukirTz23;FramerzukirTz23.displayName=\"Running-Stroke Copy 3\";FramerzukirTz23.defaultProps={height:59,width:168};addPropertyControls(FramerzukirTz23,{variant:{options:[\"jNs_4DK7P\",\"FhMJAyQiN\",\"tBPxXI_az\",\"NZfJFO_WR\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},ofLqZhEO8:{defaultValue:\"Running stroke\",displayTextArea:false,title:\"Button text\",type:ControlType.String},PPM8eZNfR:{defaultValue:\"rgb(0, 0, 0)\",title:\"Button fill\",type:ControlType.Color}});addFonts(FramerzukirTz23,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzukirTz23\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"59\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FhMJAyQiN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tBPxXI_az\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NZfJFO_WR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LnAEJYNNo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tEVSQK85l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nTaNzW9wW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eYthd1pO2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ofLqZhEO8\\\":\\\"buttonText\\\",\\\"PPM8eZNfR\\\":\\\"buttonFill\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"168\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zukirTz23.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TextMask from\"https://framerusercontent.com/modules/9N50PMbCaZNc8J76vXRL/zbPz4O3CnWxY2tjbhM7b/TextMask.js\";import Typeform from\"https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js\";import RunningStroke1 from\"https://framerusercontent.com/modules/fyEvRUdoZYPaukA8TLDQ/xQaZaUIqJeqBPc6iJWgk/lRi7XplMx.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Button from\"#framer/local/canvasComponent/AqpELfsT6/AqpELfsT6.js\";import TMGrid from\"#framer/local/canvasComponent/GlYLCIsqO/GlYLCIsqO.js\";import Slide2 from\"#framer/local/canvasComponent/H8AyTRi1L/H8AyTRi1L.js\";import Compass from\"#framer/local/canvasComponent/jF6O2OetP/jF6O2OetP.js\";import RunningStroke from\"#framer/local/canvasComponent/M51l6S8yV/M51l6S8yV.js\";import Slide3 from\"#framer/local/canvasComponent/mE92O2nsd/mE92O2nsd.js\";import CordenateStar from\"#framer/local/canvasComponent/rr6TnnYrw/rr6TnnYrw.js\";import RunningStrokeCopy from\"#framer/local/canvasComponent/sOOpYCiS5/sOOpYCiS5.js\";import RunningStrokeCopy2 from\"#framer/local/canvasComponent/sQnl2ddOb/sQnl2ddOb.js\";import Slide1 from\"#framer/local/canvasComponent/u374cC128/u374cC128.js\";import EmailButtonCompatEmailButton from\"#framer/local/canvasComponent/VpxGNXEBH/VpxGNXEBH.js\";import RunningStrokeCopy3 from\"#framer/local/canvasComponent/zukirTz23/zukirTz23.js\";import metadataProvider from\"#framer/local/webPageMetadata/BlYS76KAP/BlYS76KAP.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const VideoFonts=getFonts(Video);const EmailButtonCompatEmailButtonFonts=getFonts(EmailButtonCompatEmailButton);const ParticlesFonts=getFonts(Particles);const ButtonFonts=getFonts(Button);const TextMaskFonts=getFonts(TextMask);const MotionDivWithFX=withFX(motion.div);const Slide1Fonts=getFonts(Slide1);const Slide2Fonts=getFonts(Slide2);const Slide3Fonts=getFonts(Slide3);const SlideshowFonts=getFonts(Slideshow);const CompassFonts=getFonts(Compass);const CompassWithVariantAppearEffect=withVariantAppearEffect(Compass);const CordenateStarFonts=getFonts(CordenateStar);const CordenateStarWithVariantAppearEffect=withVariantAppearEffect(CordenateStar);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const RunningStrokeFonts=getFonts(RunningStroke);const RunningStrokeCopyFonts=getFonts(RunningStrokeCopy);const RunningStrokeCopy2Fonts=getFonts(RunningStrokeCopy2);const RunningStrokeCopy3Fonts=getFonts(RunningStrokeCopy3);const TMGridFonts=getFonts(TMGrid);const InputFonts=getFonts(Input);const TypeformFonts=getFonts(Typeform);const RunningStroke1Fonts=getFonts(RunningStroke1);const breakpoints={TCxwIpznq:\"(max-width: 809px)\",TXWFV9ZyK:\"(min-width: 810px) and (max-width: 1199px)\",X8mvKMmFj:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BHgFh\";const variantClassNames={TCxwIpznq:\"framer-v-rgwone\",TXWFV9ZyK:\"framer-v-5itr0y\",X8mvKMmFj:\"framer-v-1yhavw2\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition2={damping:30,delay:0,mass:1,stiffness:135,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:80};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition3={delay:0,duration:1,ease:[.5,0,.88,.77],type:\"tween\"};const transition4={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:20};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"X8mvKMmFj\",Phone:\"TCxwIpznq\",Tablet:\"TXWFV9ZyK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"X8mvKMmFj\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"nXsDq32fG\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"TCxwIpznq\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"TCxwIpznq\")return true;return false;};const router=useRouter();const elementId1=useRouteElementId(\"Iy2Z8a9th\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"vQCApAD7g\");const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const elementId3=useRouteElementId(\"E9y65g9rm\");const elementId4=useRouteElementId(\"lfGdNb5nr\");const elementId5=useRouteElementId(\"is5YV4Acl\");const elementId6=useRouteElementId(\"wv0UOVVUd\");const elementId7=useRouteElementId(\"wGhmsqhqc\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"uy8Ipbpwo\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"BgsUBvzv6\");const ref10=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"X8mvKMmFj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1yhavw2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pvvata-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"n8qdt_evo\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"n8qdt_evo\",intensity:10,layoutId:\"n8qdt_evo\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z02r5t\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rhsdta-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uMFIgVdli\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"uMFIgVdli\",isMixedBorderRadius:false,layoutId:\"uMFIgVdli\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/l8ymYgBW6o6YRiPPRbqzEVBadA.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:740,intrinsicWidth:1975,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+262.0000000000001),pixelHeight:740,pixelWidth:1975,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png\",srcSet:\"https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png 1975w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:740,intrinsicWidth:1975,pixelHeight:740,pixelWidth:1975,positionX:\"center\",positionY:\"center\",sizes:\"586px\",src:\"https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png\",srcSet:\"https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png 1975w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:740,intrinsicWidth:1975,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+260.51453175457505),pixelHeight:740,pixelWidth:1975,positionX:\"center\",positionY:\"center\",sizes:\"875px\",src:\"https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png\",srcSet:\"https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3Pvi2S3xgmTSt3Tfb4gpzWDt8.png 1975w\"},className:\"framer-bzsscu\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+119),pixelHeight:3456,pixelWidth:3456,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png\",srcSet:\"https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png 3456w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:3456,pixelHeight:3456,pixelWidth:3456,sizes:\"344px\",src:\"https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png\",srcSet:\"https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+160),pixelHeight:3456,pixelWidth:3456,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png\",srcSet:\"https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU9VpVLEyiUphJ6tpZUnBpeD8.png 3456w\"},className:\"framer-11juukw\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{height:0,y:(componentViewport?.y||0)+0+200+440},TXWFV9ZyK:{height:38,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+200+603.6818181818184,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nrsg7p-container\",nodeId:\"lhMoRpZLB\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(EmailButtonCompatEmailButton,{height:\"100%\",id:\"lhMoRpZLB\",layoutId:\"lhMoRpZLB\",mCjPyaNQN:\"rgb(86, 0, 214)\",Rnws_SKtt:\"Sign Up\",Rv8ilcyS8:\"Your response has been submitted.\",style:{height:\"100%\"},variant:\"rUsaahvNh\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-146ezpj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qf_1tYvc7\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{number:15},TXWFV9ZyK:{number:25}},children:/*#__PURE__*/_jsx(Particles,{background:\"rgb(0, 0, 0)\",clickOptions:{clickEnabled:true,clickModes:\"repulse\"},color:\"rgb(255, 255, 255)\",colors:[],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"grab\",hoverParallax:false,hoverSmooth:10},id:\"qf_1tYvc7\",layoutId:\"qf_1tYvc7\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:167,linksEnabled:true,linksOpacity:.4,linksWidth:2},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:150,grabLinksOpacity:.5,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:1,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:50,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1.5,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uehie5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zD3YAmHHZ\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{number:15},TXWFV9ZyK:{number:25}},children:/*#__PURE__*/_jsx(Particles,{background:\"rgb(0, 0, 0)\",clickOptions:{clickEnabled:true,clickModes:\"repulse\"},color:\"rgb(255, 255, 255)\",colors:[],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"grab\",hoverParallax:false,hoverSmooth:10},id:\"zD3YAmHHZ\",layoutId:\"zD3YAmHHZ\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:167,linksEnabled:true,linksOpacity:.4,linksWidth:2},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:150,grabLinksOpacity:.5,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:1,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:50,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"Two\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1.5,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10prqk2-container hidden-rgwone\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xr2cB7kKX\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{number:25}},children:/*#__PURE__*/_jsx(Particles,{background:\"rgb(0, 0, 0)\",clickOptions:{clickEnabled:true,clickModes:\"repulse\"},color:\"rgb(255, 255, 255)\",colors:[],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"grab\",hoverParallax:false,hoverSmooth:10},id:\"xr2cB7kKX\",layoutId:\"xr2cB7kKX\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:167,linksEnabled:true,linksOpacity:.4,linksWidth:2},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:150,grabLinksOpacity:.5,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:1,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:50,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"Two\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1.5,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13mm9px\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-167m52l hidden-rgwone\",\"data-framer-name\":\"graphic\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:137,intrinsicWidth:1080,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" class=\"divider-img\" viewBox=\"0 0 1080 137\" preserveAspectRatio=\"none\"><path d=\"M0 137V59.037c158.977 52.213 257.177.48 375.36 2.172 118.183 1.69 168.549 29.166 243.126 30.108 74.578.94 237.45-62.038 461.514-17.703V137Z\" style=\"opacity:.85\"/><path d=\"M0 10.175c83.42-1.77 117.66 31.606 204.114 34.478 86.454 2.872 191.912-52.086 415.928 49.748 162.15-64.773 205.63-78.578 459.958 4.154V137H0Z\" style=\"opacity:.5\"/><path d=\"M0 45.102C216.279-66.147 327.903 63.098 416.427 63.529c88.523.43 113.994-41.403 198.948-38.319C700.33 28.295 790.776 132.607 1080 31.126V137H0Z\" style=\"opacity:.25\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wsa49k hidden-1yhavw2 hidden-5itr0y\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:137,intrinsicWidth:1080,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" class=\"divider-img\" viewBox=\"0 0 1080 137\" preserveAspectRatio=\"none\"><path d=\"M0 137V59.037c158.977 52.213 257.177.48 375.36 2.172 118.183 1.69 168.549 29.166 243.126 30.108 74.578.94 237.45-62.038 461.514-17.703V137Z\" style=\"opacity:.85\"/><path d=\"M0 10.175c83.42-1.77 117.66 31.606 204.114 34.478 86.454 2.872 191.912-52.086 415.928 49.748 162.15-64.773 205.63-78.578 459.958 4.154V137H0Z\" style=\"opacity:.5\"/><path d=\"M0 45.102C216.279-66.147 327.903 63.098 416.427 63.529c88.523.43 113.994-41.403 198.948-38.319C700.33 28.295 790.776 132.607 1080 31.126V137H0Z\" style=\"opacity:.25\"/></svg>',withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110kgon hidden-rgwone\",\"data-framer-name\":\"Nav Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined},{href:{webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{height:41,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2037)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(${componentViewport?.width||\"100vw\"} * 0.15)`,y:(componentViewport?.y||0)+0+1026+96.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11rzymb-container\",nodeId:\"lenujMCCI\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{FV9q84oBp:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{aw9hCqzCY:\"COMPASS\",FsJQLC6Zo:true,FV9q84oBp:resolvedLinks[0],height:\"100%\",id:\"lenujMCCI\",layoutId:\"lenujMCCI\",qUWpVfITp:false,style:{height:\"100%\",width:\"100%\"},variant:\"zgmXqUbpY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":wGhmsqhqc\",webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined},{href:{hash:\":wGhmsqhqc\",webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{height:41,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2049)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(${componentViewport?.width||\"100vw\"} * 0.15)`,y:(componentViewport?.y||0)+0+1026+96.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1egdgcq-container\",nodeId:\"bBqIkz1RE\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{FV9q84oBp:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{aw9hCqzCY:\"TEAM\",FsJQLC6Zo:true,FV9q84oBp:resolvedLinks1[0],height:\"100%\",id:\"bBqIkz1RE\",layoutId:\"bBqIkz1RE\",qUWpVfITp:false,style:{height:\"100%\",width:\"100%\"},variant:\"zgmXqUbpY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":uy8Ipbpwo\",webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined},{href:{hash:\":uy8Ipbpwo\",webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{height:41,width:`calc(${componentViewport?.width||\"100vw\"} / 4.939)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(${componentViewport?.width||\"100vw\"} * 0.15)`,y:(componentViewport?.y||0)+0+1026+96.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-trbr7n-container\",nodeId:\"o_tY6xguR\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{FV9q84oBp:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{aw9hCqzCY:\"RESOURCES\",FsJQLC6Zo:false,FV9q84oBp:resolvedLinks2[0],height:\"100%\",id:\"o_tY6xguR\",layoutId:\"o_tY6xguR\",qUWpVfITp:false,style:{height:\"100%\",width:\"100%\"},variant:\"zgmXqUbpY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":BgsUBvzv6\",webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined},{href:{hash:\":BgsUBvzv6\",webPageId:\"BlYS76KAP\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{height:41,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2037)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(${componentViewport?.width||\"100vw\"} * 0.15)`,y:(componentViewport?.y||0)+0+1026+96.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7jcqo-container\",nodeId:\"XkVzLlnMZ\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{FV9q84oBp:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{aw9hCqzCY:\"CONTACT US\",FsJQLC6Zo:true,FV9q84oBp:resolvedLinks3[0],height:\"100%\",id:\"XkVzLlnMZ\",layoutId:\"XkVzLlnMZ\",qUWpVfITp:false,style:{height:\"100%\",width:\"100%\"},variant:\"zgmXqUbpY\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-32cwif\",\"data-framer-name\":\"About\",id:elementId1,ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-snp0bu\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cf536y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14yyr7t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M3LoE1h1V\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:19,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},paddingPerSide:true},TXWFV9ZyK:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:19,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:66,bgSize:100,bgSizeType:\"percentage\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:25,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"M3LoE1h1V\",layoutId:\"M3LoE1h1V\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"PATHS XR is an immersive technology platform that specialises in creating learning journeys to nurture psychological wellbeing.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uv1q7g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YMocoYDH3\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:19,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},paddingPerSide:true},TXWFV9ZyK:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:19,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:66,bgSize:100,bgSizeType:\"percentage\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:25,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"YMocoYDH3\",layoutId:\"YMocoYDH3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"We believe that the fusion of immersive technology alongside  therapeutic and contemplative wisdom can empower individuals to chart their own course of self-discovery.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a62ynp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kEa2RZvT8\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:19,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},paddingPerSide:true},TXWFV9ZyK:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:19,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:66,bgSize:100,bgSizeType:\"percentage\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:25,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"kEa2RZvT8\",layoutId:\"kEa2RZvT8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"Our name, PATHS XR, stands for Psychedelic Assisted Technology in Health Science, and reflects our vision of supporting individuals as they navigate their own unique paths.\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18g195l\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{__framer__enter:animation3}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uroaaa\",\"data-framer-name\":\"Metacognitive Row\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e403x1\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gzn3uj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dxTEIioEl\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"Poppins\",fontSize:29,fontStyle:\"normal\",fontWeight:600,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"}},TXWFV9ZyK:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"Poppins\",fontSize:36,fontStyle:\"normal\",fontWeight:600,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},padding:41,paddingBottom:41,paddingLeft:41,paddingPerSide:false,paddingRight:41,paddingTop:41}},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:77,bgSize:98,bgSizeType:\"percentage\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"Poppins\",fontSize:48,fontStyle:\"normal\",fontWeight:600,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"dxTEIioEl\",image:addImageAlt({src:\"https://framerusercontent.com/images/MjwqkYa0VwTAPIG9VwUO6EQbAA.jpg\",srcSet:\"https://framerusercontent.com/images/MjwqkYa0VwTAPIG9VwUO6EQbAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MjwqkYa0VwTAPIG9VwUO6EQbAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MjwqkYa0VwTAPIG9VwUO6EQbAA.jpg 1152w\"},\"\"),layoutId:\"dxTEIioEl\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:true,paddingRight:15,paddingTop:15,style:{width:\"100%\"},textContent:\"Metacognitive Learning  Journeys \",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8eflxw\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ccill0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wlnazl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"buXgWXHsU\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"buXgWXHsU\",isMixedBorderRadius:false,layoutId:\"buXgWXHsU\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/5Sg9rcvBJUrbyDg5h8gxipHJlxc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ju1ltq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"haeMO8FkR\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"haeMO8FkR\",isMixedBorderRadius:false,layoutId:\"haeMO8FkR\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/5Sg9rcvBJUrbyDg5h8gxipHJlxc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1534+521-496+65),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png\",srcSet:\"https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png 1920w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png\",srcSet:\"https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1931+22737367544323206e-29+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0033)`,src:\"https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png\",srcSet:\"https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F9HJSuTMaYRFzMjzOYSrM4qOQ.png 1920w\"},className:\"framer-l463pi\",\"data-framer-name\":\"Frame HMD\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mtw5nu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yccgju\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(97, 67, 232) 100%)\"},children:\"MINDSET\"})})})},TXWFV9ZyK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(97, 67, 232) 100%)\"},children:\"MINDSET\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(97, 67, 232) 100%)\"},children:\"MINDSET\"})})}),className:\"framer-yn95ik\",fonts:[\"GF;Bruno Ace-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yfgzzx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(232, 194, 67) 100%)\"},children:\"MINDFULNESS\"})})})},TXWFV9ZyK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(232, 194, 67) 100%)\"},children:\"MINDFULNESS\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(232, 194, 67) 100%)\"},children:\"MINDFULNESS\"})})}),className:\"framer-am7bpk\",fonts:[\"GF;Bruno Ace-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jzckvc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(232, 67, 67) 100%)\"},children:\"MEANING\"})})})},TXWFV9ZyK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(232, 67, 67) 100%)\"},children:\"MEANING\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJ1bm8gQWNlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Bruno Ace\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 40.9875%, rgb(232, 67, 67) 100%)\"},children:\"MEANING\"})})}),className:\"framer-xod78t\",fonts:[\"GF;Bruno Ace-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,positionX:\"center\",positionY:\"bottom\"},className:\"framer-nkzgym\",\"data-framer-name\":\"Bennefits\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v21ab3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1exsr76-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y5HckivfG\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:31,fontStyle:\"normal\",fontWeight:700,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:32,bgPosY:40,bgSize:200,bgSizeType:\"percentage\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:38,fontStyle:\"normal\",fontWeight:700,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"Y5HckivfG\",image:addImageAlt({src:\"https://framerusercontent.com/images/aUful5vGwxsDxdq4C59koF6xSX8.jpg\",srcSet:\"https://framerusercontent.com/images/aUful5vGwxsDxdq4C59koF6xSX8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aUful5vGwxsDxdq4C59koF6xSX8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aUful5vGwxsDxdq4C59koF6xSX8.jpg 1152w\"},\"\"),layoutId:\"Y5HckivfG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"Evidence-informed  therapeutic theory \",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vk2k4p-container\",\"data-framer-name\":\"Bennefits\",isAuthoredByUser:true,isModuleExternal:true,name:\"Bennefits\",nodeId:\"zXSmyVwz5\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:11,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:98,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:41,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.7,effectsPerspective:1e3,effectsRotate:10,effectsScale:.7},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:49,overflow:true},gap:100,height:\"100%\",id:\"zXSmyVwz5\",intervalControl:3,itemAmount:1,layoutId:\"zXSmyVwz5\",name:\"Bennefits\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:12,dotsInset:0,dotSize:9,dotsOpacity:.5,dotsPadding:0,dotsRadius:27,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:455,width:\"455px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pqesin-container\",inComponentSlot:true,nodeId:\"HfbdfT9XC\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Slide1,{height:\"100%\",id:\"HfbdfT9XC\",layoutId:\"HfbdfT9XC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:455,width:\"455px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-obfzzk-container\",inComponentSlot:true,nodeId:\"bgjpUd6kW\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Slide2,{height:\"100%\",id:\"bgjpUd6kW\",layoutId:\"bgjpUd6kW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:455,width:\"455px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jujct9-container\",inComponentSlot:true,nodeId:\"T3TDIrz2B\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Slide3,{height:\"100%\",id:\"T3TDIrz2B\",layoutId:\"T3TDIrz2B\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2587,pixelHeight:1667,pixelWidth:2587,sizes:\"811px\",src:\"https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png\",srcSet:\"https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png 2587w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2587,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2931+15),pixelHeight:1667,pixelWidth:2587,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png\",srcSet:\"https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jhNOHi5hyglXNd2uh0YeFnE60HU.png 2587w\"},className:\"framer-tlu3su hidden-rgwone\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-80y7kf\",\"data-framer-name\":\"Scroll Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-85ekdq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(192, 196, 71) 0%, rgb(191, 233, 255) 100%)\"},children:\"METACOGNITIVE COMPASS\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(192, 196, 71) 0%, rgb(191, 233, 255) 100%)\"},children:\"METACOGNITIVE COMPASS\"})})}),className:\"framer-x2tj9c\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 229, 145) 0%, rgb(252, 254, 255) 100%)\"},children:\"Discover the art of navigating your landscape of experience, while aligning your inner compass with intention, self-awareness, and connection.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 229, 145) 0%, rgb(252, 254, 255) 100%)\"},children:\"Discover the art of navigating your landscape of experience, while aligning your inner compass with intention, self-awareness, and connection.\"})})}),className:\"framer-lm2a4f\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8lust-container hidden-rgwone\",nodeId:\"gbfjZ3BZy\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(CompassWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"huwTIFEJ7\"},{ref:ref6,target:\"dbf1KhGjQ\"},{ref:ref7,target:\"NjQUF6Rvu\"},{ref:ref4,target:\"nk0ONUaSz\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"gbfjZ3BZy\",layoutId:\"gbfjZ3BZy\",style:{height:\"100%\",width:\"100%\"},variant:\"huwTIFEJ7\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c2djoi hidden-rgwone\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h5xhrv-container\",nodeId:\"XBBWFCDxf\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(CordenateStarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"y5Ha1CZUd\"},{ref:ref6,target:\"kx4vtwH1K\"},{ref:ref7,target:\"kx4vtwH1K\"},{ref:ref4,target:\"kx4vtwH1K\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"XBBWFCDxf\",layoutId:\"XBBWFCDxf\",style:{height:\"100%\",width:\"100%\"},variant:\"y5Ha1CZUd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tpx1t-container\",nodeId:\"ltGgPs5Ub\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(CordenateStarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"kx4vtwH1K\"},{ref:ref6,target:\"xJeLuWOxB\"},{ref:ref7,target:\"kx4vtwH1K\"},{ref:ref4,target:\"kx4vtwH1K\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ltGgPs5Ub\",layoutId:\"ltGgPs5Ub\",style:{height:\"100%\",width:\"100%\"},variant:\"kx4vtwH1K\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p6q0tz-container\",nodeId:\"Lr0uLqc7a\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(CordenateStarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"kx4vtwH1K\"},{ref:ref6,target:\"kx4vtwH1K\"},{ref:ref7,target:\"Za2ZHyL3W\"},{ref:ref4,target:\"kx4vtwH1K\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Lr0uLqc7a\",layoutId:\"Lr0uLqc7a\",style:{height:\"100%\",width:\"100%\"},variant:\"kx4vtwH1K\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5v6k3i-container\",nodeId:\"JxZ4mBQeW\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(CordenateStarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"kx4vtwH1K\"},{ref:ref6,target:\"kx4vtwH1K\"},{ref:ref7,target:\"kx4vtwH1K\"},{ref:ref4,target:\"cxV75eipj\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"JxZ4mBQeW\",layoutId:\"JxZ4mBQeW\",style:{height:\"100%\",width:\"100%\"},variant:\"kx4vtwH1K\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120xe78\",\"data-framer-name\":\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lyxy0s\",\"data-framer-name\":\"Text Container\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fzfwzi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IyV6HljZl\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:45,bgSize:100,bgSizeType:\"cover\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:47,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"IyV6HljZl\",image:addImageAlt({src:\"https://framerusercontent.com/images/2MVosU85soJtL0yWkCfOgs4Ke0.jpg\",srcSet:\"https://framerusercontent.com/images/2MVosU85soJtL0yWkCfOgs4Ke0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2MVosU85soJtL0yWkCfOgs4Ke0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2MVosU85soJtL0yWkCfOgs4Ke0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2MVosU85soJtL0yWkCfOgs4Ke0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2MVosU85soJtL0yWkCfOgs4Ke0.jpg 5760w\"},\"\"),layoutId:\"IyV6HljZl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"Mindfulness\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mindfulness practices have been shown to improve attention, reduce stress, and contribute to overall well-being.  Part of mindfulness is the capacity to cultivate an inner observer and interoceptive awareness. VR with psychedelic-like visual and auditory stimuli, have the potential to deepen the state of mindfulness, potentially catalysing more profound states of relaxation and insight (Anderson et al., 2019). \"})}),className:\"framer-z90f9\",fonts:[\"GF;Poppins-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f5vb34\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{y:(componentViewport?.y||0)+0+3099+0+224+270+0+0+391.875+22.5},TXWFV9ZyK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+3975+0+213+150+0+0+429.75+22.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r7evg7-container\",nodeId:\"Hpr488rjg\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(RunningStroke,{height:\"100%\",id:\"Hpr488rjg\",layoutId:\"Hpr488rjg\",ofLqZhEO8:\"Learn More Soon\",PPM8eZNfR:\"rgb(0, 0, 0)\",variant:\"OzyAYgjnN\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1imfhtc\",\"data-framer-name\":\"Text Container\",id:elementId4,ref:ref6,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vcfeym-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NVtbSCc4p\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:45,bgSize:100,bgSizeType:\"cover\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:47,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"NVtbSCc4p\",image:addImageAlt({src:\"https://framerusercontent.com/images/o28dXxTIY5nCUmFNFrux1m0.jpg\",srcSet:\"https://framerusercontent.com/images/o28dXxTIY5nCUmFNFrux1m0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o28dXxTIY5nCUmFNFrux1m0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o28dXxTIY5nCUmFNFrux1m0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o28dXxTIY5nCUmFNFrux1m0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/o28dXxTIY5nCUmFNFrux1m0.jpg 6000w\"},\"\"),layoutId:\"NVtbSCc4p\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"Mindset\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"Another key aspect of metacognition is mindset which plays a critical role on how we cope with challenges and perform creatively (Jia, 2019). A growth mindset supports an outlook towards self-efficacy and resilience.  Recent research shows that brief verbal and written mindset interventions can have long lasting impacts on mental health, resilience, physiological stress-adaptivity and social connection (Crum, 2013).\"})})}),className:\"framer-12781i9\",fonts:[\"GF;Poppins-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lj8uq7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{y:(componentViewport?.y||0)+0+3099+0+224+270+672.75+0+391.875+22.5},TXWFV9ZyK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+3975+0+213+150+582.5+0+429.75+22.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-svar95-container\",nodeId:\"hzc3FKRb4\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(RunningStrokeCopy,{height:\"100%\",id:\"hzc3FKRb4\",layoutId:\"hzc3FKRb4\",ofLqZhEO8:\"Learn More Soon\",PPM8eZNfR:\"rgb(0, 0, 0)\",variant:\"Jf04XZyUR\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1fbmf\",\"data-framer-name\":\"Text Container\",id:elementId5,ref:ref7,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nte7nt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t9FQJ4zWL\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:35,bgSize:100,bgSizeType:\"cover\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:47,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"t9FQJ4zWL\",image:addImageAlt({src:\"https://framerusercontent.com/images/WK2y7Bat01Xi5TLhtNmoodPkw.jpg\",srcSet:\"https://framerusercontent.com/images/WK2y7Bat01Xi5TLhtNmoodPkw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WK2y7Bat01Xi5TLhtNmoodPkw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WK2y7Bat01Xi5TLhtNmoodPkw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WK2y7Bat01Xi5TLhtNmoodPkw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WK2y7Bat01Xi5TLhtNmoodPkw.jpg 5760w\"},\"\"),layoutId:\"t9FQJ4zWL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"Meaning\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"Meaning, the narrative we weave from our experiences, shapes our identity and purpose. Viktor Frankl asserted that the search for meaning is the primary motivational force in humans. Psychedelic experiences often catalyze the meaning-making processes of the brain (Preller and Vollenweider, 2018). Cyberdelic technologies have the potential to extend these experiences, aiding in the construction of personal meaning and the understanding of the complex tapestry of life.\"})})}),className:\"framer-o2fv1\",fonts:[\"GF;Poppins-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xr2wtf\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{y:(componentViewport?.y||0)+0+3099+0+224+270+1345.5+0+391.875+22.5},TXWFV9ZyK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+3975+0+213+150+1165+0+429.75+22.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-myw189-container\",nodeId:\"cddOsOoPc\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(RunningStrokeCopy2,{height:\"100%\",id:\"cddOsOoPc\",layoutId:\"cddOsOoPc\",ofLqZhEO8:\"Learn More Soon\",PPM8eZNfR:\"rgb(0, 0, 0)\",variant:\"TC1pYcL_g\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eg9k53\",\"data-framer-name\":\"Text Container\",id:elementId6,ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fy4rzt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sOXqIpX0M\",rendersWithMotion:true,scopeId:\"BlYS76KAP\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:37,bgSize:100,bgSizeType:\"cover\",font:{color:\"rgb(255, 255, 255)\",fontFamily:\"poppins\",fontSize:47,fontStyle:\"normal\",fontWeight:500,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"sOXqIpX0M\",image:addImageAlt({src:\"https://framerusercontent.com/images/DSwNsTYOVy8jKK3xLtwrK7uZyMI.jpg\",srcSet:\"https://framerusercontent.com/images/DSwNsTYOVy8jKK3xLtwrK7uZyMI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DSwNsTYOVy8jKK3xLtwrK7uZyMI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DSwNsTYOVy8jKK3xLtwrK7uZyMI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DSwNsTYOVy8jKK3xLtwrK7uZyMI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/DSwNsTYOVy8jKK3xLtwrK7uZyMI.jpg 5760w\"},\"\"),layoutId:\"sOXqIpX0M\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"Multiplicity \",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"Multiplicity in the context of metacognition refers to the ability to hold and appreciate a variety of perspectives simultaneously. It's about recognizing the multifaceted nature of our psyche and the world around us. Multiplicity on an individual level is the recognition of the diverse aspects of our identities and the ability to navigate between them and is key to a holistic self-concept. Psychedelic-assisted therapy has been shown to enhance the perception of multiplicity internally and interpersonally. \"})})}),className:\"framer-1p697kl\",fonts:[\"GF;Poppins-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{__framer__animate:{transition:transition3},__framer__enter:animation,__framer__exit:animation5,__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4wfupd\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{y:(componentViewport?.y||0)+0+3099+0+224+270+2018.25+0+391.875+22.5},TXWFV9ZyK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+3975+0+213+150+1747.5+0+429.75+22.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j5a0g6-container\",nodeId:\"ehcMXiRyh\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(RunningStrokeCopy3,{height:\"100%\",id:\"ehcMXiRyh\",layoutId:\"ehcMXiRyh\",ofLqZhEO8:\"Learn More Soon\",PPM8eZNfR:\"rgb(0, 0, 0)\",variant:\"jNs_4DK7P\",width:\"100%\"})})})})})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rxlle hidden-rgwone\",\"data-framer-name\":\"Target Market Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{width:componentViewport?.width||\"100vw\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:741,width:\"991px\",y:(componentViewport?.y||0)+0+6166.684952708512+361.18156424581036,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s1mqha-container\",nodeId:\"vRJ1boIAI\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(TMGrid,{height:\"100%\",id:\"vRJ1boIAI\",layoutId:\"vRJ1boIAI\",o51oPYi4B:true,style:{height:\"100%\",width:\"100%\"},variant:\"nDmVB0D4t\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:493,intrinsicWidth:1975,pixelHeight:493,pixelWidth:1975,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9758)`,src:\"https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png\",srcSet:\"https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png 1975w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:493,intrinsicWidth:1975,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6166.684952708512+1465-430),pixelHeight:493,pixelWidth:1975,sizes:\"1171px\",src:\"https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png\",srcSet:\"https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g5UwaOHUUd80GoqsURX3PmnHEmQ.png 1975w\"},className:\"framer-1e05qc7\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4wbk3\",\"data-framer-name\":\"Desert Rose\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g0jtdl\",\"data-framer-name\":\"path1459\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1611,intrinsicWidth:1636,svg:'<svg width=\"1636\" height=\"1611\" viewBox=\"0 0 1636 1611\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.68\" d=\"M791.4 1604.07C776.09 1566.31 758.61 1545.23 726.781 1526.12C694.796 1506.92 660.329 1499.69 600.018 1499.54C550.429 1499.41 528.981 1493.4 501.341 1471.86C482.05 1456.83 467.986 1440.35 455.798 1418.5C439.126 1388.61 433.184 1369.1 430.245 1334.6C427.138 1298.13 433.795 1283.43 445.398 1301.14C460.802 1324.65 494.718 1353.72 524.895 1369.28C569.223 1392.13 586.695 1396.61 639.052 1398.5C663.029 1399.37 682.506 1401.32 682.506 1402.84C682.506 1411.18 699.253 1438.81 712.697 1452.65C728.14 1468.55 758.978 1489.05 772.589 1492.47C776.544 1493.46 780.508 1495.45 781.399 1496.89C782.289 1498.34 786.207 1499.51 790.105 1499.51C794.097 1499.51 798.525 1502 800.242 1505.21C805.137 1514.36 804.201 1600.25 799.132 1607.19C795.142 1612.64 794.826 1612.52 791.4 1604.07ZM833.662 1601.89C832.351 1599.86 831.485 1579.27 831.736 1556.13C832.273 1506.76 833.602 1503.52 856.646 1495.33C865.378 1492.23 873.186 1488.89 873.996 1487.91C874.806 1486.94 878.783 1484.44 882.834 1482.37C902.477 1472.32 907.901 1468.29 926.706 1449.75C937.833 1438.77 947.877 1426.59 949.027 1422.67C956.03 1398.82 953.398 1400.12 997.57 1398.7C1024.72 1397.83 1042.68 1395.74 1053.7 1392.18C1102.64 1375.53 1167.6 1340.86 1194.07 1295.32C1196.45 1290.76 1199.98 1287.57 1201.91 1288.23C1217.92 1329.29 1194.16 1406.08 1167.82 1439.91C1132.01 1483.97 1087.65 1504.15 1033.88 1500.84C1007.31 1499.21 957.82 1503.65 952.173 1508.17C950.493 1509.52 944.529 1511.6 938.919 1512.8C924.62 1515.86 896.812 1531.47 883.844 1543.7C869.269 1557.46 847.482 1587.31 847.482 1593.52C847.482 1598.62 842.142 1605.57 838.229 1605.57C837.028 1605.57 834.973 1603.91 833.662 1601.89ZM627.581 1346.25C550.822 1338.16 478.07 1277.13 423.545 1175.08C403.512 1137.59 391.57 1095.37 390.943 1059.82C390.78 1050.6 397.978 1054.6 409.728 1070.26C437.06 1106.69 493.285 1142.02 532.334 1147.3C545.302 1149.05 545.81 1149.52 551.024 1164.49C576.531 1237.71 626.729 1282.19 701.449 1297.78C727.988 1303.32 756.582 1303.28 775.037 1297.68C782.991 1295.27 790.613 1293.29 791.976 1293.29C797.167 1293.29 794.159 1302.08 787.825 1305.42C784.18 1307.34 780.534 1309.73 779.724 1310.74C769.659 1323.29 725.313 1340.61 689.307 1346.06C666.208 1349.56 659.171 1349.58 627.581 1346.25ZM944.7 1345.87C916.39 1342.59 889.34 1333.13 863.514 1317.5C841.613 1304.24 832.402 1295.61 836.158 1291.85C837.107 1290.9 841.037 1291.36 844.892 1292.88C871.538 1303.33 906.353 1304.51 944.652 1296.26C982.675 1288.07 1025.86 1259.98 1049.2 1228.27C1063.21 1209.25 1079.4 1177.34 1082.23 1163.19C1084.33 1152.66 1092.12 1147.33 1109.07 1144.81C1116.03 1143.78 1123.98 1141.81 1126.74 1140.43C1129.51 1139.05 1138.29 1135.01 1146.25 1131.45C1175.18 1118.51 1221.75 1079.85 1232.07 1060.18C1234.31 1055.92 1238.36 1051.58 1241.08 1050.54C1245.5 1048.84 1245.82 1050.6 1244.09 1067.12C1237.88 1126.65 1202.17 1203 1155.57 1256.34C1114.39 1303.48 1085.1 1324.87 1043.39 1338.26C1018.33 1346.31 976.396 1349.54 944.7 1345.87ZM252.354 1269.95C243.423 1268.71 233.481 1266.25 230.259 1264.48C227.038 1262.71 218.063 1258.27 210.315 1254.61C198.17 1248.88 176.527 1228.93 160.903 1209.07C155.673 1202.42 150.434 1189.87 138.873 1156.31C134.408 1143.34 128.626 1129.42 126.024 1125.37C105.588 1093.56 77.8703 1082.73 50.589 1095.91C38.1084 1101.94 31.3972 1103.24 31.506 1099.59C31.5422 1098.38 35.4897 1089.43 40.278 1079.71C47.4242 1065.2 48.979 1058.34 48.9562 1041.41C48.9326 1023.09 47.6255 1018.32 37.2471 998.694C10.4573 948.022 5.2314 935.013 2.35357 911.832C0.789859 899.237 -0.0281106 887.446 0.535872 885.63C1.09982 883.813 2.31769 874.509 3.24223 864.955C4.16677 855.4 6.06674 846.12 7.46438 844.333C8.86203 842.545 10.8022 837.733 11.7759 833.639C12.7495 829.545 18.3384 820.596 24.1956 813.753L34.8451 801.312H89.1165C135.394 801.312 143.388 801.963 143.388 805.731C143.388 808.161 142.327 810.15 141.03 810.15C134.449 810.15 105.216 840.958 97.238 856.302C81.6548 886.271 77.665 904.288 79.1736 937.876C79.9118 954.313 81.8902 970.413 83.57 973.653C91.7923 989.515 105.956 1039.25 104.182 1046.04C103.195 1049.81 107.597 1052.42 123.886 1057.69C152.09 1066.82 170.06 1078.89 196.416 1106.38C234.474 1146.07 247.556 1158.91 261.228 1170C277.743 1183.4 313.466 1202.48 334.878 1209.34C343.79 1212.2 352.407 1215.5 354.027 1216.68C355.647 1217.86 360.95 1219.72 365.811 1220.81C396.21 1227.62 398.229 1235.36 373.527 1250.36C363.998 1256.15 354.134 1260.89 351.606 1260.89C349.078 1260.89 346.298 1262.04 345.428 1263.45C341.814 1269.3 279.275 1273.66 252.354 1269.95ZM1307.06 1267.83C1286.83 1263.97 1246.52 1243.68 1240.84 1234.49C1237.34 1228.82 1244.8 1223.32 1258.87 1221.21C1284.4 1217.38 1327.7 1201.26 1352.72 1186.28C1375.46 1172.66 1387.39 1162.8 1408.44 1140.24C1446.74 1099.18 1475.24 1072.34 1480.53 1072.34C1481.94 1072.34 1484.68 1070.44 1486.61 1068.11C1488.54 1065.79 1494.33 1063.06 1499.49 1062.05C1504.64 1061.04 1511.51 1059.09 1514.75 1057.71C1517.99 1056.33 1522.96 1054.46 1525.8 1053.55C1529.35 1052.42 1530.95 1048.85 1530.95 1042.1C1530.95 1036.7 1534.99 1021.09 1539.91 1007.39C1544.84 993.696 1550.81 975.466 1553.17 966.881C1558.9 946.076 1558.66 905.078 1552.69 884.253C1546.82 863.762 1525.48 830.803 1510.04 818.403C1489.63 802 1492.06 801.088 1553.79 801.984L1609.02 802.785L1616.58 817.515C1631.07 845.768 1635.15 862.669 1635.06 894.111C1634.96 927.941 1630.38 944.749 1613.06 974.822C1589.69 1015.4 1588.49 1018.87 1588.44 1045.83C1588.41 1064.99 1589.61 1072.58 1593.56 1078.16C1598.99 1085.84 1600.63 1101.8 1595.98 1101.8C1594.47 1101.8 1591.19 1099.76 1588.69 1097.26C1586.19 1094.75 1577.63 1091.94 1569.66 1090.99C1558.12 1089.63 1552.44 1090.65 1541.64 1096.04C1534.19 1099.76 1525.55 1105.56 1522.45 1108.93C1513.7 1118.42 1499.02 1147.39 1495.14 1162.83C1493.21 1170.49 1489.88 1180.12 1487.74 1184.21C1485.6 1188.31 1483.85 1192.71 1483.84 1193.99C1483.8 1198.64 1460.39 1227.9 1448.71 1237.9C1442.14 1243.52 1427.79 1252.58 1416.84 1258.02C1397.37 1267.69 1395.95 1267.93 1355.67 1268.58C1332.98 1268.94 1311.11 1268.6 1307.06 1267.83ZM700.108 1242.29C674.565 1233.73 653.786 1219.99 633.921 1198.54C616.782 1180.03 610.253 1169.17 599.291 1140.97C593.711 1126.62 592.688 1118.5 592.875 1090.02C593.101 1055.44 596.572 1039.94 604.087 1039.94C606.469 1039.94 610.329 1045.89 612.963 1053.62C621.886 1079.8 650.39 1110.7 680.293 1126.6C710.306 1142.56 752.412 1147.23 786.53 1138.39C803.417 1134.02 804.727 1134.05 808.314 1138.96C810.413 1141.83 812.13 1145.91 812.13 1148.03C812.13 1154.85 817.737 1152.14 822.441 1143.05C827.767 1132.75 826.966 1132.94 840.571 1138.63C854.664 1144.52 902.943 1144.47 922.605 1138.55C965.02 1125.77 1003.15 1094.47 1020.91 1057.84C1025.17 1049.06 1030.15 1041.38 1031.96 1040.78C1035.82 1039.52 1041.28 1059.26 1043.74 1083.41C1045.61 1101.79 1038.31 1136.37 1027.31 1161.24C1014.34 1190.55 985.995 1219.94 957.957 1233.14C907.602 1256.83 857.344 1251.22 827.083 1218.52C818.042 1208.75 815.611 1208.92 804.765 1220.01C793.437 1231.59 783.562 1236.63 758.672 1243.53C733.404 1250.53 724.117 1250.33 700.108 1242.29ZM1276.33 1154C1277.44 1150.41 1280.11 1144 1282.26 1139.76C1293.26 1118.11 1298.63 1043.25 1291.21 1014.85C1287.37 1000.13 1287.29 996.73 1290.67 992.907C1309.5 971.667 1324.73 928.187 1324.73 895.707C1324.73 862.844 1313.46 824.971 1299.54 811.045C1297.16 808.671 1295.97 805.51 1296.89 804.021C1297.81 802.531 1314.92 801.312 1334.9 801.312H1371.23L1385.54 814.183C1411.77 837.764 1427.84 879.706 1427.84 924.523C1427.84 973.405 1410.46 1023.88 1375.55 1076.4C1351.46 1112.63 1311.52 1147.92 1284.06 1157.23C1274.75 1160.39 1274.4 1160.25 1276.33 1154ZM331.049 1146.63C290.923 1120.24 249.92 1069.52 231.703 1023.74C227.835 1014.01 223.748 1004.73 222.622 1003.11C215.5 992.871 209.675 956.359 209.697 922.098C209.728 873.165 218.64 847.002 244.614 819.584C259.711 803.648 267.333 801.312 304.224 801.312C337.411 801.312 344.606 803.299 336.319 810.177C333.906 812.179 331.932 815.644 331.932 817.876C331.932 820.108 330.85 821.934 329.528 821.934C328.206 821.934 323.897 829.557 319.954 838.874C313.505 854.108 312.801 859.817 312.964 895.584C313.166 939.782 316.606 952.551 336.314 982.241C345.792 996.521 346.172 998.064 343.276 1010.54C341.475 1018.3 340.836 1041.94 341.725 1067.93C343.152 1109.63 346.222 1126.72 356.943 1152.62C360.552 1161.34 349.559 1158.8 331.049 1146.63ZM725.255 1085.1C701.671 1076.61 675.065 1050.4 659.978 1020.79C642.927 987.324 635.682 933.798 647.89 931.482C651.443 930.808 653.046 932.383 653.046 936.548C653.046 946.136 682.64 973.372 705.038 984.399C722.742 993.115 727.875 994.275 748.729 994.275C764.439 994.275 778.027 992.346 789.271 988.519C806.008 982.822 806.226 982.822 810.363 988.48C814.414 994.019 814.728 994.03 820.478 988.826C826.231 983.62 827.008 983.657 845.856 990.023C876.462 1000.36 911.152 995.275 942.718 975.822C956.51 967.322 972.891 950.774 978.772 939.4C981.18 934.745 985.303 930.936 987.935 930.936C995.138 930.936 991.258 983.253 982.449 1004.9C951.263 1081.53 879.478 1113.07 830.44 1071.67C825.118 1067.18 819.343 1063.51 817.607 1063.51C815.871 1063.51 809.406 1067.5 803.239 1072.39C797.073 1077.27 787.313 1083.24 781.551 1085.64C768.649 1091.03 740.994 1090.77 725.255 1085.1ZM477.759 1038.6C402.43 1019.24 344.729 925.661 365.64 856.756C371.336 837.987 378.672 826.554 398.877 804.959L411.32 791.659L396.468 775.409C374.187 751.029 361.392 721.01 361.392 693.112C361.392 650.445 379.606 609.682 413.488 576.52C442.054 548.562 472.44 536.355 513.744 536.245C543.606 536.165 546.99 538.17 546.99 555.945C546.99 560.552 549.055 567.27 551.58 570.874C556.719 578.211 555.058 583.308 547.528 583.308C541.251 583.308 510.203 603.435 496.597 616.325C480.809 631.281 467.742 652.153 459.559 675.482C452.779 694.812 452.224 699.918 453.404 732.081C454.365 758.302 456.086 770.243 460.066 778.311C465.276 788.875 465.269 789.599 459.811 803.352C451.799 823.543 451.69 885.756 459.638 902.949C462.634 909.43 467.847 920.699 471.222 927.99C480.578 948.197 514.996 980.541 540.19 992.802C562.061 1003.45 564.993 1007.04 557.13 1013.57C554.606 1015.66 550.835 1021.46 548.749 1026.45C545.728 1033.68 542.16 1036.27 531.201 1039.2C514.229 1043.74 497.028 1043.55 477.759 1038.6ZM1095.06 1040.72C1086.43 1039.11 1080.44 1032.03 1080.31 1023.31C1080.26 1019.84 1078.23 1016.24 1075.8 1015.3C1066.25 1011.64 1072.26 1004.67 1094.21 993.937C1135.32 973.841 1163.08 938.395 1177.67 887.379C1183.83 865.836 1184.92 843.684 1180.51 829.508C1168.01 789.311 1168.21 791.158 1174.83 776.188C1187.23 748.151 1184.32 692.855 1168.94 664.339C1161.55 650.645 1143.68 626.599 1132.8 615.722C1119.64 602.568 1094.24 586.555 1082.95 584.296C1072.04 582.115 1068.97 576.129 1075.21 569.205C1077.71 566.43 1080.65 560.182 1081.73 555.321C1086.53 533.881 1083.21 535.449 1121.02 536.744C1152.46 537.821 1157.04 538.73 1175.6 547.588C1198.15 558.352 1198.19 558.379 1220.47 578.594C1234.36 591.198 1259.89 626.11 1259.94 632.581C1259.95 633.836 1262.21 638.84 1264.96 643.701C1271.47 655.231 1272.4 719.165 1266.24 732.363C1253.87 758.847 1248.4 767.74 1237.01 779.852L1224.42 793.252L1235.9 803.083C1242.85 809.025 1251.91 821.937 1258.81 835.722C1269.91 857.887 1270.23 859.404 1270.23 889.577C1270.23 924.023 1266.77 936.338 1248.25 967.761C1216.83 1021.05 1152.81 1051.54 1095.06 1040.72ZM584.551 959.514C580.096 957.753 576.45 955.243 576.45 953.935C576.45 952.628 575.012 951.558 573.255 951.558C568.179 951.558 536.839 925.859 527.293 913.868C508.043 889.69 499.691 868.162 497.91 838.137C496.65 816.876 497.221 813.433 503.751 802.963L510.988 791.357L504.752 782.921C499.444 775.742 498.528 770.451 498.604 747.391C498.744 704.914 512.487 673.219 542.935 645.153C557.054 632.139 596.944 611.609 600.8 615.372C602.04 616.582 601.045 621.601 598.589 626.524C592.095 639.542 589.675 676.774 593.921 698.354C597.762 717.879 610.906 745.084 622.392 757.283C629.31 764.631 631.693 771.784 627.268 771.92C623.173 772.047 602.964 791.859 602.964 795.748C602.964 797.867 609.118 805.251 616.64 812.156L630.315 824.712L619.713 836.447C605.119 852.602 597.401 868.852 594.8 888.905C592.557 906.202 594.576 944.945 598.339 956.8C600.668 964.141 597.726 964.72 584.551 959.514ZM1033.08 962.24C1033.08 961.633 1035.07 955.501 1037.5 948.612C1049.01 915.989 1036.87 860.134 1012.71 834.578C1009.33 831 1006.57 826.967 1006.57 825.617C1006.57 824.266 1012.53 817.306 1019.82 810.15C1027.11 802.994 1033 795.758 1032.9 794.07C1032.8 792.382 1026.92 786.361 1019.82 780.69C1008.5 771.64 1002.33 760.068 1008.83 760.068C1012.11 760.068 1030.56 725.79 1036.59 708.513C1043.14 689.715 1043.64 650.014 1037.5 635.317C1031.1 620 1031.72 617.652 1041.68 619.643C1054.8 622.268 1080.11 638.619 1095.63 654.506C1122.42 681.923 1136.84 716.04 1137.37 753.23C1137.64 772.804 1137.02 775.052 1129.01 783.426C1124.25 788.403 1121.82 792.474 1123.61 792.474C1125.41 792.474 1129.81 797.237 1133.41 803.058C1139.23 812.477 1139.75 816.113 1138.06 836.067C1137.02 848.4 1134.84 859.811 1133.23 861.424C1131.62 863.037 1130.3 866.153 1130.3 868.348C1130.3 880.922 1109.79 914.094 1092.13 930.082C1077.82 943.039 1033.08 967.404 1033.08 962.24ZM723.75 936.573C690.187 920.783 667.776 886.602 667.776 851.201C667.776 840.156 669.1 830.302 670.717 829.302C672.335 828.302 682.743 826.722 693.846 825.792L714.034 824.099L716.024 836.544C721.407 870.21 745.564 894.755 788.547 910.233C805.437 916.315 806.515 922.286 792.637 932.871C783.129 940.124 778.662 941.352 759.331 942.028C741.594 942.649 734.283 941.528 723.75 936.573ZM857.953 940.752C846.296 937.433 829.806 924.901 829.806 919.359C829.806 915.006 833.131 913.035 844.633 910.568C879.977 902.988 904.423 879.823 915.127 843.766C918.681 831.794 922.875 821.205 924.446 820.233C926.018 819.262 933.874 820.044 941.904 821.97C961.745 826.73 969.513 837.403 967.603 857.281C964.791 886.543 941.163 920.65 914.147 934.446C902.025 940.635 870.122 944.216 857.953 940.752ZM795.927 866.119C783.186 862.127 765.743 846.736 759.016 833.55C754.943 825.566 753.281 816.638 753.447 803.639C753.73 781.57 760.965 766.465 777.68 753.043C787.294 745.323 791.861 743.871 809.69 742.864C827.176 741.876 832.423 742.754 842.666 748.383C859.332 757.543 876.503 776.829 878.775 788.939C886.51 830.172 861.106 865.227 821.63 867.792C812.354 868.395 800.788 867.642 795.927 866.119ZM827.79 830.372C854.568 816.45 852.37 785.922 823.977 777.415C814.117 774.461 811.254 774.767 802.852 779.674C772.844 797.2 797.029 846.365 827.79 830.372ZM697.236 790.541C670.689 786.254 667.776 783.055 667.776 758.196C667.776 735.467 676.51 713.705 691.719 698.537C726.536 663.816 769.505 655.664 796.178 678.721C805.738 686.985 806.997 689.318 803.906 693.043C801.875 695.49 796.145 698.306 791.173 699.3C777.438 702.047 752.91 715.168 741.904 725.657C729.312 737.657 720.726 754.361 716.661 774.768C713.33 791.486 711.631 792.866 697.236 790.541ZM926.64 790.354C923.669 789.66 921.146 784.908 920.024 777.892C914.382 742.607 881.471 708.941 842.31 698.396C825.735 693.933 825.61 686.333 841.933 675.53C851.058 669.492 858.673 667.211 872.689 666.318C888.93 665.284 893.736 666.31 910.195 674.329C946.395 691.964 969.761 728.23 967.682 763.552C966.966 775.722 965.378 779.613 959.43 783.78C951.919 789.042 935.294 792.375 926.64 790.354ZM29.3452 774.993C24.5311 769.788 18.1041 758.14 7.4478 735.305C4.7885 729.606 3.48082 715.325 3.53635 692.588C3.62974 654.378 7.29715 640.506 26.1978 606.876C46.9186 570.007 49.7899 560.704 48.4837 534.663C47.5329 515.708 45.6439 508.016 38.8936 495.613C34.2702 487.119 31.2574 479.399 32.1985 478.458C33.1395 477.516 43.4841 479.074 55.1863 481.918C73.2115 486.299 78.5381 486.537 90.0401 483.476C111.588 477.741 122.327 464.834 140.564 422.751C166.563 362.76 188.461 340.769 237.232 325.675C261.024 318.311 311.253 319.143 336.98 327.326C358.892 334.296 396.744 357.476 396.744 363.925C396.744 366.518 384.356 371.921 362.461 378.877C303.029 397.759 269.345 417.406 221.977 460.815C205.924 475.526 187.309 492.568 180.61 498.686C165.887 512.13 135.945 526.852 118.448 529.25C106.887 530.835 105.507 531.895 104.169 540.217C101.972 553.886 96.5153 575.129 93.4783 581.835C92.0108 585.076 88.3888 595.681 85.4295 605.403C71.5024 667.877 84.7093 731.572 140.208 769.173C154.925 778.585 145.532 780.69 88.8279 780.69C39.0132 780.69 34.188 780.228 29.3452 774.993ZM260.018 774.778C255.302 771.764 248.632 766.227 245.197 762.473C177.168 680.741 216.449 569.507 273.551 501.653C289.159 483.402 324.554 453.76 330.798 453.71C332.605 453.696 337.615 450.906 341.932 447.51C351.786 439.759 360.254 441.855 355.438 450.853C343.422 473.305 337.841 524.456 343.244 562.607L346.361 584.624L335.75 600.611C316.051 630.289 313.072 641.715 312.994 687.891C312.921 731.503 315.781 743.278 331.972 766.017C341.928 779.998 340.519 780.707 303.208 780.475C274.745 780.298 267.069 779.285 260.018 774.778ZM1300.51 779.049C1299.6 778.146 1301.77 771.849 1305.33 765.055C1320.06 736.888 1324.36 717.513 1323.61 682.541C1323.2 663.524 1321.28 645.856 1319.07 640.755C1307.36 613.826 1302.58 604.458 1296.03 595.632C1290.1 587.631 1289.15 583.898 1290.83 575.01C1294.55 555.216 1295.77 508.343 1292.82 497.874C1291.23 492.203 1287.51 479.609 1284.55 469.887C1281.59 460.165 1278.71 450.554 1278.16 448.528C1276.31 441.686 1288.84 444.774 1307.58 455.779C1343.46 476.839 1388.2 527.743 1405.81 567.526C1410.01 577.016 1414.63 587.432 1416.08 590.673C1426.86 614.845 1431.63 675.461 1424.53 697.993C1415.32 727.161 1411.31 735.601 1398.73 752.262C1380.18 776.824 1371.97 780.373 1333.33 780.548C1316.18 780.626 1301.41 779.951 1300.51 779.049ZM1495.61 778.481C1495.61 777.265 1503.89 767.467 1514.02 756.707C1544.16 724.669 1557.4 692.876 1557.4 652.539C1557.4 631.112 1553.11 609.137 1545.9 593.619C1539.26 579.341 1530.95 550.036 1530.95 540.895C1530.95 530.075 1527.35 527.334 1513.15 527.334C1501.6 527.334 1476.28 517.017 1461.95 506.474C1455.46 501.704 1436.19 484.086 1419.11 467.322C1364.25 413.446 1312.35 384.36 1258.8 377.466C1248.69 376.164 1243.17 373.731 1240.21 369.267C1236.37 363.47 1236.71 362.269 1244.05 355.457C1267.47 333.748 1308.91 320.435 1352.72 320.546C1414.09 320.702 1460.85 349.131 1484.49 400.656C1517 471.536 1519.77 475.541 1542.38 484.295C1554.81 489.108 1556.06 489.055 1577.04 482.827C1589.01 479.273 1599.67 477.232 1600.73 478.29C1601.79 479.349 1599.45 487.072 1595.53 495.452C1589.45 508.443 1588.41 515.064 1588.46 540.37C1588.51 568.636 1588.99 570.894 1598.51 587.727C1627.01 637.603 1646.53 677.42 1629.37 736.786C1623.31 755.708 1611.64 773.254 1602.26 777.575C1594.58 781.109 1495.6 781.95 1495.61 778.481ZM641.262 659.85C641.262 637.362 650.803 601.298 662.291 580.362C688.802 532.047 743.214 510.367 785.616 531.224C794.528 535.608 805.294 541.408 809.541 544.114C817.054 548.901 817.69 548.752 833.109 538.595C852.33 525.934 874.994 520.062 893.986 522.823C938.092 529.235 981.02 574.933 989.063 624.035C992.964 647.847 992.48 666.735 987.806 673.127C984.028 678.294 983.452 677.955 978.586 667.701C968.845 647.172 936.808 624.745 905.921 616.832C884.909 611.45 865.805 612.492 841.847 620.328C827.104 625.15 825.76 625.17 822.427 620.612C817.878 614.391 815.186 614.437 810.525 620.812C806.992 625.643 806.229 625.639 795.957 620.741C771.268 608.967 735.055 611.964 698.193 628.832C680.067 637.126 658.082 656.583 653.015 668.816C646.721 684.013 641.262 679.849 641.262 659.85ZM594.896 548.693C593.801 545.857 592.848 528.918 592.779 511.05C592.648 477.289 592.781 476.733 610.483 437.172C625.473 403.674 665.073 372.755 703.021 364.922C738.326 357.635 782.218 368.254 807.331 390.158C816.47 398.13 820.893 397.403 830.965 386.273C845.405 370.317 879.734 361.053 913.767 363.93C986.425 370.071 1039.91 428.828 1041.63 504.408C1042.22 530.306 1037.02 551.808 1029.84 553.142C1027.55 553.567 1020.62 545.97 1014.26 536.075C992.657 502.439 956.659 478.241 915.784 469.878C884.632 463.504 876.679 464.042 841.774 474.887C832.549 477.753 831.052 477.342 824.976 470.278C816.622 460.566 813.972 460.554 809.573 470.209C806.786 476.326 804.734 477.482 799.526 475.872C759.806 463.593 716.248 466.672 678.087 484.456C652.535 496.364 632.87 513.585 618.805 536.372C607.716 554.339 598.842 558.911 594.896 548.693ZM1233.79 526.484C1230.5 521.156 1218.79 508.127 1207.78 497.531C1177.94 468.833 1136.73 447.827 1101.39 443.3C1088.03 441.59 1085.3 440.152 1082.79 433.496C1079.87 425.738 1078.55 423.022 1065.44 397.71C1061.67 390.419 1047.42 373.449 1033.79 360C1014.74 341.202 1003.89 333.15 986.881 325.188C948.542 307.238 902.507 302.007 860.74 310.854C849.398 313.256 839.124 315.222 837.909 315.222C833.013 315.222 836.115 306.368 842.141 303.143C845.684 301.247 851.319 297.127 854.661 293.988C863.395 285.786 902.155 267.428 921.132 262.505C941.682 257.173 1020.5 256.582 1038.28 261.625C1113.91 283.08 1199.05 371.845 1230.02 461.521C1238.74 486.771 1248.14 523.303 1248.14 531.936C1248.14 539.524 1239.92 536.402 1233.79 526.484ZM394.637 507.136C400.435 437.98 470.915 331.944 540.591 287.553C596.079 252.201 666.139 246.344 732.8 271.483C753.989 279.474 794.434 304.789 794.444 310.066C794.456 316.05 794.255 316.071 776.778 311.958C769.487 310.242 760.87 308.242 757.629 307.514C744.703 304.61 708.182 306.434 690.704 310.856C650.876 320.934 629.054 332.392 600.08 358.442C582.938 373.855 572.227 388.989 558.545 417.13C547.173 440.52 546.703 440.967 530.847 443.51C511.218 446.657 485.402 455.967 465.599 467.042C444.487 478.848 413.322 506.376 406.81 518.97C404.431 523.57 400.338 527.334 397.714 527.334C393.616 527.334 393.182 524.485 394.637 507.136ZM1184.42 295.434C1130.39 232.022 1067.82 203.29 983.734 203.278C961.369 203.275 956.484 202.475 956.484 198.815C956.484 196.363 955.353 192.054 953.971 189.241C952.589 186.427 948.944 178.836 945.87 172.371C938.819 157.542 924.347 141.301 906.794 128.518C895.097 120.001 878.288 113.275 844.536 103.605C837.941 101.716 836.771 99.0376 833.352 77.9982C828.109 45.746 831.116 0 838.477 0C839.659 0 844.32 7.29997 848.834 16.2221C859.037 36.3883 873.073 51.2303 896.711 66.8488C933.529 91.1767 969.002 100.104 1029 100.142C1048.62 100.154 1071.82 101.473 1080.55 103.073C1129.64 112.072 1179.16 158.673 1198.08 213.663C1207.46 240.919 1209.73 312.276 1201.23 312.276C1199.88 312.276 1192.31 304.697 1184.42 295.434ZM431.572 301.229C428.79 289.389 434.955 224.81 440.22 210.639C457.225 164.868 484.409 130.391 515.426 115.255C545.629 100.517 567.137 96.5449 604.465 98.8121C667.282 102.627 713.8 89.9594 751.303 58.8249C765.773 46.8123 784.985 21.2684 789.638 7.85651C792.107 0.73915 798.197 3.02034 800.708 12.0024C803.214 20.9716 803.234 83.9516 800.734 95.5141C799.065 103.232 797.16 104.463 782.293 107.43C767.413 110.399 741.841 121.483 731.912 129.268C711.598 145.192 699.751 158.656 691.746 174.916C686.664 185.24 682.506 194.979 682.506 196.559C682.506 198.14 668.918 200.282 652.31 201.32C618.32 203.445 581.49 209.642 561.72 216.561C547.021 221.706 512.166 238.45 506.59 243.045C504.624 244.665 496.007 251.199 487.441 257.565C478.876 263.931 464.576 277.455 455.664 287.619C438.727 306.936 433.594 309.835 431.572 301.229Z\" fill=\"url(#paint0_radial_143_28)\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_143_28\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(818.082 805) rotate(90) scale(805.914 818.188)\">\\n<stop offset=\"0.444\" stop-color=\"white\"/>\\n<stop offset=\"0.794\" stop-color=\"#FF9CC6\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-auq5cj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Fm3fc4kax\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{borderRadius:36,bottomLeftRadius:36,bottomRightRadius:36,topLeftRadius:36,topRightRadius:36}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:56,bottomLeftRadius:56,bottomRightRadius:56,controls:true,height:\"100%\",id:\"Fm3fc4kax\",isMixedBorderRadius:false,layoutId:\"Fm3fc4kax\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/lctbm1myaDmk4UVqmF9GLG3mQ.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/cDRWRlAX8BU9XHKUVF6ddp9RYg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:56,topRightRadius:56,volume:100,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12pj3hz-container hidden-rgwone\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SICr5uwAk\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:23,bgSize:100,bgSizeType:\"cover\",font:{color:\"rgb(136, 136, 136)\",fontFamily:\"POPPINS\",fontSize:52,fontStyle:\"normal\",fontWeight:600,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"SICr5uwAk\",image:addImageAlt({src:\"https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg\",srcSet:\"https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg 4697w\"},\"\"),layoutId:\"SICr5uwAk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"EXPLORE OUR FIRST PATH\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15klm87 hidden-rgwone\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-45o3up-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sGxmByV_1\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{input:{borderRadius:8,color:\"rgb(255, 255, 255)\",fill:\"rgba(235, 235, 235, 0.41)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgb(255, 255, 255)\"}},TXWFV9ZyK:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:0,buttonPaddingBottom:0,buttonPaddingLeft:0,buttonPaddingPerSide:false,buttonPaddingRight:0,buttonPaddingTop:0,color:\"rgb(255, 255, 255)\",fill:\"rgb(202, 89, 227)\",insetWhenDocked:3,isDocked:true,label:\"Request Demo\",shouldAppear:true,widthWhenDocked:150},font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"sGxmByV_1\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"sGxmByV_1\",loopsID:\"clt0scpnd007c74xr1fykgy61\",loopsUserGroup:\"Paths XR Demo\",mailchimpURL:\"\",redirectAs:\"overlay\",service:\"loops\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n5r2m0-container hidden-1yhavw2 hidden-5itr0y\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"huPIlSMc9\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(TextMask,{bgPosX:0,bgPosY:23,bgSize:100,bgSizeType:\"cover\",font:{color:\"rgb(136, 136, 136)\",fontFamily:\"POPPINS\",fontSize:35,fontStyle:\"normal\",fontWeight:600,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"huPIlSMc9\",image:addImageAlt({src:\"https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg\",srcSet:\"https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0LY1bz3ZlVWPxHs7LiQvsHIwZaA.jpg 4697w\"},\"\"),layoutId:\"huPIlSMc9\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"EXPLORE OUR FIRST PATH\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-152s9fa\",\"data-framer-name\":\"Created by\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.cyberdelicsociety.com/cyberdeliclab\",motionChild:true,nodeId:\"JetBQraOc\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1164,intrinsicWidth:2830,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10662-3316+22),pixelHeight:1164,pixelWidth:2830,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9121)`,src:\"https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png\",srcSet:\"https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png 2830w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1164,intrinsicWidth:2830,pixelHeight:1164,pixelWidth:2830,positionX:\"center\",positionY:\"center\",sizes:\"734px\",src:\"https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png\",srcSet:\"https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png 2830w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1164,intrinsicWidth:2830,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8549.684952708512+3),pixelHeight:1164,pixelWidth:2830,positionX:\"center\",positionY:\"center\",sizes:\"832px\",src:\"https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png\",srcSet:\"https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1lt5u0W2ZEEGJj2zQeHA1R5HAnQ.png 2830w\"},className:\"framer-cgcvk6 framer-12q0g7w\",\"data-framer-name\":\"Cyberdelic Labs Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(82, 119, 250)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(292deg, rgb(250, 194, 82) 0%, rgb(255, 255, 255) 98.1982%)\"},children:\"created by\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(82, 119, 250)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(292deg, rgb(250, 194, 82) 0%, rgb(255, 255, 255) 98.1982%)\"},children:\"created by\"})})}),className:\"framer-7nn2dm\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:undefined}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5096,intrinsicWidth:5096,positionX:\"center\",positionY:\"center\"},className:\"framer-1auo31s\",\"data-framer-name\":\"Resources\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(173, 166, 255) 0%, rgb(201, 173, 255) 100%)\"},children:\"RESOURCES\"})})}),verticalAlignment:\"center\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(173, 166, 255) 0%, rgb(201, 173, 255) 100%)\"},children:\"RESOURCES\"})})}),className:\"framer-3dxhka\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1koyc92\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qjg5yu\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1048,intrinsicWidth:933,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10662-2845+60+55+0+0+0+0),pixelHeight:1048,pixelWidth:933,positionX:\"left\",positionY:\"top\",sizes:`max(min(286px, ${componentViewport?.width||\"100vw\"}), 100px)`,src:\"https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png\",srcSet:\"https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png?scale-down-to=1024 911w,https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png 933w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1048,intrinsicWidth:933,pixelHeight:1048,pixelWidth:933,positionX:\"left\",positionY:\"top\",sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 100px)`,src:\"https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png\",srcSet:\"https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png?scale-down-to=1024 911w,https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png 933w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1048,intrinsicWidth:933,pixelHeight:1048,pixelWidth:933,positionX:\"left\",positionY:\"top\",sizes:\"320px\",src:\"https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png\",srcSet:\"https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png?scale-down-to=1024 911w,https://framerusercontent.com/images/e6v5h5s4Adsik8J3PmxII6EgujU.png 933w\"},className:\"framer-4hnd86\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yleht6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Cyberdelics: Context Engineering Psychedelics for Altered Traits\"})}),className:\"framer-o2ax7m\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Paper\"})}),className:\"framer-1vvgyiy\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.scienceopen.com/hosted-document?doi=10.14236/ewic/EVA2022.48\",motionChild:true,nodeId:\"uACiykoFi\",openInNewTab:true,scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vxcpye framer-12q0g7w\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-1vgijoe\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cu9lji\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10662-2845+60+55+0+571+0+0),pixelHeight:1024,pixelWidth:1024,sizes:`min(286px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg\",srcSet:\"https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg 1024w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`min(1000px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg\",srcSet:\"https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"320px\",src:\"https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg\",srcSet:\"https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jCVuaI85Ew3ZQiQdBG2VnreGOoY.jpeg 1024w\"},className:\"framer-t8jwx5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fhea3f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Cyberdelics: Context Engineering Psychedelics to Develop Altered Traits\"})}),className:\"framer-1vv8tvu\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Video\"})}),className:\"framer-1wdavbq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=3YQSCnZgoiQ\",motionChild:true,nodeId:\"kGyBaqqP0\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1829qvc framer-12q0g7w\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Watch\"})}),className:\"framer-gued1t\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9s0g3\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2880,intrinsicWidth:5120,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10662-2845+60+55+0+1144+0+0),pixelHeight:2880,pixelWidth:5120,sizes:`min(286px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg\",srcSet:\"https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg 5120w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2880,intrinsicWidth:5120,pixelHeight:2880,pixelWidth:5120,sizes:`min(1000px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg\",srcSet:\"https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg 5120w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2880,intrinsicWidth:5120,pixelHeight:2880,pixelWidth:5120,sizes:\"320px\",src:\"https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg\",srcSet:\"https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/DxpkRedvgQ3NcfcTuYZikXXX8yo.jpg 5120w\"},className:\"framer-1qhzm0z\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bcy1iy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Acid test: how psychedelic virtual reality can help end society's mass bad trip\"})}),className:\"framer-va9w1t\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Guardian Article\"})}),className:\"framer-1e58x2q\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.theguardian.com/technology/2019/mar/26/acid-test-how-psychedelic-virtual-reality-can-end-societys-mass-bad-trip\",motionChild:true,nodeId:\"MkFzeeYiq\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1osnos9 framer-12q0g7w\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-1px49m7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r090n2\",\"data-framer-name\":\"Contact\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(224, 240, 255)\"},children:\"Contact Us\"})}),className:\"framer-1rrwq21\",fonts:[\"GF;Inter-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TCxwIpznq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1390,intrinsicWidth:1984,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9665+100+-83),pixelHeight:1390,pixelWidth:1984,sizes:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 1.2548)`,src:\"https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png\",srcSet:\"https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png 1984w\"}},TXWFV9ZyK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1390,intrinsicWidth:1984,pixelHeight:1390,pixelWidth:1984,sizes:\"814px\",src:\"https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png\",srcSet:\"https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png 1984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1390,intrinsicWidth:1984,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9629.916881755076+100+-103),pixelHeight:1390,pixelWidth:1984,sizes:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 1.0741)`,src:\"https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png\",srcSet:\"https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4dTECLLCHyBgQc8FVgemB7q1M.png 1984w\"},className:\"framer-jomx5s\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-30w9lg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gSiUqhq4r\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(Typeform,{autoFocus:true,formId:\"yXKvde6y\",height:\"100%\",hideFooter:true,hideHeaders:true,id:\"gSiUqhq4r\",layoutId:\"gSiUqhq4r\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i8c35x\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":nXsDq32fG\",webPageId:\"BlYS76KAP\"},motionChild:true,nodeId:\"slJM3Ozbc\",openInNewTab:false,scopeId:\"BlYS76KAP\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1moflxr framer-12q0g7w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ofn0v-container\",isModuleExternal:true,nodeId:\"GBdaOjRPM\",scopeId:\"BlYS76KAP\",children:/*#__PURE__*/_jsx(RunningStroke1,{buttonFill:\"rgb(0, 0, 0)\",buttonText:\"BACK TO TOP\",height:\"100%\",id:\"GBdaOjRPM\",layoutId:\"GBdaOjRPM\",textColor:\"rgb(255, 255, 255)\",textSize:16,variant:\"LUgC6Cxtg\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BHgFh.framer-12q0g7w, .framer-BHgFh .framer-12q0g7w { display: block; }\",\".framer-BHgFh.framer-1yhavw2 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-BHgFh .framer-1pvvata-container, .framer-BHgFh .framer-r7evg7-container, .framer-BHgFh .framer-svar95-container, .framer-BHgFh .framer-myw189-container, .framer-BHgFh .framer-1j5a0g6-container, .framer-BHgFh .framer-6ofn0v-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BHgFh .framer-z02r5t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 826px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-BHgFh .framer-rhsdta-container { bottom: -11px; flex: none; left: 0px; mix-blend-mode: lighten; opacity: 0.8; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-BHgFh .framer-bzsscu { flex: none; height: 51%; left: calc(49.75000000000002% - 875px / 2); position: absolute; top: calc(56.83530678148549% - 50.59203444564048% / 2); width: 875px; z-index: 1; }\",\".framer-BHgFh .framer-11juukw { flex: none; height: 320px; left: calc(50.00000000000002% - 40% / 2); mix-blend-mode: lighten; position: absolute; top: 160px; width: 40%; z-index: 1; }\",\".framer-BHgFh .framer-1nrsg7p-container { flex: none; height: 37px; left: 50%; position: absolute; top: 75%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-BHgFh .framer-146ezpj-container { flex: none; height: 962px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 929px; width: 100%; z-index: 0; }\",\".framer-BHgFh .framer-uehie5-container { bottom: 1615px; flex: none; height: 1199px; position: absolute; right: -1px; width: 100%; z-index: 0; }\",\".framer-BHgFh .framer-10prqk2-container { bottom: -692px; flex: none; height: 407px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 0; }\",\".framer-BHgFh .framer-13mm9px { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 761px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-BHgFh .framer-167m52l { flex: none; height: 78px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-wsa49k { aspect-ratio: 7.883211678832117 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 100%; }\",\".framer-BHgFh .framer-110kgon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 66px; height: 237px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-11rzymb-container, .framer-BHgFh .framer-1egdgcq-container, .framer-BHgFh .framer-trbr7n-container, .framer-BHgFh .framer-o7jcqo-container { flex: none; height: 44px; position: relative; width: 15%; }\",\".framer-BHgFh .framer-32cwif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 668px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-snp0bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 209px; }\",\".framer-BHgFh .framer-1cf536y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: 53%; justify-content: center; padding: 0px; position: relative; width: 62%; }\",\".framer-BHgFh .framer-14yyr7t-container, .framer-BHgFh .framer-1uv1q7g-container, .framer-BHgFh .framer-a62ynp-container { flex: none; height: auto; position: relative; width: 816px; }\",\".framer-BHgFh .framer-18g195l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 168px; }\",\".framer-BHgFh .framer-1uroaaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-e403x1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 138px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 19px; width: 100%; z-index: 2; }\",\".framer-BHgFh .framer-gzn3uj-container { flex: none; height: auto; position: relative; width: 528px; }\",\".framer-BHgFh .framer-8eflxw { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-BHgFh .framer-ccill0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(49.62500000000002% - 100% / 2); width: 100%; }\",\".framer-BHgFh .framer-1wlnazl-container, .framer-BHgFh .framer-1ju1ltq-container { flex: none; height: 60%; position: relative; width: 50%; z-index: 0; }\",\".framer-BHgFh .framer-l463pi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 90%; justify-content: center; left: calc(50.16666666666669% - 100.33333333333334% / 2); overflow: hidden; padding: 80px; position: absolute; top: 0px; width: 100%; }\",\".framer-BHgFh .framer-1mtw5nu { align-content: center; align-items: center; bottom: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 116px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 737px; z-index: 1; }\",\".framer-BHgFh .framer-1yccgju, .framer-BHgFh .framer-1yfgzzx, .framer-BHgFh .framer-1jzckvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BHgFh .framer-yn95ik, .framer-BHgFh .framer-am7bpk, .framer-BHgFh .framer-xod78t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BHgFh .framer-nkzgym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1044px; justify-content: center; mix-blend-mode: lighten; overflow: hidden; padding: 150px 0px 180px 0px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-1v21ab3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 145px; justify-content: center; left: 0px; padding: 0px; position: absolute; right: 0px; top: 147px; z-index: 1; }\",\".framer-BHgFh .framer-1exsr76-container { flex: none; height: auto; position: relative; width: 421px; }\",\".framer-BHgFh .framer-1vk2k4p-container { flex: none; height: 431px; position: relative; width: 448px; }\",\".framer-BHgFh .framer-pqesin-container, .framer-BHgFh .framer-obfzzk-container, .framer-BHgFh .framer-1jujct9-container { height: 455px; position: relative; width: 455px; }\",\".framer-BHgFh .framer-tlu3su { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 15px; z-index: -1; }\",\".framer-BHgFh .framer-80y7kf { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); height: 26%; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 1; }\",\".framer-BHgFh .framer-85ekdq { align-content: center; align-items: center; align-self: start; background: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 81.98198198198199%, rgba(0, 0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: 1 / -1; height: auto; justify-content: center; justify-self: center; overflow: hidden; padding: 32px 0px 21px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-BHgFh .framer-x2tj9c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 87px; mix-blend-mode: lighten; position: relative; white-space: pre-wrap; width: 485px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BHgFh .framer-lm2a4f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 73px; mix-blend-mode: lighten; position: relative; white-space: pre-wrap; width: 627px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BHgFh .framer-u8lust-container { align-self: start; flex: none; height: 610px; justify-self: start; position: sticky; top: 200px; width: 100%; z-index: 1; }\",\".framer-BHgFh .framer-1c2djoi { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: sticky; top: 200px; width: 100%; z-index: 1; }\",\".framer-BHgFh .framer-1h5xhrv-container, .framer-BHgFh .framer-1tpx1t-container, .framer-BHgFh .framer-p6q0tz-container, .framer-BHgFh .framer-5v6k3i-container { flex: none; height: 144px; position: relative; width: 144px; z-index: 1; }\",\".framer-BHgFh .framer-120xe78 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 123px; height: 2357px; justify-content: center; justify-self: start; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-lyxy0s, .framer-BHgFh .framer-1imfhtc, .framer-BHgFh .framer-m1fbmf, .framer-BHgFh .framer-1eg9k53 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px 72px 0px 0px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-fzfwzi-container, .framer-BHgFh .framer-vcfeym-container, .framer-BHgFh .framer-1nte7nt-container, .framer-BHgFh .framer-fy4rzt-container { flex: none; height: auto; position: relative; width: 427px; }\",\".framer-BHgFh .framer-z90f9, .framer-BHgFh .framer-12781i9, .framer-BHgFh .framer-o2fv1, .framer-BHgFh .framer-1p697kl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 284px; position: relative; white-space: pre-wrap; width: 428px; word-break: break-word; word-wrap: break-word; }\",\".framer-BHgFh .framer-f5vb34, .framer-BHgFh .framer-1lj8uq7, .framer-BHgFh .framer-1xr2wtf, .framer-BHgFh .framer-4wfupd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 104px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 429px; }\",\".framer-BHgFh .framer-13rxlle { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1465px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 1; }\",\".framer-BHgFh .framer-s1mqha-container { flex: none; height: 741px; left: calc(50.00000000000002% - 991px / 2); position: absolute; top: calc(49.94413407821231% - 741px / 2); width: 991px; z-index: 1; }\",\".framer-BHgFh .framer-1e05qc7 { bottom: 137px; flex: none; height: 293px; left: calc(50.00000000000002% - 97.58333333333333% / 2); position: absolute; width: 98%; z-index: 0; }\",\".framer-BHgFh .framer-v4wbk3 { flex: none; height: 918px; overflow: hidden; position: relative; width: 931px; z-index: 1; }\",\".framer-BHgFh .framer-g0jtdl { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BHgFh .framer-auq5cj-container { flex: none; height: 458px; left: calc(49.94629430719659% - 747px / 2); position: absolute; top: calc(50.00000000000002% - 458px / 2); width: 747px; }\",\".framer-BHgFh .framer-12pj3hz-container { flex: none; height: auto; left: 51%; position: absolute; top: 141px; transform: translateX(-50%); width: 762px; }\",\".framer-BHgFh .framer-15klm87 { flex: none; height: 44px; left: 399px; overflow: hidden; position: absolute; top: 797px; width: 133px; }\",\".framer-BHgFh .framer-45o3up-container { bottom: 141px; flex: none; height: auto; left: 52%; position: absolute; transform: translateX(-50%); width: 342px; }\",\".framer-BHgFh .framer-1n5r2m0-container { flex: none; height: auto; left: 50%; position: absolute; top: 38px; transform: translateX(-50%); width: 319px; }\",\".framer-BHgFh .framer-152s9fa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 456px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-BHgFh .framer-cgcvk6 { flex: none; height: 450px; overflow: hidden; position: relative; text-decoration: none; width: 832px; }\",\".framer-BHgFh .framer-7nn2dm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 416px; position: absolute; top: 153px; white-space: pre; width: auto; }\",\".framer-BHgFh .framer-1auo31s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 7%; justify-content: center; overflow: hidden; padding: 100px 40px 170px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-BHgFh .framer-3dxhka { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 55px; position: relative; white-space: pre-wrap; width: 435px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BHgFh .framer-1koyc92 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; z-index: 0; }\",\".framer-BHgFh .framer-qjg5yu { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BHgFh .framer-4hnd86, .framer-BHgFh .framer-t8jwx5, .framer-BHgFh .framer-1qhzm0z { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BHgFh .framer-yleht6 { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #479e54 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 23px 30px 23px 30px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-o2ax7m, .framer-BHgFh .framer-1vv8tvu, .framer-BHgFh .framer-va9w1t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BHgFh .framer-1vvgyiy, .framer-BHgFh .framer-1wdavbq, .framer-BHgFh .framer-1e58x2q { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BHgFh .framer-1vxcpye, .framer-BHgFh .framer-1829qvc, .framer-BHgFh .framer-1osnos9 { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-BHgFh .framer-1vgijoe, .framer-BHgFh .framer-gued1t, .framer-BHgFh .framer-1px49m7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BHgFh .framer-cu9lji, .framer-BHgFh .framer-1r9s0g3 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BHgFh .framer-1fhea3f { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #954c7a 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; padding: 29px 30px 29px 30px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-bcy1iy { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #1c3dd4 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; padding: 27px 30px 27px 30px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-r090n2 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1205px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-BHgFh .framer-1rrwq21 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.84); top: 103px; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-BHgFh .framer-jomx5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1211px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 107%; }\",\".framer-BHgFh .framer-30w9lg-container { flex: none; height: 780px; position: relative; width: 70%; }\",\".framer-BHgFh .framer-i8c35x { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 410px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-BHgFh .framer-1moflxr { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 142px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 224px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BHgFh.framer-1yhavw2, .framer-BHgFh .framer-z02r5t, .framer-BHgFh .framer-13mm9px, .framer-BHgFh .framer-110kgon, .framer-BHgFh .framer-32cwif, .framer-BHgFh .framer-snp0bu, .framer-BHgFh .framer-1cf536y, .framer-BHgFh .framer-18g195l, .framer-BHgFh .framer-1uroaaa, .framer-BHgFh .framer-e403x1, .framer-BHgFh .framer-l463pi, .framer-BHgFh .framer-1mtw5nu, .framer-BHgFh .framer-1yccgju, .framer-BHgFh .framer-1yfgzzx, .framer-BHgFh .framer-1jzckvc, .framer-BHgFh .framer-nkzgym, .framer-BHgFh .framer-1v21ab3, .framer-BHgFh .framer-85ekdq, .framer-BHgFh .framer-1c2djoi, .framer-BHgFh .framer-120xe78, .framer-BHgFh .framer-lyxy0s, .framer-BHgFh .framer-f5vb34, .framer-BHgFh .framer-1imfhtc, .framer-BHgFh .framer-1lj8uq7, .framer-BHgFh .framer-m1fbmf, .framer-BHgFh .framer-1xr2wtf, .framer-BHgFh .framer-1eg9k53, .framer-BHgFh .framer-4wfupd, .framer-BHgFh .framer-13rxlle, .framer-BHgFh .framer-152s9fa, .framer-BHgFh .framer-1auo31s, .framer-BHgFh .framer-1koyc92, .framer-BHgFh .framer-qjg5yu, .framer-BHgFh .framer-yleht6, .framer-BHgFh .framer-1vxcpye, .framer-BHgFh .framer-cu9lji, .framer-BHgFh .framer-1fhea3f, .framer-BHgFh .framer-1829qvc, .framer-BHgFh .framer-1r9s0g3, .framer-BHgFh .framer-bcy1iy, .framer-BHgFh .framer-1osnos9, .framer-BHgFh .framer-r090n2, .framer-BHgFh .framer-jomx5s, .framer-BHgFh .framer-i8c35x, .framer-BHgFh .framer-1moflxr { gap: 0px; } .framer-BHgFh.framer-1yhavw2 > *, .framer-BHgFh .framer-13mm9px > *, .framer-BHgFh .framer-1uroaaa > *, .framer-BHgFh .framer-l463pi > *, .framer-BHgFh .framer-nkzgym > *, .framer-BHgFh .framer-1v21ab3 > *, .framer-BHgFh .framer-85ekdq > *, .framer-BHgFh .framer-13rxlle > *, .framer-BHgFh .framer-qjg5yu > *, .framer-BHgFh .framer-cu9lji > *, .framer-BHgFh .framer-1r9s0g3 > *, .framer-BHgFh .framer-r090n2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BHgFh.framer-1yhavw2 > :first-child, .framer-BHgFh .framer-z02r5t > :first-child, .framer-BHgFh .framer-13mm9px > :first-child, .framer-BHgFh .framer-snp0bu > :first-child, .framer-BHgFh .framer-1cf536y > :first-child, .framer-BHgFh .framer-18g195l > :first-child, .framer-BHgFh .framer-1uroaaa > :first-child, .framer-BHgFh .framer-l463pi > :first-child, .framer-BHgFh .framer-1yccgju > :first-child, .framer-BHgFh .framer-1yfgzzx > :first-child, .framer-BHgFh .framer-1jzckvc > :first-child, .framer-BHgFh .framer-nkzgym > :first-child, .framer-BHgFh .framer-1v21ab3 > :first-child, .framer-BHgFh .framer-85ekdq > :first-child, .framer-BHgFh .framer-1c2djoi > :first-child, .framer-BHgFh .framer-120xe78 > :first-child, .framer-BHgFh .framer-lyxy0s > :first-child, .framer-BHgFh .framer-1imfhtc > :first-child, .framer-BHgFh .framer-m1fbmf > :first-child, .framer-BHgFh .framer-1eg9k53 > :first-child, .framer-BHgFh .framer-13rxlle > :first-child, .framer-BHgFh .framer-1auo31s > :first-child, .framer-BHgFh .framer-qjg5yu > :first-child, .framer-BHgFh .framer-yleht6 > :first-child, .framer-BHgFh .framer-cu9lji > :first-child, .framer-BHgFh .framer-1fhea3f > :first-child, .framer-BHgFh .framer-1r9s0g3 > :first-child, .framer-BHgFh .framer-bcy1iy > :first-child, .framer-BHgFh .framer-r090n2 > :first-child { margin-top: 0px; } .framer-BHgFh.framer-1yhavw2 > :last-child, .framer-BHgFh .framer-z02r5t > :last-child, .framer-BHgFh .framer-13mm9px > :last-child, .framer-BHgFh .framer-snp0bu > :last-child, .framer-BHgFh .framer-1cf536y > :last-child, .framer-BHgFh .framer-18g195l > :last-child, .framer-BHgFh .framer-1uroaaa > :last-child, .framer-BHgFh .framer-l463pi > :last-child, .framer-BHgFh .framer-1yccgju > :last-child, .framer-BHgFh .framer-1yfgzzx > :last-child, .framer-BHgFh .framer-1jzckvc > :last-child, .framer-BHgFh .framer-nkzgym > :last-child, .framer-BHgFh .framer-1v21ab3 > :last-child, .framer-BHgFh .framer-85ekdq > :last-child, .framer-BHgFh .framer-1c2djoi > :last-child, .framer-BHgFh .framer-120xe78 > :last-child, .framer-BHgFh .framer-lyxy0s > :last-child, .framer-BHgFh .framer-1imfhtc > :last-child, .framer-BHgFh .framer-m1fbmf > :last-child, .framer-BHgFh .framer-1eg9k53 > :last-child, .framer-BHgFh .framer-13rxlle > :last-child, .framer-BHgFh .framer-1auo31s > :last-child, .framer-BHgFh .framer-qjg5yu > :last-child, .framer-BHgFh .framer-yleht6 > :last-child, .framer-BHgFh .framer-cu9lji > :last-child, .framer-BHgFh .framer-1fhea3f > :last-child, .framer-BHgFh .framer-1r9s0g3 > :last-child, .framer-BHgFh .framer-bcy1iy > :last-child, .framer-BHgFh .framer-r090n2 > :last-child { margin-bottom: 0px; } .framer-BHgFh .framer-z02r5t > *, .framer-BHgFh .framer-snp0bu > *, .framer-BHgFh .framer-18g195l > *, .framer-BHgFh .framer-1yccgju > *, .framer-BHgFh .framer-1yfgzzx > *, .framer-BHgFh .framer-1jzckvc > *, .framer-BHgFh .framer-lyxy0s > *, .framer-BHgFh .framer-1imfhtc > *, .framer-BHgFh .framer-m1fbmf > *, .framer-BHgFh .framer-1eg9k53 > *, .framer-BHgFh .framer-yleht6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BHgFh .framer-110kgon > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-BHgFh .framer-110kgon > :first-child, .framer-BHgFh .framer-32cwif > :first-child, .framer-BHgFh .framer-e403x1 > :first-child, .framer-BHgFh .framer-1mtw5nu > :first-child, .framer-BHgFh .framer-f5vb34 > :first-child, .framer-BHgFh .framer-1lj8uq7 > :first-child, .framer-BHgFh .framer-1xr2wtf > :first-child, .framer-BHgFh .framer-4wfupd > :first-child, .framer-BHgFh .framer-152s9fa > :first-child, .framer-BHgFh .framer-1koyc92 > :first-child, .framer-BHgFh .framer-1vxcpye > :first-child, .framer-BHgFh .framer-1829qvc > :first-child, .framer-BHgFh .framer-1osnos9 > :first-child, .framer-BHgFh .framer-jomx5s > :first-child, .framer-BHgFh .framer-i8c35x > :first-child, .framer-BHgFh .framer-1moflxr > :first-child { margin-left: 0px; } .framer-BHgFh .framer-110kgon > :last-child, .framer-BHgFh .framer-32cwif > :last-child, .framer-BHgFh .framer-e403x1 > :last-child, .framer-BHgFh .framer-1mtw5nu > :last-child, .framer-BHgFh .framer-f5vb34 > :last-child, .framer-BHgFh .framer-1lj8uq7 > :last-child, .framer-BHgFh .framer-1xr2wtf > :last-child, .framer-BHgFh .framer-4wfupd > :last-child, .framer-BHgFh .framer-152s9fa > :last-child, .framer-BHgFh .framer-1koyc92 > :last-child, .framer-BHgFh .framer-1vxcpye > :last-child, .framer-BHgFh .framer-1829qvc > :last-child, .framer-BHgFh .framer-1osnos9 > :last-child, .framer-BHgFh .framer-jomx5s > :last-child, .framer-BHgFh .framer-i8c35x > :last-child, .framer-BHgFh .framer-1moflxr > :last-child { margin-right: 0px; } .framer-BHgFh .framer-32cwif > *, .framer-BHgFh .framer-e403x1 > *, .framer-BHgFh .framer-jomx5s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BHgFh .framer-1cf536y > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-BHgFh .framer-1mtw5nu > * { margin: 0px; margin-left: calc(116px / 2); margin-right: calc(116px / 2); } .framer-BHgFh .framer-1c2djoi > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-BHgFh .framer-120xe78 > * { margin: 0px; margin-bottom: calc(123px / 2); margin-top: calc(123px / 2); } .framer-BHgFh .framer-f5vb34 > *, .framer-BHgFh .framer-1lj8uq7 > *, .framer-BHgFh .framer-1xr2wtf > *, .framer-BHgFh .framer-4wfupd > *, .framer-BHgFh .framer-152s9fa > *, .framer-BHgFh .framer-1vxcpye > *, .framer-BHgFh .framer-1829qvc > *, .framer-BHgFh .framer-1osnos9 > *, .framer-BHgFh .framer-i8c35x > *, .framer-BHgFh .framer-1moflxr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BHgFh .framer-1auo31s > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BHgFh .framer-1koyc92 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BHgFh .framer-1fhea3f > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-BHgFh .framer-bcy1iy > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-BHgFh.framer-1yhavw2 { height: 10475px; width: 810px; } .framer-BHgFh .framer-1pvvata-container, .framer-BHgFh .framer-85ekdq, .framer-BHgFh .framer-1moflxr { order: 0; } .framer-BHgFh .framer-z02r5t { height: 762px; order: 1; } .framer-BHgFh .framer-rhsdta-container { bottom: unset; height: 759px; } .framer-BHgFh .framer-bzsscu { height: 435px; left: calc(50.00000000000002% - 586px / 2); top: 199px; width: 586px; } .framer-BHgFh .framer-11juukw { height: 258px; left: calc(50.00000000000002% - 344px / 2); top: 179px; width: 344px; } .framer-BHgFh .framer-1nrsg7p-container { bottom: 197px; height: unset; top: 527px; transform: translateX(-50%); } .framer-BHgFh .framer-146ezpj-container { height: 930px; order: 2; top: 759px; } .framer-BHgFh .framer-uehie5-container { bottom: 1199px; height: 1295px; order: 3; } .framer-BHgFh .framer-10prqk2-container { bottom: 0px; height: 378px; order: 4; } .framer-BHgFh .framer-13mm9px { height: 160px; left: calc(50.00000000000002% - 100% / 2); order: 5; top: 651px; transform: unset; } .framer-BHgFh .framer-167m52l { height: 153px; width: 100%; } .framer-BHgFh .framer-110kgon { gap: 26px; order: 6; } .framer-BHgFh .framer-11rzymb-container, .framer-BHgFh .framer-1egdgcq-container, .framer-BHgFh .framer-trbr7n-container, .framer-BHgFh .framer-o7jcqo-container { height: 41px; width: 20%; } .framer-BHgFh .framer-32cwif { flex-direction: column; height: 539px; order: 7; } .framer-BHgFh .framer-snp0bu { flex: 1 0 0px; height: 1px; order: 0; } .framer-BHgFh .framer-1cf536y, .framer-BHgFh .framer-1koyc92 { order: 1; } .framer-BHgFh .framer-14yyr7t-container, .framer-BHgFh .framer-1uv1q7g-container, .framer-BHgFh .framer-a62ynp-container { width: 553px; } .framer-BHgFh .framer-18g195l { flex: 1 0 0px; height: 1px; order: 2; } .framer-BHgFh .framer-1uroaaa { height: 467px; order: 8; } .framer-BHgFh .framer-e403x1 { bottom: 473px; flex-direction: column; height: unset; order: 0; top: 57px; } .framer-BHgFh .framer-gzn3uj-container { width: 432px; } .framer-BHgFh .framer-8eflxw { order: 1; top: calc(49.921996879875216% - 100% / 2); } .framer-BHgFh .framer-1wlnazl-container, .framer-BHgFh .framer-1ju1ltq-container { height: 317px; width: 100%; } .framer-BHgFh .framer-l463pi { height: 100%; left: calc(50.16666666666669% - 100% / 2); padding: 80px 406px 80px 406px; width: 100%; } .framer-BHgFh .framer-1mtw5nu { bottom: -48px; gap: 80px; order: 2; top: 372px; } .framer-BHgFh .framer-nkzgym { order: 9; width: 810px; } .framer-BHgFh .framer-tlu3su { left: -1px; } .framer-BHgFh .framer-80y7kf { height: min-content; max-width: unset; order: 10; width: 100%; } .framer-BHgFh .framer-u8lust-container { height: 210px; left: 27px; order: 1; top: 320px; width: 80%; } .framer-BHgFh .framer-1c2djoi { align-content: flex-end; align-items: flex-end; gap: 0px; order: 2; top: 260px; width: min-content; } .framer-BHgFh .framer-1h5xhrv-container { height: 86px; order: 0; width: 86px; } .framer-BHgFh .framer-1tpx1t-container { height: 86px; order: 1; width: 86px; } .framer-BHgFh .framer-p6q0tz-container { height: 86px; order: 2; width: 86px; } .framer-BHgFh .framer-5v6k3i-container { height: 86px; order: 3; width: 86px; } .framer-BHgFh .framer-120xe78 { align-self: center; flex-wrap: wrap; height: min-content; order: 3; padding: 0px 200px 0px 0px; width: 270px; } .framer-BHgFh .framer-lyxy0s { align-content: center; align-items: center; flex: none; height: 497px; padding: 0px; } .framer-BHgFh .framer-1imfhtc, .framer-BHgFh .framer-m1fbmf, .framer-BHgFh .framer-1eg9k53 { align-content: center; align-items: center; flex: none; height: 497px; padding: 0px; width: 270px; } .framer-BHgFh .framer-13rxlle { order: 11; width: 100%; } .framer-BHgFh .framer-s1mqha-container { left: unset; position: relative; top: unset; width: 100%; } .framer-BHgFh .framer-v4wbk3 { height: 929px; order: 12; width: 809px; } .framer-BHgFh .framer-g0jtdl { bottom: unset; height: 616px; left: calc(49.94818652849743% - 625px / 2); right: unset; top: calc(49.947423764458485% - 616px / 2); width: 625px; } .framer-BHgFh .framer-auq5cj-container { bottom: 321px; height: 287px; left: 173px; top: unset; width: 57%; } .framer-BHgFh .framer-12pj3hz-container { left: 51%; top: 33px; width: 390px; } .framer-BHgFh .framer-45o3up-container { bottom: 233px; height: 54px; left: calc(49.938195302843035% - 340px / 2); transform: unset; width: 340px; } .framer-BHgFh .framer-152s9fa { height: 440px; order: 13; width: 802px; } .framer-BHgFh .framer-cgcvk6 { height: 397px; width: 734px; } .framer-BHgFh .framer-7nn2dm { left: 356px; top: 123px; } .framer-BHgFh .framer-1auo31s { gap: 63px; height: min-content; order: 16; padding: 118px 40px 118px 40px; } .framer-BHgFh .framer-3dxhka { height: 12px; order: 0; } .framer-BHgFh .framer-qjg5yu, .framer-BHgFh .framer-cu9lji, .framer-BHgFh .framer-1r9s0g3 { flex: 1 0 0px; width: 1px; } .framer-BHgFh .framer-1fhea3f { padding: 14px 30px 14px 30px; } .framer-BHgFh .framer-r090n2 { flex: 1 0 0px; height: 1px; order: 17; } .framer-BHgFh .framer-1rrwq21 { top: 66px; } .framer-BHgFh .framer-jomx5s { height: 888px; width: 814px; } .framer-BHgFh .framer-30w9lg-container { height: 548px; width: 730px; } .framer-BHgFh .framer-i8c35x { height: 378px; order: 18; width: 819px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BHgFh .framer-110kgon, .framer-BHgFh .framer-32cwif, .framer-BHgFh .framer-e403x1, .framer-BHgFh .framer-1mtw5nu, .framer-BHgFh .framer-1c2djoi, .framer-BHgFh .framer-1auo31s { gap: 0px; } .framer-BHgFh .framer-110kgon > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-BHgFh .framer-110kgon > :first-child, .framer-BHgFh .framer-1mtw5nu > :first-child { margin-left: 0px; } .framer-BHgFh .framer-110kgon > :last-child, .framer-BHgFh .framer-1mtw5nu > :last-child { margin-right: 0px; } .framer-BHgFh .framer-32cwif > *, .framer-BHgFh .framer-e403x1 > *, .framer-BHgFh .framer-1c2djoi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BHgFh .framer-32cwif > :first-child, .framer-BHgFh .framer-e403x1 > :first-child, .framer-BHgFh .framer-1c2djoi > :first-child, .framer-BHgFh .framer-1auo31s > :first-child { margin-top: 0px; } .framer-BHgFh .framer-32cwif > :last-child, .framer-BHgFh .framer-e403x1 > :last-child, .framer-BHgFh .framer-1c2djoi > :last-child, .framer-BHgFh .framer-1auo31s > :last-child { margin-bottom: 0px; } .framer-BHgFh .framer-1mtw5nu > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-BHgFh .framer-1auo31s > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } }}\",\"@media (max-width: 809px) { .framer-BHgFh.framer-1yhavw2 { height: 10662px; width: 390px; } .framer-BHgFh .framer-1pvvata-container { order: 0; } .framer-BHgFh .framer-z02r5t { height: 642px; order: 1; } .framer-BHgFh .framer-rhsdta-container { right: unset; width: 100%; } .framer-BHgFh .framer-bzsscu { height: 180px; left: 0px; right: 0px; top: calc(54.82866043613709% - 180px / 2); width: unset; } .framer-BHgFh .framer-11juukw { height: 292px; left: 0px; right: 0px; top: 119px; width: unset; } .framer-BHgFh .framer-1nrsg7p-container { bottom: 202px; height: unset; top: 440px; transform: translateX(-50%); } .framer-BHgFh .framer-146ezpj-container { height: 775px; order: 2; top: 642px; } .framer-BHgFh .framer-uehie5-container { height: 1701px; order: 3; } .framer-BHgFh .framer-13mm9px { height: 91px; left: calc(50.00000000000002% - 100.25641025641025% / 2); order: 5; top: 578px; transform: unset; width: 100%; } .framer-BHgFh .framer-32cwif { flex-direction: column; height: 692px; order: 7; width: 390px; } .framer-BHgFh .framer-snp0bu, .framer-BHgFh .framer-18g195l { flex: 1 0 0px; height: 1px; } .framer-BHgFh .framer-14yyr7t-container, .framer-BHgFh .framer-1uv1q7g-container, .framer-BHgFh .framer-a62ynp-container { width: 316px; } .framer-BHgFh .framer-1uroaaa { height: 521px; order: 8; overflow: visible; } .framer-BHgFh .framer-e403x1 { height: 7%; top: 69px; width: 390px; } .framer-BHgFh .framer-gzn3uj-container { width: 310px; z-index: 1; } .framer-BHgFh .framer-8eflxw { bottom: 198px; height: 298px; top: unset; } .framer-BHgFh .framer-ccill0 { overflow: visible; top: calc(65.43624161073828% - 100% / 2); } .framer-BHgFh .framer-1wlnazl-container, .framer-BHgFh .framer-1ju1ltq-container { height: 70%; width: 50%; } .framer-BHgFh .framer-l463pi { height: 80%; left: -1px; overflow: visible; top: 65px; width: 100%; } .framer-BHgFh .framer-1mtw5nu { bottom: 12px; flex-direction: column; gap: 0px; top: 215px; } .framer-BHgFh .framer-nkzgym { order: 9; width: 390px; } .framer-BHgFh .framer-1exsr76-container { width: 388px; } .framer-BHgFh .framer-1vk2k4p-container { height: 373px; left: calc(50.00000000000002% - 387px / 2); position: absolute; top: calc(48.371647509578565% - 373px / 2); width: 387px; z-index: 2; } .framer-BHgFh .framer-80y7kf { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: 27%; order: 11; width: 100%; } .framer-BHgFh .framer-x2tj9c { height: 70px; width: 242px; } .framer-BHgFh .framer-lm2a4f { height: 101px; width: 242px; } .framer-BHgFh .framer-120xe78 { align-self: center; gap: 407px; height: 2554px; justify-self: center; padding: 270px 0px 0px 0px; } .framer-BHgFh .framer-lyxy0s, .framer-BHgFh .framer-1imfhtc, .framer-BHgFh .framer-m1fbmf, .framer-BHgFh .framer-1eg9k53 { align-content: center; align-items: center; gap: 69px; padding: 0px; width: 90%; } .framer-BHgFh .framer-z90f9, .framer-BHgFh .framer-12781i9, .framer-BHgFh .framer-o2fv1, .framer-BHgFh .framer-1p697kl { width: 332px; } .framer-BHgFh .framer-v4wbk3 { bottom: 3381px; height: 698px; left: calc(50.00000000000002% - 387px / 2); order: 13; position: absolute; width: 387px; } .framer-BHgFh .framer-g0jtdl { bottom: unset; height: 349px; left: calc(49.87080103359175% - 355px / 2); right: unset; top: 119px; width: 355px; } .framer-BHgFh .framer-auq5cj-container { bottom: 314px; height: 182px; left: 50px; top: unset; width: 74%; } .framer-BHgFh .framer-45o3up-container { bottom: 120px; left: 50%; width: 338px; } .framer-BHgFh .framer-152s9fa { bottom: 3104px; height: 212px; left: 0px; order: 16; position: absolute; width: 100%; z-index: 1; } .framer-BHgFh .framer-cgcvk6 { height: 168px; width: 91%; } .framer-BHgFh .framer-7nn2dm { left: 160px; opacity: 0.52; top: 46px; } .framer-BHgFh .framer-1auo31s { background-color: #000000; bottom: 1036px; height: 1809px; left: 0px; order: 17; padding: 60px 20px 60px 20px; position: absolute; } .framer-BHgFh .framer-3dxhka { order: 0; text-shadow: 0px 0px 15px #ffffff; width: 383px; } .framer-BHgFh .framer-1koyc92 { flex-direction: column; gap: 69px; order: 1; width: 286px; } .framer-BHgFh .framer-qjg5yu, .framer-BHgFh .framer-cu9lji, .framer-BHgFh .framer-1r9s0g3 { width: 100%; } .framer-BHgFh .framer-r090n2 { gap: 43px; height: 818px; left: calc(50.00000000000002% - 100% / 2); order: 10; overflow: visible; position: absolute; top: 9665px; z-index: 1; } .framer-BHgFh .framer-1rrwq21 { top: -15px; z-index: 2; } .framer-BHgFh .framer-jomx5s { height: 784px; width: 125%; } .framer-BHgFh .framer-30w9lg-container { height: 662px; order: 0; width: 334px; } .framer-BHgFh .framer-i8c35x { bottom: 27px; height: 152px; left: 0px; order: 18; position: absolute; right: 0px; width: unset; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BHgFh .framer-32cwif, .framer-BHgFh .framer-1mtw5nu, .framer-BHgFh .framer-120xe78, .framer-BHgFh .framer-lyxy0s, .framer-BHgFh .framer-1imfhtc, .framer-BHgFh .framer-m1fbmf, .framer-BHgFh .framer-1eg9k53, .framer-BHgFh .framer-1koyc92, .framer-BHgFh .framer-r090n2 { gap: 0px; } .framer-BHgFh .framer-32cwif > *, .framer-BHgFh .framer-1mtw5nu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BHgFh .framer-32cwif > :first-child, .framer-BHgFh .framer-1mtw5nu > :first-child, .framer-BHgFh .framer-120xe78 > :first-child, .framer-BHgFh .framer-lyxy0s > :first-child, .framer-BHgFh .framer-1imfhtc > :first-child, .framer-BHgFh .framer-m1fbmf > :first-child, .framer-BHgFh .framer-1eg9k53 > :first-child, .framer-BHgFh .framer-1koyc92 > :first-child, .framer-BHgFh .framer-r090n2 > :first-child { margin-top: 0px; } .framer-BHgFh .framer-32cwif > :last-child, .framer-BHgFh .framer-1mtw5nu > :last-child, .framer-BHgFh .framer-120xe78 > :last-child, .framer-BHgFh .framer-lyxy0s > :last-child, .framer-BHgFh .framer-1imfhtc > :last-child, .framer-BHgFh .framer-m1fbmf > :last-child, .framer-BHgFh .framer-1eg9k53 > :last-child, .framer-BHgFh .framer-1koyc92 > :last-child, .framer-BHgFh .framer-r090n2 > :last-child { margin-bottom: 0px; } .framer-BHgFh .framer-120xe78 > * { margin: 0px; margin-bottom: calc(407px / 2); margin-top: calc(407px / 2); } .framer-BHgFh .framer-lyxy0s > *, .framer-BHgFh .framer-1imfhtc > *, .framer-BHgFh .framer-m1fbmf > *, .framer-BHgFh .framer-1eg9k53 > *, .framer-BHgFh .framer-1koyc92 > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-BHgFh .framer-r090n2 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11394\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TXWFV9ZyK\":{\"layout\":[\"fixed\",\"fixed\"]},\"TCxwIpznq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"nXsDq32fG\":{\"pattern\":\":nXsDq32fG\",\"name\":\"hero\"},\"Iy2Z8a9th\":{\"pattern\":\":Iy2Z8a9th\",\"name\":\"particles-js\"},\"vQCApAD7g\":{\"pattern\":\":vQCApAD7g\",\"name\":\"features\"},\"E9y65g9rm\":{\"pattern\":\":E9y65g9rm\",\"name\":\"multiplicity\"},\"lfGdNb5nr\":{\"pattern\":\":lfGdNb5nr\",\"name\":\"awe\"},\"is5YV4Acl\":{\"pattern\":\":is5YV4Acl\",\"name\":\"play\"},\"wv0UOVVUd\":{\"pattern\":\":wv0UOVVUd\",\"name\":\"flow\"},\"wGhmsqhqc\":{\"pattern\":\":wGhmsqhqc\",\"name\":\"team\"},\"uy8Ipbpwo\":{\"pattern\":\":uy8Ipbpwo\",\"name\":\"particles-js\"},\"BgsUBvzv6\":{\"pattern\":\":BgsUBvzv6\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FramerBlYS76KAP=withCSS(Component,css,\"framer-BHgFh\");export default FramerBlYS76KAP;FramerBlYS76KAP.displayName=\"Page\";FramerBlYS76KAP.defaultProps={height:11394,width:1200};addFonts(FramerBlYS76KAP,[{explicitInter:true,fonts:[{family:\"Bruno Ace\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/brunoace/v5/WwkcxPa2E06x4trkOj_kNaoMWNMg3Q.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...SmoothScrollFonts,...VideoFonts,...EmailButtonCompatEmailButtonFonts,...ParticlesFonts,...ButtonFonts,...TextMaskFonts,...Slide1Fonts,...Slide2Fonts,...Slide3Fonts,...SlideshowFonts,...CompassFonts,...CordenateStarFonts,...RunningStrokeFonts,...RunningStrokeCopyFonts,...RunningStrokeCopy2Fonts,...RunningStrokeCopy3Fonts,...TMGridFonts,...InputFonts,...TypeformFonts,...RunningStroke1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBlYS76KAP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TXWFV9ZyK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TCxwIpznq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11394\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"nXsDq32fG\\\":{\\\"pattern\\\":\\\":nXsDq32fG\\\",\\\"name\\\":\\\"hero\\\"},\\\"Iy2Z8a9th\\\":{\\\"pattern\\\":\\\":Iy2Z8a9th\\\",\\\"name\\\":\\\"particles-js\\\"},\\\"vQCApAD7g\\\":{\\\"pattern\\\":\\\":vQCApAD7g\\\",\\\"name\\\":\\\"features\\\"},\\\"E9y65g9rm\\\":{\\\"pattern\\\":\\\":E9y65g9rm\\\",\\\"name\\\":\\\"multiplicity\\\"},\\\"lfGdNb5nr\\\":{\\\"pattern\\\":\\\":lfGdNb5nr\\\",\\\"name\\\":\\\"awe\\\"},\\\"is5YV4Acl\\\":{\\\"pattern\\\":\\\":is5YV4Acl\\\",\\\"name\\\":\\\"play\\\"},\\\"wv0UOVVUd\\\":{\\\"pattern\\\":\\\":wv0UOVVUd\\\",\\\"name\\\":\\\"flow\\\"},\\\"wGhmsqhqc\\\":{\\\"pattern\\\":\\\":wGhmsqhqc\\\",\\\"name\\\":\\\"team\\\"},\\\"uy8Ipbpwo\\\":{\\\"pattern\\\":\\\":uy8Ipbpwo\\\",\\\"name\\\":\\\"particles-js\\\"},\\\"BgsUBvzv6\\\":{\\\"pattern\\\":\\\":BgsUBvzv6\\\",\\\"name\\\":\\\"contact\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["TextMask", "props", "textContent", "image", "bgSizeType", "bgSize", "bgPosX", "bgPosY", "font", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "color", "fontSize", "fontFamily", "fontWeight", "fontStyle", "textAlign", "letterSpacing", "whiteSpace", "lineHeight", "lineHeightPixels", "lineHeightType", "backgroundSizeValue", "paddingValue", "p", "addPropertyControls", "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", "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", "i", "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", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "clamp", "e", "i", "Animate", "t", "s", "o", "n", "r", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "SmoothScrollComponent", "props", "intensity", "lenis", "pe", "ue", "error", "checkForStopScroll", "stopScrollElement", "htmlElement", "hasHiddenOverflow", "stopScrollObserver", "htmlStyleObserver", "allElements", "i", "element", "computedStyle", "window", "styleError", "Lenis", "raf", "time", "animationId", "anchorLinksData", "anchor", "isInternalLink", "hasHash", "anchorElement", "href", "decodedHref", "scrollMargin", "targetElement", "marginStyle", "targetError", "anchorError", "handleClick", "e", "handlers", "index", "p", "SmoothScroll", "withCSS", "SmoothScroll_Prod_default", "addPropertyControls", "ControlType", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "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", "link", "newTab", "smoothScroll", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "aw9hCqzCY", "FV9q84oBp", "qUWpVfITp", "FsJQLC6Zo", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterpvht5x", "args", "onMouseLeave117a7ye", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerAqpELfsT6", "withCSS", "AqpELfsT6_default", "addPropertyControls", "ControlType", "addFonts", "LottieFonts", "getFonts", "Lottie", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transition2", "animation", "transition3", "animation1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "playing", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "o51oPYi4B", "EtSm0Vdv4", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter87psh3", "args", "onMouseLeave17ukm1k", "onMouseEnter1qqa2dz", "onMouseEnterecnez8", "onMouseEnter10ep1um", "onMouseEntervw07fp", "onMouseEnterir3mjj", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerGlYLCIsqO", "withCSS", "GlYLCIsqO_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapo4iq6r", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramerH8AyTRi1L", "withCSS", "H8AyTRi1L_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "css", "FramerjF6O2OetP", "withCSS", "jF6O2OetP_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramermE92O2nsd", "withCSS", "mE92O2nsd_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "css", "Framerrr6TnnYrw", "withCSS", "rr6TnnYrw_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonFill", "buttonText", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ofLqZhEO8", "PPM8eZNfR", "Rb5OgUSWElRi7XplMx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearx4yxc4", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramersOOpYCiS5", "withCSS", "sOOpYCiS5_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonFill", "buttonText", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ofLqZhEO8", "PPM8eZNfR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearx4yxc4", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramersQnl2ddOb", "withCSS", "sQnl2ddOb_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "Frameru374cC128", "withCSS", "u374cC128_default", "addFonts", "v", "g", "b", "e", "r", "t", "x", "R", "C", "w", "I", "a", "re", "MotionConfigContext", "n", "o", "se", "p", "j", "W", "i", "s", "l", "L", "k", "Y", "useLocaleInfo", "c", "y", "P", "T", "D", "N", "S", "Q", "V", "E", "H", "useVariantState", "v", "A", "O", "M", "useActiveVariantCallback", "X", "_", "useOnVariantChange", "B", "pe", "J", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "withCSS", "FLATpECuM_default", "addPropertyControls", "ControlType", "addFonts", "InputFonts", "getFonts", "Input_default", "EmailButtonSuccessMessageFonts", "FLATpECuM_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "transition4", "transition5", "transition6", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "message", "siteBG", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Rnws_SKtt", "Rv8ilcyS8", "mCjPyaNQN", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapjtenh5", "args", "onMouseEnter1x68why", "onMouseLeave1lzvn1", "onAppear13s45hc", "onTap79qxwp", "onMouseEnterunp69z", "onMouseLeave1enbscm", "onAppear16embv4", "onSubmitizu9gt", "overlay", "paginationInfo", "I4djrsrOh1lzvn1", "onTap1lzvn1", "onTap1enbscm", "useOnVariantChange", "ref1", "pe", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "l", "ComponentViewportProvider", "AnimatePresence", "Floating", "css", "FramerVpxGNXEBH", "withCSS", "VpxGNXEBH_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonFill", "buttonText", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ofLqZhEO8", "PPM8eZNfR", "Rb5OgUSWElRi7XplMx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearx4yxc4", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerzukirTz23", "withCSS", "zukirTz23_default", "addPropertyControls", "ControlType", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "VideoFonts", "Video", "EmailButtonCompatEmailButtonFonts", "VpxGNXEBH_default", "ParticlesFonts", "ParticleWrapper", "ButtonFonts", "AqpELfsT6_default", "TextMaskFonts", "TextMask", "MotionDivWithFX", "withFX", "motion", "Slide1Fonts", "u374cC128_default", "Slide2Fonts", "H8AyTRi1L_default", "Slide3Fonts", "mE92O2nsd_default", "SlideshowFonts", "Slideshow", "CompassFonts", "jF6O2OetP_default", "CompassWithVariantAppearEffect", "withVariantAppearEffect", "CordenateStarFonts", "rr6TnnYrw_default", "CordenateStarWithVariantAppearEffect", "ContainerWithFX", "Container", "RichTextWithFX", "RichText2", "RunningStrokeFonts", "M51l6S8yV_default", "RunningStrokeCopyFonts", "sOOpYCiS5_default", "RunningStrokeCopy2Fonts", "sQnl2ddOb_default", "RunningStrokeCopy3Fonts", "zukirTz23_default", "TMGridFonts", "GlYLCIsqO_default", "InputFonts", "Input_default", "TypeformFonts", "Typeform", "RunningStroke1Fonts", "lRi7XplMx_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "addImageAlt", "image", "alt", "animation4", "transition3", "transition4", "animation5", "animation6", "animation7", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "router", "useRouter", "elementId1", "ref2", "ref3", "elementId2", "ref4", "ref5", "ref6", "ref7", "elementId3", "elementId4", "elementId5", "elementId6", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "x", "Link", "css", "FramerBlYS76KAP", "withCSS", "BlYS76KAP_default", "addFonts", "__FramerMetadata__"]
}
