import { __esmMin as e } from "rolldown-runtime.BAw5_7tg.mjs"; import { Y as t, ae as n, init_jsx_runtime as r, init_npm_react_18_2 as i, init_ssg_sandbox_shims as a, l as o, npm_react_18_2_exports as s, p as c, pe as l, re as u, se as d, u as f, ue as p, window as m, x as h, ye as g } from "react.CEOW7m7F.mjs"; import { LayoutGroup as _, MotionConfigContext as v, init_framer_motion_5EXT2AMG as y, motion as b } from "motion.QyqgvDba.mjs"; import { ComponentViewportProvider as x, ControlType as S, CycleVariantState as C, Image2 as w, Link as T, RenderTarget as E, ResolveLinks as D, RichText as ee, SVG as te, SmartComponentScopedContainer as O, addFonts as k, addPropertyControls as A, cx as j, getFonts as M, getLoadingLazyAtYPosition as N, getPropertyControls as P, init_framer_JYARJRD7 as F, useActiveVariantCallback as ne, useComponentViewport as I, useLocaleInfo as L, useOnVariantChange as re, useRouter as R, useVariantState as ie, withCSS as z, withFX as ae, withOptimizedAppearEffect as oe } from "framer.CxIEO1d3.mjs"; function B() { return ( (B = Object.assign ? Object.assign.bind() : function (e) { for (var t = 1; t < arguments.length; t++) { var n = arguments[t]; for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); } return e; }), B.apply(this, arguments) ); } function V(e, t, n) { return Math.max(e, Math.min(t, n)); } var se, ce, H, U, W, le = e(() => { a(), (se = class { advance(e) { var t; if (!this.isRunning) return; let n = !1; if (this.lerp) (this.value = ((r = this.value), (i = this.to), (1 - (a = 1 - Math.exp(-60 * this.lerp * e))) * r + a * i)), Math.round(this.value) === this.to && ((this.value = this.to), (n = !0)); else { this.currentTime += e; let t = V(0, this.currentTime / this.duration, 1); n = t >= 1; let r = n ? 1 : this.easing(t); this.value = this.from + (this.to - this.from) * r; } var r, i, a; (t = this.onUpdate) == null || t.call(this, this.value, n), n && this.stop(); } stop() { this.isRunning = !1; } fromTo(e, t, { lerp: n = 0.1, duration: r = 1, easing: i = (e) => e, onStart: a, onUpdate: o }) { (this.from = this.value = e), (this.to = t), (this.lerp = n), (this.duration = r), (this.easing = i), (this.currentTime = 0), (this.isRunning = !0), a?.(), (this.onUpdate = o); } }), (ce = class { constructor({ wrapper: e, content: t, autoResize: n = !0 } = {}) { if ( ((this.resize = () => { this.onWrapperResize(), this.onContentResize(); }), (this.onWrapperResize = () => { this.wrapper === m ? ((this.width = m.innerWidth), (this.height = m.innerHeight)) : ((this.width = this.wrapper.clientWidth), (this.height = this.wrapper.clientHeight)); }), (this.onContentResize = () => { (this.scrollHeight = this.content.scrollHeight), (this.scrollWidth = this.content.scrollWidth); }), (this.wrapper = e), (this.content = t), n) ) { let e = (function (e, t) { let n; return function () { let t = arguments, r = this; clearTimeout(n), (n = setTimeout(function () { e.apply(r, t); }, 250)); }; })(this.resize); this.wrapper !== m && ((this.wrapperResizeObserver = new ResizeObserver(e)), this.wrapperResizeObserver.observe(this.wrapper)), (this.contentResizeObserver = new ResizeObserver(e)), this.contentResizeObserver.observe(this.content); } this.resize(); } destroy() { var e, t; (e = this.wrapperResizeObserver) == null || e.disconnect(), (t = this.contentResizeObserver) == null || t.disconnect(); } get limit() { return { x: this.scrollWidth - this.width, y: this.scrollHeight - this.height }; } }), (H = class { constructor() { this.events = {}; } emit(e, ...t) { let n = this.events[e] || []; for (let e = 0, r = n.length; e < r; e++) n[e](...t); } on(e, t) { var n; return ( ((n = this.events[e]) != null && n.push(t)) || (this.events[e] = [t]), () => { var n; this.events[e] = (n = this.events[e])?.filter((e) => t !== e); } ); } off(e, t) { var n; this.events[e] = (n = this.events[e])?.filter((e) => t !== e); } destroy() { this.events = {}; } }), (U = class { constructor(e, { wheelMultiplier: t = 1, touchMultiplier: n = 2, normalizeWheel: r = !1 }) { (this.onTouchStart = (e) => { let { clientX: t, clientY: n } = e.targetTouches ? e.targetTouches[0] : e; (this.touchStart.x = t), (this.touchStart.y = n), (this.lastDelta = { x: 0, y: 0 }); }), (this.onTouchMove = (e) => { let { clientX: t, clientY: n } = e.targetTouches ? e.targetTouches[0] : e, r = -(t - this.touchStart.x) * this.touchMultiplier, i = -(n - this.touchStart.y) * this.touchMultiplier; (this.touchStart.x = t), (this.touchStart.y = n), (this.lastDelta = { x: r, y: i }), this.emitter.emit(`scroll`, { deltaX: r, deltaY: i, event: e }); }), (this.onTouchEnd = (e) => { this.emitter.emit(`scroll`, { deltaX: this.lastDelta.x, deltaY: this.lastDelta.y, event: e }); }), (this.onWheel = (e) => { let { deltaX: t, deltaY: n } = e; this.normalizeWheel && ((t = V(-100, t, 100)), (n = V(-100, n, 100))), (t *= this.wheelMultiplier), (n *= this.wheelMultiplier), this.emitter.emit(`scroll`, { deltaX: t, deltaY: n, event: e }); }), (this.element = e), (this.wheelMultiplier = t), (this.touchMultiplier = n), (this.normalizeWheel = r), (this.touchStart = { x: null, y: null }), (this.emitter = new H()), 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(e, t) { return this.emitter.on(e, t); } destroy() { this.emitter.destroy(), 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 }); } }), (W = class { constructor({ wrapper: e = m, content: t = document.documentElement, wheelEventsTarget: n = e, eventsTarget: r = n, smoothWheel: i = !0, smoothTouch: a = !1, syncTouch: o = !1, syncTouchLerp: s = 0.1, __iosNoInertiaSyncTouchLerp: c = 0.4, touchInertiaMultiplier: l = 35, duration: u, easing: d = (e) => Math.min(1, 1.001 - 2 ** (-10 * e)), lerp: f = !u && 0.1, infinite: p = !1, orientation: h = `vertical`, gestureOrientation: g = `vertical`, touchMultiplier: _ = 1, wheelMultiplier: v = 1, normalizeWheel: y = !1, autoResize: b = !0 } = {}) { (this.onVirtualScroll = ({ deltaX: e, deltaY: t, event: n }) => { if (n.ctrlKey) return; let r = n.type.includes(`touch`), i = n.type.includes(`wheel`); if ( (this.options.gestureOrientation === `both` && e === 0 && t === 0) || (this.options.gestureOrientation === `vertical` && t === 0) || (this.options.gestureOrientation === `horizontal` && e === 0) || (r && this.options.gestureOrientation === `vertical` && this.scroll === 0 && !this.options.infinite && t <= 0) ) return; let a = n.composedPath(); if ( ((a = a.slice(0, a.indexOf(this.rootElement))), a.find((e) => { var t; return ( (e.hasAttribute == null ? void 0 : e.hasAttribute(`data-lenis-prevent`)) || (r && (e.hasAttribute == null ? void 0 : e.hasAttribute(`data-lenis-prevent-touch`))) || (i && (e.hasAttribute == null ? void 0 : e.hasAttribute(`data-lenis-prevent-wheel`))) || (t = e.classList)?.contains(`lenis`) ); })) ) return; if (this.isStopped || this.isLocked) return void n.preventDefault(); if ( ((this.isSmooth = ((this.options.smoothTouch || this.options.syncTouch) && r) || (this.options.smoothWheel && i)), !this.isSmooth) ) return (this.isScrolling = !1), void this.animate.stop(); n.preventDefault(); let o = t; this.options.gestureOrientation === `both` ? (o = Math.abs(t) > Math.abs(e) ? t : e) : this.options.gestureOrientation === `horizontal` && (o = e); let s = r && this.options.syncTouch, c = r && n.type === `touchend` && Math.abs(o) > 1; c && (o = this.velocity * this.options.touchInertiaMultiplier), this.scrollTo( this.targetScroll + o, B( { programmatic: !1 }, s && { lerp: c ? this.syncTouchLerp : this.options.__iosNoInertiaSyncTouchLerp } ) ); }), (this.onNativeScroll = () => { if (!this.__preventNextScrollEvent && !this.isScrolling) { let e = this.animatedScroll; (this.animatedScroll = this.targetScroll = this.actualScroll), (this.velocity = 0), (this.direction = Math.sign(this.animatedScroll - e)), this.emit(); } }), (m.lenisVersion = `1.0.29`), (e !== document.documentElement && e !== document.body) || (e = m), (this.options = { wrapper: e, content: t, wheelEventsTarget: n, eventsTarget: r, smoothWheel: i, smoothTouch: a, syncTouch: o, syncTouchLerp: s, __iosNoInertiaSyncTouchLerp: c, touchInertiaMultiplier: l, duration: u, easing: d, lerp: f, infinite: p, gestureOrientation: g, orientation: h, touchMultiplier: _, wheelMultiplier: v, normalizeWheel: y, autoResize: b }), (this.animate = new se()), (this.emitter = new H()), (this.dimensions = new ce({ wrapper: e, content: t, autoResize: b })), this.toggleClass(`lenis`, !0), (this.velocity = 0), (this.isLocked = !1), (this.isStopped = !1), (this.isSmooth = o || i || a), (this.isScrolling = !1), (this.targetScroll = this.animatedScroll = this.actualScroll), this.options.wrapper.addEventListener(`scroll`, this.onNativeScroll, { passive: !1 }), (this.virtualScroll = new U(r, { touchMultiplier: _, wheelMultiplier: v, normalizeWheel: y })), this.virtualScroll.on(`scroll`, this.onVirtualScroll); } destroy() { this.emitter.destroy(), this.options.wrapper.removeEventListener(`scroll`, this.onNativeScroll, { passive: !1 }), this.virtualScroll.destroy(), this.dimensions.destroy(), this.toggleClass(`lenis`, !1), this.toggleClass(`lenis-smooth`, !1), this.toggleClass(`lenis-scrolling`, !1), this.toggleClass(`lenis-stopped`, !1), this.toggleClass(`lenis-locked`, !1); } on(e, t) { return this.emitter.on(e, t); } off(e, t) { return this.emitter.off(e, t); } setScroll(e) { this.isHorizontal ? (this.rootElement.scrollLeft = e) : (this.rootElement.scrollTop = e); } resize() { this.dimensions.resize(); } emit() { this.emitter.emit(`scroll`, this); } reset() { (this.isLocked = !1), (this.isScrolling = !1), (this.animatedScroll = this.targetScroll = this.actualScroll), (this.velocity = 0), this.animate.stop(); } start() { (this.isStopped = !1), this.reset(); } stop() { (this.isStopped = !0), this.animate.stop(), this.reset(); } raf(e) { let t = e - (this.time || e); (this.time = e), this.animate.advance(0.001 * t); } scrollTo( e, { offset: t = 0, immediate: n = !1, lock: r = !1, duration: i = this.options.duration, easing: a = this.options.easing, lerp: o = !i && this.options.lerp, onComplete: s = null, force: c = !1, programmatic: l = !0 } = {} ) { if ((!this.isStopped && !this.isLocked) || c) { if ([`top`, `left`, `start`].includes(e)) e = 0; else if ([`bottom`, `right`, `end`].includes(e)) e = this.limit; else { var u; let n; if ( (typeof e == `string` ? (n = document.querySelector(e)) : (u = e) != null && u.nodeType && (n = e), n) ) { if (this.options.wrapper !== m) { let e = this.options.wrapper.getBoundingClientRect(); t -= this.isHorizontal ? e.left : e.top; } let r = n.getBoundingClientRect(); e = (this.isHorizontal ? r.left : r.top) + this.animatedScroll; } } if (typeof e == `number`) { if ( ((e += t), (e = Math.round(e)), this.options.infinite ? l && (this.targetScroll = this.animatedScroll = this.scroll) : (e = V(0, e, this.limit)), n) ) return ( (this.animatedScroll = this.targetScroll = e), this.setScroll(this.scroll), this.reset(), void (s == null || s(this)) ); if (!l) { if (e === this.targetScroll) return; this.targetScroll = e; } this.animate.fromTo(this.animatedScroll, e, { duration: i, easing: a, lerp: o, onStart: () => { r && (this.isLocked = !0), (this.isScrolling = !0); }, onUpdate: (e, t) => { (this.isScrolling = !0), (this.velocity = e - this.animatedScroll), (this.direction = Math.sign(this.velocity)), (this.animatedScroll = e), this.setScroll(this.scroll), l && (this.targetScroll = e), t || this.emit(), t && (this.reset(), this.emit(), s?.(this), (this.__preventNextScrollEvent = !0), requestAnimationFrame(() => { delete this.__preventNextScrollEvent; })); } }); } } } get rootElement() { return this.options.wrapper === m ? document.documentElement : this.options.wrapper; } get limit() { return this.dimensions.limit[this.isHorizontal ? `x` : `y`]; } get isHorizontal() { return this.options.orientation === `horizontal`; } get actualScroll() { return this.isHorizontal ? this.rootElement.scrollLeft : this.rootElement.scrollTop; } get scroll() { return this.options.infinite ? ((this.animatedScroll % (e = this.limit)) + e) % e : this.animatedScroll; var e; } get progress() { return this.limit === 0 ? 1 : this.scroll / this.limit; } get isSmooth() { return this.__isSmooth; } set isSmooth(e) { this.__isSmooth !== e && ((this.__isSmooth = e), this.toggleClass(`lenis-smooth`, e)); } get isScrolling() { return this.__isScrolling; } set isScrolling(e) { this.__isScrolling !== e && ((this.__isScrolling = e), this.toggleClass(`lenis-scrolling`, e)); } get isStopped() { return this.__isStopped; } set isStopped(e) { this.__isStopped !== e && ((this.__isStopped = e), this.toggleClass(`lenis-stopped`, e)); } get isLocked() { return this.__isLocked; } set isLocked(e) { this.__isLocked !== e && ((this.__isLocked = e), this.toggleClass(`lenis-locked`, e)); } get className() { let e = `lenis`; return ( this.isStopped && (e += ` lenis-stopped`), this.isLocked && (e += ` lenis-locked`), this.isScrolling && (e += ` lenis-scrolling`), this.isSmooth && (e += ` lenis-smooth`), e ); } toggleClass(e, t) { this.rootElement.classList.toggle(e, t), this.emitter.emit(`className change`, this); } }); }); function ue(e) { let { intensity: t } = e, n = l(null); return ( p(() => { n.current && n.current.scrollTo(0, { immediate: !0 }); }, [n]), p(() => { let e = document.getElementById(`overlay`); if (e) { let t = (t, n) => { for (let n of t) if (n.type === `childList`) { let t = e.children.length > 0; if (t) { let t = document.documentElement, n = m.getComputedStyle(t), r = n.getPropertyValue(`overflow`) === `hidden`; r && e.setAttribute(`data-lenis-prevent`, `true`); } } }, n = new MutationObserver(t), r = { childList: !0 }; return n.observe(e, r), () => n.disconnect(); } }, []), p(() => { let e = document.getElementsByTagName(`*`); for (let t = 0; t < e.length; t++) { let n = e[t], r = m.getComputedStyle(n); r.getPropertyValue(`overflow`) === `auto` && n.setAttribute(`data-lenis-prevent`, `true`); } }, []), p(() => { n.current = new W({ duration: t / 10 }); let e = (t) => { n.current && (n.current.raf(t), requestAnimationFrame(e)); }; return ( requestAnimationFrame(e), () => { n.current &&= (n.current.destroy(), null); } ); }, []), p(() => { let e = document.createElement(`style`); return ( (e.textContent = ` 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; } `), document.head.appendChild(e), () => { document.head.removeChild(e); } ); }, []), c(o, {}) ); } var de = e(() => { a(), r(), F(), le(), i(), (ue.displayName = `Smooth Scroll`), A(ue, { intensity: { title: `Intensity`, type: S.Number, defaultValue: 10 } }); }); function fe(e, ...t) { let n = {}; return t?.forEach((t) => t && Object.assign(n, e[t])), n; } var G, pe, me, he, ge, _e, ve, ye, be, xe, Se, K, Ce = e(() => { r(), F(), y(), i(), (G = [`bxTXiI6jL`, `QQ4h4uQTZ`]), (pe = `framer-mtC5S`), (me = { bxTXiI6jL: `framer-v-a7c56l`, QQ4h4uQTZ: `framer-v-11r8bf` }), (he = { delay: 0, duration: 2, ease: [0, 0, 1, 1], type: `tween` }), (ge = ({ value: e, children: t }) => { let n = u(v), r = e ?? n.transition, i = d(() => ({ ...n, transition: r }), [JSON.stringify(r)]); return c(v.Provider, { value: i, children: t }); }), (_e = b(h)), (ve = { "Variant 1": `bxTXiI6jL`, "Variant 2": `QQ4h4uQTZ` }), (ye = ({ height: e, id: t, width: n, ...r }) => { var i, a; return { ...r, variant: (a = (i = ve[r.variant]) ?? r.variant) ?? `bxTXiI6jL` }; }), (be = (e, t) => t.join(`-`) + e.layoutDependency), (xe = t(function (e, t) { let { activeLocale: r, setLocale: i } = L(), { style: a, className: o, layoutId: s, variant: u, ...d } = ye(e), { baseVariant: f, classNames: p, gestureVariant: m, setGestureState: h, setVariant: g, variants: v } = ie({ cycleOrder: G, defaultVariant: `bxTXiI6jL`, variant: u, variantClassNames: me }), y = be(e, v), { activeVariantCallback: x, delay: S } = ne(f), w = x(async (...e) => { await S(() => g(C), 2e3); }); re(f, { default: w }); let T = l(null), E = n(), D = []; return ( I(), c(_, { id: s ?? E, children: c(_e, { animate: v, initial: !1, children: c(ge, { value: he, children: c(b.div, { ...d, className: j(pe, ...D, `framer-a7c56l`, o, p), "data-framer-name": `Variant 1`, "data-highlight": !0, layoutDependency: y, layoutId: `bxTXiI6jL`, onHoverEnd: () => h({ isHovered: !1 }), onHoverStart: () => h({ isHovered: !0 }), onTap: () => h({ isPressed: !1 }), onTapCancel: () => h({ isPressed: !1 }), onTapStart: () => h({ isPressed: !0 }), ref: t ?? T, style: { ...a }, ...fe({ QQ4h4uQTZ: { "data-framer-name": `Variant 2` } }, f, m), children: c(b.div, { className: `framer-1ov2rq1`, layoutDependency: y, layoutId: `LRkjYYLo7`, style: { backgroundColor: `var(--token-54774cac-183c-45df-a96f-ed3a6b3baaa9, rgb(26, 255, 117))`, borderBottomLeftRadius: 40, borderBottomRightRadius: 40, borderTopLeftRadius: 40, borderTopRightRadius: 40, boxShadow: `0px 0px 12px 0px rgba(25, 255, 117, 0.8)`, opacity: 1 }, variants: { QQ4h4uQTZ: { opacity: 0.3 } } }) }) }) }) }) ); })), (Se = [ `@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }`, `.framer-mtC5S.framer-qoogqf, .framer-mtC5S .framer-qoogqf { display: block; }`, `.framer-mtC5S.framer-a7c56l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 12px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 12px; }`, `.framer-mtC5S .framer-1ov2rq1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: visible; position: relative; width: 8px; }`, `@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mtC5S.framer-a7c56l { gap: 0px; } .framer-mtC5S.framer-a7c56l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mtC5S.framer-a7c56l > :first-child { margin-left: 0px; } .framer-mtC5S.framer-a7c56l > :last-child { margin-right: 0px; } }`, `.framer-mtC5S.framer-v-11r8bf.framer-a7c56l { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 12px); }`, `.framer-mtC5S.framer-v-11r8bf .framer-1ov2rq1 { height: var(--framer-aspect-ratio-supported, 6px); width: 6px; }` ]), (K = z(xe, Se, `framer-mtC5S`)), (K.displayName = `Elements/Activity Indicator`), (K.defaultProps = { height: 12, width: 12 }), A(K, { variant: { options: [`bxTXiI6jL`, `QQ4h4uQTZ`], optionTitles: [`Variant 1`, `Variant 2`], title: `Variant`, type: S.Enum } }), k(K, [{ explicitInter: !0, fonts: [] }], { supportsExplicitInterCodegen: !0 }); }); function we(e, ...t) { let n = {}; return t?.forEach((t) => t && Object.assign(n, e[t])), n; } var Te, Ee, De, Oe, ke, Ae, je, Me, Ne, Pe, Fe, Ie, Le, q, Re = e(() => { r(), F(), y(), i(), Ce(), (Te = M(K)), (Ee = [`aRB94otF7`, `DW9fRBOfw`, `wK282BynI`]), (De = `framer-S0gZP`), (Oe = { aRB94otF7: `framer-v-1n4ul8v`, DW9fRBOfw: `framer-v-1hohbha`, wK282BynI: `framer-v-zyeryh` }), (ke = (e) => { if (typeof e != `number`) return e; if (Number.isFinite(e)) return Math.max(0, e) + `px`; }), (Ae = { damping: 60, delay: 0, mass: 1, stiffness: 500, type: `spring` }), (je = ({ value: e, children: t }) => { let n = u(v), r = e ?? n.transition, i = d(() => ({ ...n, transition: r }), [JSON.stringify(r)]); return c(v.Provider, { value: i, children: t }); }), (Me = b.create(h)), (Ne = { "WITH SERIF FONT": `wK282BynI`, Large: `aRB94otF7`, Small: `DW9fRBOfw` }), (Pe = ({ background: e, gap: t, height: n, id: r, logo: i, pulse: a, text: o, textColor: s, width: c, ...l }) => ({ ...l, crA6wBj3k: a ?? l.crA6wBj3k, dI2V912ba: e ?? l.dI2V912ba ?? `rgba(13, 13, 13, 0.4)`, gpaDS0xo1: s ?? l.gpaDS0xo1 ?? `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, kdP_WncMn: i ?? l.kdP_WncMn, nQWOpC8zj: t ?? l.nQWOpC8zj ?? 8, variant: Ne[l.variant] ?? l.variant ?? `aRB94otF7`, YbsaeEF4R: o ?? l.YbsaeEF4R ?? `3 spots left` })), (Fe = (e, t) => (e.layoutDependency ? t.join(`-`) + e.layoutDependency : t.join(`-`))), (Ie = t(function (e, t) { let r = l(null), i = t ?? r, a = n(), { activeLocale: o, setLocale: s } = L(), u = I(), { style: d, className: p, layoutId: m, variant: g, kdP_WncMn: v, YbsaeEF4R: y, crA6wBj3k: S, dI2V912ba: C, nQWOpC8zj: T, gpaDS0xo1: E, ...D } = Pe(e), { baseVariant: te, classNames: k, clearLoadingGesture: A, gestureHandlers: M, gestureVariant: P, isLoading: F, setGestureState: ne, setVariant: re, variants: R } = ie({ cycleOrder: Ee, defaultVariant: `aRB94otF7`, ref: i, variant: g, variantClassNames: Oe }), z = Fe(e, R), ae = [], oe = j(De, ...ae); return c(_, { id: m ?? a, children: c(Me, { animate: R, initial: !1, children: c(je, { value: Ae, children: f(b.div, { ...D, ...M, className: j(oe, `framer-1n4ul8v`, p, k), "data-border": !0, "data-framer-name": `Large`, layoutDependency: z, layoutId: `aRB94otF7`, ref: i, style: { "--1sf44r2": ke(T), "--border-bottom-width": `1px`, "--border-color": `rgba(255, 255, 255, 0.1)`, "--border-left-width": `1px`, "--border-right-width": `1px`, "--border-style": `solid`, "--border-top-width": `1px`, backdropFilter: `blur(10px)`, backgroundColor: C, borderBottomLeftRadius: 50, borderBottomRightRadius: 50, borderTopLeftRadius: 50, borderTopRightRadius: 50, WebkitBackdropFilter: `blur(10px)`, ...d }, ...we( { DW9fRBOfw: { "data-framer-name": `Small` }, wK282BynI: { "data-framer-name": `WITH SERIF FONT` } }, te, P ), children: [ S && c(x, { height: 8, width: `8px`, y: (u?.y || 0) + (12 + ((u?.height || 40) - 24 - 8) / 2), ...we( { DW9fRBOfw: { y: (u?.y || 0) + (8 + ((u?.height || 30) - 16 - 8) / 2) }, wK282BynI: { y: (u?.y || 0) + (12 + ((u?.height || 42) - 24 - 8) / 2) } }, te, P ), children: c(O, { className: `framer-a5ly3g-container`, layoutDependency: z, layoutId: `MCD2Qwpir-container`, nodeId: `MCD2Qwpir`, rendersWithMotion: !0, scopeId: `F5zSwZv4k`, children: c(K, { height: `100%`, id: `MCD2Qwpir`, layoutId: `MCD2Qwpir`, style: { height: `100%`, width: `100%` }, variant: `bxTXiI6jL`, width: `100%` }) }) }), v && c(w, { background: { alt: ``, fit: `fill`, loading: N((u?.y || 0) + (12 + ((u?.height || 40) - 24 - 15) / 2)), pixelHeight: 268, pixelWidth: 268, src: `https://framerusercontent.com/images/bxO8y4nGiRcFEq76iyX2betJP0.png?width=268&height=268` }, className: `framer-15qssfl`, "data-framer-name": `Logo`, layoutDependency: z, layoutId: `xC7xNGomG`, ...we( { DW9fRBOfw: { background: { alt: ``, fit: `fill`, loading: N( (u?.y || 0) + (8 + ((u?.height || 30) - 16 - 15) / 2) ), pixelHeight: 268, pixelWidth: 268, src: `https://framerusercontent.com/images/bxO8y4nGiRcFEq76iyX2betJP0.png?width=268&height=268` } }, wK282BynI: { background: { alt: ``, fit: `fill`, loading: N( (u?.y || 0) + (12 + ((u?.height || 42) - 24 - 15) / 2) ), pixelHeight: 268, pixelWidth: 268, src: `https://framerusercontent.com/images/bxO8y4nGiRcFEq76iyX2betJP0.png?width=268&height=268` } } }, te, P ) }), c(ee, { __fromCanvasComponent: !0, children: c(h, { children: c(b.p, { style: { "--font-selector": `RlM7U2F0b3NoaS1ib2xk`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-weight": `700`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `1em`, "--framer-text-alignment": `center`, "--framer-text-color": `var(--extracted-r6o4lv, var(--variable-reference-gpaDS0xo1-F5zSwZv4k))` }, children: `3 spots left` }) }), className: `framer-eexkeb`, fonts: [`FS;Satoshi-bold`], layoutDependency: z, layoutId: `YYXlrmruQ`, style: { "--extracted-r6o4lv": `var(--variable-reference-gpaDS0xo1-F5zSwZv4k)`, "--framer-link-text-color": `rgb(0, 153, 255)`, "--framer-link-text-decoration": `underline`, "--variable-reference-gpaDS0xo1-F5zSwZv4k": E }, text: y, verticalAlignment: `top`, withExternalLayout: !0, ...we( { DW9fRBOfw: { children: c(h, { children: c(b.p, { style: { "--font-selector": `RlM7U2F0b3NoaS1ib2xk`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-size": `14px`, "--framer-font-weight": `700`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `1em`, "--framer-text-alignment": `center`, "--framer-text-color": `var(--extracted-r6o4lv, var(--variable-reference-gpaDS0xo1-F5zSwZv4k))` }, children: `3 spots left` }) }) }, wK282BynI: { children: c(h, { children: c(b.p, { style: { "--font-selector": `R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy`, "--framer-font-family": `"Instrument Serif", "Instrument Serif Placeholder", serif`, "--framer-font-size": `18px`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `1em`, "--framer-text-alignment": `center`, "--framer-text-color": `var(--extracted-r6o4lv, var(--variable-reference-gpaDS0xo1-F5zSwZv4k))` }, children: `3 spots left` }) }), fonts: [`GF;Instrument Serif-regular`] } }, te, P ) }) ] }) }) }) }); })), (Le = [ `@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }`, `.framer-S0gZP.framer-2uenee, .framer-S0gZP .framer-2uenee { display: block; }`, `.framer-S0gZP.framer-1n4ul8v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: var(--1sf44r2); height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }`, `.framer-S0gZP .framer-a5ly3g-container { flex: none; height: 8px; position: relative; width: 8px; }`, `.framer-S0gZP .framer-15qssfl { flex: none; height: 15px; position: relative; width: 15px; }`, `.framer-S0gZP .framer-eexkeb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }`, `.framer-S0gZP.framer-v-1hohbha.framer-1n4ul8v { padding: 8px 12px 8px 12px; }`, `.framer-S0gZP[data-border="true"]::after, .framer-S0gZP [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; }` ]), (q = z(Ie, Le, `framer-S0gZP`)), (q.displayName = `Elements/Badge`), (q.defaultProps = { height: 40, width: 110 }), A(q, { variant: { options: [`aRB94otF7`, `DW9fRBOfw`, `wK282BynI`], optionTitles: [`Large`, `Small`, `WITH SERIF FONT`], title: `Variant`, type: S.Enum }, kdP_WncMn: { defaultValue: !1, description: ``, title: `Logo`, type: S.Boolean }, YbsaeEF4R: { defaultValue: `3 spots left`, displayTextArea: !1, title: `Text`, type: S.String }, crA6wBj3k: { defaultValue: !1, title: `Pulse`, type: S.Boolean }, dI2V912ba: { defaultValue: `rgba(13, 13, 13, 0.4)`, title: `Background`, type: S.Color }, nQWOpC8zj: { defaultValue: 8, min: 0, title: `Gap`, type: S.Number }, gpaDS0xo1: { defaultValue: `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, title: `text color`, type: S.Color } }), k( q, [ { explicitInter: !0, fonts: [ { family: `Satoshi`, source: `fontshare`, style: `normal`, url: `https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2`, weight: `700` }, { family: `Instrument Serif`, source: `google`, style: `normal`, url: `https://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zcZj1bIkNo.woff2`, weight: `400` } ] }, ...Te ], { supportsExplicitInterCodegen: !0 } ); }), ze, Be, Ve, He = e(() => { r(), i(), (ze = { width: `100%`, height: `100%`, display: `flex`, justifyContent: `center`, alignItems: `center` }), (Be = { ...ze, borderRadius: 6, background: `rgba(149, 149, 149, 0.1)`, border: `1px dashed rgba(149, 149, 149, 0.15)`, color: `#a5a5a5`, flexDirection: `column` }), (Ve = t((e, t) => c(`div`, { style: Be, ref: t }))); }), Ue, We, Ge = e(() => { We = (e) => { if (!Ue) { let t = new Map([ [ `bold`, e.createElement( e.Fragment, null, e.createElement(`path`, { d: `M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z` }) ) ], [ `duotone`, e.createElement( e.Fragment, null, e.createElement(`path`, { d: `M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z`, opacity: `0.2` }), e.createElement(`path`, { d: `M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z` }) ) ], [ `fill`, e.createElement( e.Fragment, null, e.createElement(`path`, { d: `M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z` }) ) ], [ `light`, e.createElement( e.Fragment, null, e.createElement(`path`, { d: `M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z` }) ) ], [ `regular`, e.createElement( e.Fragment, null, e.createElement(`path`, { d: `M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z` }) ) ], [ `thin`, e.createElement( e.Fragment, null, e.createElement(`path`, { d: `M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z` }) ) ] ]), n = e.forwardRef((n, r) => e.createElement(`g`, { ref: r, ...n }, t.get(n.weight))); (n.displayName = `House`), (Ue = n); } return Ue; }; }); function Ke(e, t, n = ``, r, i) { let a = d(() => { if (n == null || n?.length === 0) return null; let t = n.toLowerCase().replace(/-|\s/g, ``); var r; let a = (r = i[t]) ?? Je(e, t); return a; }, [r, n]), o = t ? r : a; return o; } var qe, Je, Ye = e(() => { i(), F(), (qe = { onClick: { type: S.EventHandler }, onMouseDown: { type: S.EventHandler }, onMouseUp: { type: S.EventHandler }, onMouseEnter: { type: S.EventHandler }, onMouseLeave: { type: S.EventHandler } }), (Je = (e, t) => e.find((e) => e.toLowerCase().includes(t))); }); function J(e) { let { color: t, selectByList: n, iconSearch: r, iconSelection: i, onClick: a, onMouseDown: o, onMouseUp: u, onMouseEnter: d, onMouseLeave: f, weight: m, mirrored: h } = e, _ = l(!1), v = Ke(Xe, n, r, i, $e), [y, x] = g(v === `Home` ? We(s) : null); async function S() { try { let e = `${Ze}${v}.js@0.0.53`, t = await import(e); _.current && x(t.default(s)); } catch { _.current && x(null); } } p( () => ( (_.current = !0), S(), () => { _.current = !1; } ), [v] ); let C = E.current() === E.canvas, w = C ? c(Ve, {}) : null; return c(b.div, { style: { display: `contents` }, onClick: a, onMouseEnter: d, onMouseLeave: f, onMouseDown: o, onMouseUp: u, children: y ? c(`svg`, { xmlns: `http://www.w3.org/2000/svg`, viewBox: `0 0 256 256`, style: { userSelect: `none`, width: `100%`, height: `100%`, display: `inline-block`, fill: t, color: t, flexShrink: 0, transform: h ? `scale(-1, 1)` : void 0 }, focusable: `false`, color: t, children: c(y, { color: t, weight: m }) }) : w }); } var Xe, Ze, Qe, $e, et = e(() => { r(), i(), F(), y(), He(), Ge(), Ye(), (Xe = `AddressBook.AirTrafficControl.Airplane.AirplaneInFlight.AirplaneLanding.AirplaneTakeoff.AirplaneTilt.Airplay.Alarm.Alien.AlignBottom.AlignBottomSimple.AlignCenterVertical.AlignLeft.AlignLeftSimple.AlignRight.AlignRightSimple.AlignTop.AlignTopSimple.AmazonLogo.Anchor.AnchorSimple.AndroidLogo.AngularLogo.Aperture.AppStoreLogo.AppWindow.AppleLogo.ApplePodcastsLogo.Archive.ArchiveBox.ArchiveTray.Armchair.ArrowArcLeft.ArrowArcRight.ArrowBendDownLeft.ArrowBendDownRight.ArrowBendLeftDown.ArrowBendLeftUp.ArrowBendRightDown.ArrowBendRightUp.ArrowBendUpLeft.ArrowBendUpRight.ArrowCircleDown.ArrowCircleDownLeft.ArrowCircleDownRight.ArrowCircleLeft.ArrowCircleRight.ArrowCircleUp.ArrowCircleUpLeft.ArrowCircleUpRight.ArrowClockwise.ArrowDown.ArrowDownLeft.ArrowDownRight.ArrowElbowDownLeft.ArrowElbowDownRight.ArrowElbowLeft.ArrowElbowLeftDown.ArrowElbowLeftUp.ArrowElbowRight.ArrowElbowRightDown.ArrowElbowRightUp.ArrowElbowUpLeft.ArrowElbowUpRight.ArrowFatDown.ArrowFatLeft.ArrowFatLineDown.ArrowFatLineLeft.ArrowFatLineRight.ArrowFatLineUp.ArrowFatLinesDown.ArrowFatLinesLeft.ArrowFatLinesRight.ArrowFatLinesUp.ArrowFatRight.ArrowFatUp.ArrowLeft.ArrowLineDown.ArrowLineDownLeft.ArrowLineDownRight.ArrowLineLeft.ArrowLineRight.ArrowLineUp.ArrowLineUpLeft.ArrowLineUpRight.ArrowRight.ArrowSquareDown.ArrowSquareDownLeft.ArrowSquareDownRight.ArrowSquareIn.ArrowSquareLeft.ArrowSquareOut.ArrowSquareRight.ArrowSquareUp.ArrowSquareUpLeft.ArrowSquareUpRight.ArrowUDownLeft.ArrowUDownRight.ArrowULeftDown.ArrowULeftUp.ArrowURightDown.ArrowURightUp.ArrowUUpLeft.ArrowUUpRight.ArrowUp.ArrowUpLeft.ArrowUpRight.ArrowsClockwise.ArrowsDownUp.ArrowsHorizontal.ArrowsIn.ArrowsInCardinal.ArrowsInLineVertical.ArrowsInSimple.ArrowsLeftRight.ArrowsMerge.ArrowsOut.ArrowsOutCardinal.ArrowsOutSimple.ArrowsSplit.ArrowsVertical.Article.ArticleMedium.ArticleNyTimes.Asterisk.AsteriskSimple.At.Atom.Baby.Backpack.Backspace.Bag.BagSimple.Balloon.Bandaids.Bank.Barbell.Barcode.Barricade.Baseball.BaseballCap.Basket.Basketball.Bathtub.BatteryCharging.BatteryEmpty.BatteryFull.BatteryHigh.BatteryLow.BatteryMedium.BatteryPlus.BatteryPlusVertical.BatteryVerticalEmpty.BatteryVerticalFull.BatteryVerticalHigh.BatteryVerticalLow.BatteryWarning.Bed.BeerBottle.BeerStein.BehanceLogo.Bell.BellRinging.BellSimple.BellSimpleRinging.BellSimpleSlash.BellSimpleZ.BellSlash.BellZ.BezierCurve.Bicycle.Binoculars.Bird.Bluetooth.BluetoothConnected.BluetoothSlash.BluetoothX.Boat.Bone.Book.BookBookmark.BookOpen.BookOpenText.Bookmark.BookmarkSimple.Bookmarks.BookmarksSimple.Books.Boot.BoundingBox.BowlFood.BracketsAngle.BracketsCurly.BracketsRound.BracketsSquare.Brain.Brandy.Bridge.Briefcase.BriefcaseMetal.Broadcast.Broom.Browser.Browsers.Bug.BugBeetle.BugDroid.Buildings.Bus.Butterfly.Cactus.Cake.Calculator.Calendar.CalendarBlank.CalendarCheck.CalendarPlus.CalendarX.CallBell.Camera.CameraPlus.CameraRotate.CameraSlash.Campfire.Car.CarProfile.CarSimple.Cardholder.Cards.CaretCircleDoubleUp.CaretCircleDown.CaretCircleLeft.CaretCircleRight.CaretCircleUp.CaretCircleUpDown.CaretDoubleDown.CaretDoubleLeft.CaretDoubleRight.CaretDoubleUp.CaretDown.CaretLeft.CaretRight.CaretUp.CaretUpDown.Carrot.CassetteTape.CastleTurret.Cat.CellSignalFull.CellSignalHigh.CellSignalLow.CellSignalMedium.CellSignalNone.CellSignalSlash.CellSignalX.Certificate.Chair.Chalkboard.ChalkboardSimple.ChalkboardTeacher.Champagne.ChargingStation.ChartBar.ChartBarHorizontal.ChartDonut.ChartLine.ChartLineDown.ChartLineUp.ChartPie.ChartPieSlice.ChartPolar.ChartScatter.Chat.ChatCentered.ChatCenteredDots.ChatCenteredText.ChatCircle.ChatCircleDots.ChatCircleText.ChatDots.ChatTeardrop.ChatTeardropDots.ChatTeardropText.ChatText.Chats.ChatsCircle.ChatsTeardrop.Check.CheckCircle.CheckFat.CheckSquare.CheckSquareOffset.Checks.Church.Circle.CircleDashed.CircleHalf.CircleHalfTilt.CircleNotch.CirclesFour.CirclesThree.CirclesThreePlus.Circuitry.Clipboard.ClipboardText.Clock.ClockAfternoon.ClockClockwise.ClockCounterClockwise.ClockCountdown.ClosedCaptioning.Cloud.CloudArrowDown.CloudArrowUp.CloudCheck.CloudFog.CloudLightning.CloudMoon.CloudRain.CloudSlash.CloudSnow.CloudSun.CloudWarning.CloudX.Club.CoatHanger.CodaLogo.Code.CodeBlock.CodeSimple.CodepenLogo.CodesandboxLogo.Coffee.Coin.CoinVertical.Coins.Columns.Command.Compass.CompassTool.ComputerTower.Confetti.ContactlessPayment.Control.Cookie.CookingPot.Copy.CopySimple.Copyleft.Copyright.CornersIn.CornersOut.Couch.Cpu.CreditCard.Crop.Cross.Crosshair.CrosshairSimple.Crown.CrownSimple.Cube.CubeFocus.CubeTransparent.CurrencyBtc.CurrencyCircleDollar.CurrencyCny.CurrencyDollar.CurrencyDollarSimple.CurrencyEth.CurrencyEur.CurrencyGbp.CurrencyInr.CurrencyJpy.CurrencyKrw.CurrencyKzt.CurrencyNgn.CurrencyRub.Cursor.CursorClick.CursorText.Cylinder.Database.Desktop.DesktopTower.Detective.DevToLogo.DeviceMobile.DeviceMobileCamera.DeviceMobileSpeaker.DeviceTablet.DeviceTabletCamera.DeviceTabletSpeaker.Devices.Diamond.DiamondsFour.DiceFive.DiceFour.DiceOne.DiceSix.DiceThree.DiceTwo.Disc.DiscordLogo.Divide.Dna.Dog.Door.DoorOpen.Dot.DotOutline.DotsNine.DotsSix.DotsSixVertical.DotsThree.DotsThreeCircle.DotsThreeOutline.DotsThreeVertical.Download.DownloadSimple.Dress.DribbbleLogo.Drop.DropHalf.DropHalfBottom.DropboxLogo.Ear.EarSlash.Egg.EggCrack.Eject.EjectSimple.Elevator.Engine.Envelope.EnvelopeOpen.EnvelopeSimple.EnvelopeSimpleOpen.Equalizer.Equals.Eraser.EscalatorDown.EscalatorUp.Exam.Exclude.ExcludeSquare.Export.Eye.EyeClosed.EyeSlash.Eyedropper.EyedropperSample.Eyeglasses.FaceMask.FacebookLogo.Factory.Faders.FadersHorizontal.Fan.FastForward.FastForwardCircle.Feather.FigmaLogo.File.FileArchive.FileArrowDown.FileArrowUp.FileAudio.FileCloud.FileCode.FileCss.FileCsv.FileDashed.FileDoc.FileHtml.FileImage.FileJpg.FileJs.FileJsx.FileLock.FileMagnifyingGlass.FileMinus.FilePdf.FilePlus.FilePng.FilePpt.FileRs.FileSql.FileSvg.FileText.FileTs.FileTsx.FileVideo.FileVue.FileX.FileXls.FileZip.Files.FilmReel.FilmScript.FilmSlate.FilmStrip.Fingerprint.FingerprintSimple.FinnTheHuman.Fire.FireExtinguisher.FireSimple.FirstAid.FirstAidKit.Fish.FishSimple.Flag.FlagBanner.FlagCheckered.FlagPennant.Flame.Flashlight.Flask.FloppyDisk.FloppyDiskBack.FlowArrow.Flower.FlowerLotus.FlowerTulip.FlyingSaucer.Folder.FolderDashed.FolderLock.FolderMinus.FolderNotch.FolderNotchMinus.FolderNotchOpen.FolderNotchPlus.FolderOpen.FolderPlus.FolderSimple.FolderSimpleDashed.FolderSimpleLock.FolderSimpleMinus.FolderSimplePlus.FolderSimpleStar.FolderSimpleUser.FolderStar.FolderUser.Folders.Football.Footprints.ForkKnife.FrameCorners.FramerLogo.Function.Funnel.FunnelSimple.GameController.Garage.GasCan.GasPump.Gauge.Gavel.Gear.GearFine.GearSix.GenderFemale.GenderIntersex.GenderMale.GenderNeuter.GenderNonbinary.GenderTransgender.Ghost.Gif.Gift.GitBranch.GitCommit.GitDiff.GitFork.GitMerge.GitPullRequest.GithubLogo.GitlabLogo.GitlabLogoSimple.Globe.GlobeHemisphereEast.GlobeHemisphereWest.GlobeSimple.GlobeStand.Goggles.GoodreadsLogo.GoogleCardboardLogo.GoogleChromeLogo.GoogleDriveLogo.GoogleLogo.GooglePhotosLogo.GooglePlayLogo.GooglePodcastsLogo.Gradient.GraduationCap.Grains.GrainsSlash.Graph.GridFour.GridNine.Guitar.Hamburger.Hammer.Hand.HandCoins.HandEye.HandFist.HandGrabbing.HandHeart.HandPalm.HandPointing.HandSoap.HandSwipeLeft.HandSwipeRight.HandTap.HandWaving.Handbag.HandbagSimple.HandsClapping.HandsPraying.Handshake.HardDrive.HardDrives.Hash.HashStraight.Headlights.Headphones.Headset.Heart.HeartBreak.HeartHalf.HeartStraight.HeartStraightBreak.Heartbeat.Hexagon.HighHeel.HighlighterCircle.Hoodie.Horse.Hourglass.HourglassHigh.HourglassLow.HourglassMedium.HourglassSimple.HourglassSimpleHigh.HourglassSimpleLow.House.HouseLine.HouseSimple.IceCream.IdentificationBadge.IdentificationCard.Image.ImageSquare.Images.ImagesSquare.Infinity.Info.InstagramLogo.Intersect.IntersectSquare.IntersectThree.Jeep.Kanban.Key.KeyReturn.Keyboard.Keyhole.Knife.Ladder.LadderSimple.Lamp.Laptop.Layout.Leaf.Lifebuoy.Lightbulb.LightbulbFilament.Lighthouse.Lightning.LightningA.LightningSlash.LineSegment.LineSegments.Link.LinkBreak.LinkSimple.LinkSimpleBreak.LinkSimpleHorizontal.LinkedinLogo.LinuxLogo.List.ListBullets.ListChecks.ListDashes.ListMagnifyingGlass.ListNumbers.ListPlus.Lock.LockKey.LockKeyOpen.LockLaminated.LockLaminatedOpen.LockOpen.LockSimple.LockSimpleOpen.Lockers.MagicWand.Magnet.MagnetStraight.MagnifyingGlass.MagnifyingGlassMinus.MagnifyingGlassPlus.MapPin.MapPinLine.MapTrifold.MarkerCircle.Martini.MaskHappy.MaskSad.MathOperations.Medal.MedalMilitary.MediumLogo.Megaphone.MegaphoneSimple.MessengerLogo.MetaLogo.Metronome.Microphone.MicrophoneSlash.MicrophoneStage.MicrosoftExcelLogo.MicrosoftOutlookLogo.MicrosoftTeamsLogo.MicrosoftWordLogo.Minus.MinusCircle.MinusSquare.Money.Monitor.MonitorPlay.Moon.MoonStars.Moped.MopedFront.Mosque.Motorcycle.Mountains.Mouse.MouseSimple.MusicNote.MusicNoteSimple.MusicNotes.MusicNotesPlus.MusicNotesSimple.NavigationArrow.Needle.Newspaper.NewspaperClipping.Notches.Note.NoteBlank.NotePencil.Notebook.Notepad.Notification.NotionLogo.NumberCircleEight.NumberCircleFive.NumberCircleFour.NumberCircleNine.NumberCircleOne.NumberCircleSeven.NumberCircleSix.NumberCircleThree.NumberCircleTwo.NumberCircleZero.NumberEight.NumberFive.NumberFour.NumberNine.NumberOne.NumberSeven.NumberSix.NumberSquareEight.NumberSquareFive.NumberSquareFour.NumberSquareNine.NumberSquareOne.NumberSquareSeven.NumberSquareSix.NumberSquareThree.NumberSquareTwo.NumberSquareZero.NumberThree.NumberTwo.NumberZero.Nut.NyTimesLogo.Octagon.OfficeChair.Option.OrangeSlice.Package.PaintBrush.PaintBrushBroad.PaintBrushHousehold.PaintBucket.PaintRoller.Palette.Pants.PaperPlane.PaperPlaneRight.PaperPlaneTilt.Paperclip.PaperclipHorizontal.Parachute.Paragraph.Parallelogram.Park.Password.Path.PatreonLogo.Pause.PauseCircle.PawPrint.PaypalLogo.Peace.Pen.PenNib.PenNibStraight.Pencil.PencilCircle.PencilLine.PencilSimple.PencilSimpleLine.PencilSimpleSlash.PencilSlash.Pentagram.Pepper.Percent.Person.PersonArmsSpread.PersonSimple.PersonSimpleBike.PersonSimpleRun.PersonSimpleThrow.PersonSimpleWalk.Perspective.Phone.PhoneCall.PhoneDisconnect.PhoneIncoming.PhoneOutgoing.PhonePlus.PhoneSlash.PhoneX.PhosphorLogo.Pi.PianoKeys.PictureInPicture.PiggyBank.Pill.PinterestLogo.Pinwheel.Pizza.Placeholder.Planet.Plant.Play.PlayCircle.PlayPause.Playlist.Plug.PlugCharging.Plugs.PlugsConnected.Plus.PlusCircle.PlusMinus.PlusSquare.PokerChip.PoliceCar.Polygon.Popcorn.PottedPlant.Power.Prescription.Presentation.PresentationChart.Printer.Prohibit.ProhibitInset.ProjectorScreen.ProjectorScreenChart.Pulse.PushPin.PushPinSimple.PushPinSimpleSlash.PushPinSlash.PuzzlePiece.QrCode.Question.Queue.Quotes.Radical.Radio.RadioButton.Radioactive.Rainbow.RainbowCloud.ReadCvLogo.Receipt.ReceiptX.Record.Rectangle.Recycle.RedditLogo.Repeat.RepeatOnce.Rewind.RewindCircle.RoadHorizon.Robot.Rocket.RocketLaunch.Rows.Rss.RssSimple.Rug.Ruler.Scales.Scan.Scissors.Scooter.Screencast.ScribbleLoop.Scroll.Seal.SealCheck.SealQuestion.SealWarning.Selection.SelectionAll.SelectionBackground.SelectionForeground.SelectionInverse.SelectionPlus.SelectionSlash.Shapes.Share.ShareFat.ShareNetwork.Shield.ShieldCheck.ShieldCheckered.ShieldChevron.ShieldPlus.ShieldSlash.ShieldStar.ShieldWarning.ShirtFolded.ShootingStar.ShoppingBag.ShoppingBagOpen.ShoppingCart.ShoppingCartSimple.Shower.Shrimp.Shuffle.ShuffleAngular.ShuffleSimple.Sidebar.SidebarSimple.Sigma.SignIn.SignOut.Signature.Signpost.SimCard.Siren.SketchLogo.SkipBack.SkipBackCircle.SkipForward.SkipForwardCircle.Skull.SlackLogo.Sliders.SlidersHorizontal.Slideshow.Smiley.SmileyAngry.SmileyBlank.SmileyMeh.SmileyNervous.SmileySad.SmileySticker.SmileyWink.SmileyXEyes.SnapchatLogo.Sneaker.SneakerMove.Snowflake.SoccerBall.SortAscending.SortDescending.SoundcloudLogo.Spade.Sparkle.SpeakerHifi.SpeakerHigh.SpeakerLow.SpeakerNone.SpeakerSimpleHigh.SpeakerSimpleLow.SpeakerSimpleNone.SpeakerSimpleSlash.SpeakerSimpleX.SpeakerSlash.SpeakerX.Spinner.SpinnerGap.Spiral.SplitHorizontal.SplitVertical.SpotifyLogo.Square.SquareHalf.SquareHalfBottom.SquareLogo.SquareSplitVertical.SquaresFour.Stack.StackOverflowLogo.StackSimple.Stairs.Stamp.Star.StarAndCrescent.StarFour.StarHalf.StarOfDavid.SteeringWheel.Steps.Stethoscope.Sticker.Stool.Stop.StopCircle.Storefront.Strategy.StripeLogo.Student.Subtitles.Subtract.SubtractSquare.Suitcase.SuitcaseRolling.SuitcaseSimple.Sun.SunDim.SunHorizon.Sunglasses.Swap.Swatches.SwimmingPool.Sword.Synagogue.Syringe.TShirt.Table.Tabs.Tag.TagChevron.TagSimple.Target.Taxi.TelegramLogo.Television.TelevisionSimple.TennisBall.Tent.Terminal.TerminalWindow.TestTube.TextAUnderline.TextAa.TextAlignCenter.TextAlignJustify.TextAlignLeft.TextAlignRight.TextB.TextColumns.TextH.TextHFive.TextHFour.TextHOne.TextHSix.TextHThree.TextHTwo.TextIndent.TextItalic.TextOutdent.TextStrikethrough.TextT.TextUnderline.Textbox.Thermometer.ThermometerCold.ThermometerHot.ThermometerSimple.ThumbsDown.ThumbsUp.Ticket.TidalLogo.TiktokLogo.Timer.Tipi.ToggleLeft.ToggleRight.Toilet.ToiletPaper.Toolbox.Tooth.Tote.ToteSimple.Trademark.TrademarkRegistered.TrafficCone.TrafficSign.TrafficSignal.Train.TrainRegional.TrainSimple.Tram.Translate.Trash.TrashSimple.Tray.Tree.TreeEvergreen.TreePalm.TreeStructure.TrendDown.TrendUp.Triangle.Trophy.Truck.TwitchLogo.TwitterLogo.Umbrella.UmbrellaSimple.Unite.UniteSquare.Upload.UploadSimple.Usb.User.UserCircle.UserCircleGear.UserCircleMinus.UserCirclePlus.UserFocus.UserGear.UserList.UserMinus.UserPlus.UserRectangle.UserSquare.UserSwitch.Users.UsersFour.UsersThree.Van.Vault.Vibrate.Video.VideoCamera.VideoCameraSlash.Vignette.VinylRecord.VirtualReality.Virus.Voicemail.Volleyball.Wall.Wallet.Warehouse.Warning.WarningCircle.WarningDiamond.WarningOctagon.Watch.WaveSawtooth.WaveSine.WaveSquare.WaveTriangle.Waveform.Waves.Webcam.WebcamSlash.WebhooksLogo.WechatLogo.WhatsappLogo.Wheelchair.WheelchairMotion.WifiHigh.WifiLow.WifiMedium.WifiNone.WifiSlash.WifiX.Wind.WindowsLogo.Wine.Wrench.X.XCircle.XSquare.YinYang.YoutubeLogo`.split( `.` )), (Ze = `https://framer.com/m/phosphor-icons/`), (Qe = [`thin`, `light`, `regular`, `bold`, `fill`, `duotone`]), ($e = Xe.reduce((e, t) => ((e[t.toLowerCase()] = t), e), {})), (J.displayName = `Phosphor`), (J.defaultProps = { width: 24, height: 24, iconSelection: `House`, iconSearch: `House`, color: `#66F`, selectByList: !0, weight: `regular`, mirrored: !1 }), A(J, { selectByList: { type: S.Boolean, title: `Select`, enabledTitle: `List`, disabledTitle: `Search`, defaultValue: J.defaultProps.selectByList }, iconSelection: { type: S.Enum, options: Xe, defaultValue: J.defaultProps.iconSelection, title: `Name`, hidden: ({ selectByList: e }) => !e, description: `Find every icon name on the [Phosphor site](https://phosphoricons.com/)` }, iconSearch: { type: S.String, title: `Name`, placeholder: `Menu, Wifi, Box…`, hidden: ({ selectByList: e }) => e }, color: { type: S.Color, title: `Color`, defaultValue: J.defaultProps.color }, weight: { type: S.Enum, title: `Weight`, optionTitles: Qe.map((e) => e.charAt(0).toUpperCase() + e.slice(1)), options: Qe, defaultValue: J.defaultProps.weight }, mirrored: { type: S.Boolean, enabledTitle: `Yes`, disabledTitle: `No`, defaultValue: J.defaultProps.mirrored }, ...qe }); }); function tt(e, ...t) { let n = {}; return t?.forEach((t) => t && Object.assign(n, e[t])), n; } var nt, Y, rt, it, at, ot, st, ct, lt, ut, dt, ft, pt, mt, ht, X, gt = e(() => { r(), F(), y(), i(), et(), (nt = M(J)), (Y = P(J)), (rt = { fyaazp7pn: { hover: !0 }, ke7By49HW: { hover: !0 }, kHviqYtmc: { hover: !0 }, q2rCK5lhb: { hover: !0 }, QUTH27_ce: { hover: !0 }, wnk_W7u7s: { hover: !0 } }), (it = [`fyaazp7pn`, `kHviqYtmc`, `QUTH27_ce`, `q2rCK5lhb`, `wnk_W7u7s`, `ke7By49HW`, `fLgeGgxc3`]), (at = `framer-NG0WM`), (ot = { fLgeGgxc3: `framer-v-v3naph`, fyaazp7pn: `framer-v-1y85anj`, ke7By49HW: `framer-v-13pq63p`, kHviqYtmc: `framer-v-1qeza48`, q2rCK5lhb: `framer-v-1bp6rf1`, QUTH27_ce: `framer-v-cb3mkt`, wnk_W7u7s: `framer-v-1wq5eci` }), (st = { damping: 60, delay: 0, mass: 1, stiffness: 500, type: `spring` }), (ct = ({ value: e, children: t }) => { let n = u(v), r = e ?? n.transition, i = d(() => ({ ...n, transition: r }), [JSON.stringify(r)]); return c(v.Provider, { value: i, children: t }); }), (lt = b.create(h)), (ut = { Bold: `bold`, Duotone: `duotone`, Fill: `fill`, Light: `light`, Regular: `regular`, Thin: `thin` }), (dt = { "Primary Large": `q2rCK5lhb`, "Primary Medium": `ke7By49HW`, "Primary Small": `wnk_W7u7s`, "Secondary Large": `fyaazp7pn`, "Secondary Medium": `QUTH27_ce`, "Secondary Small": `kHviqYtmc`, "Variant 7": `fLgeGgxc3` }), (ft = ({ height: e, hover: t, iconLeft: n, iconLeft1: r, iconLeftColor: i, iconLeftWeight: a, iconRight: o, iconRight2: s, iconRightColor: c, iconRIGhtWeight: l, id: u, largewPButtonTextSize: d, link: f, newTab: p, tap: m, title: h, width: g, ..._ }) => ({ ..._, GLWImmBy_: o ?? _.GLWImmBy_ ?? !0, HBR9r6Wzz: n ?? _.HBR9r6Wzz, jSn1qfWzp: d ?? _.jSn1qfWzp ?? 21, kTynE2FQc: ut[a] ?? a ?? _.kTynE2FQc ?? `regular`, LdEuC589O: c ?? _.LdEuC589O ?? `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, nL8OQ61g_: r ?? _.nL8OQ61g_ ?? `House`, nZIvc5R21: s ?? _.nZIvc5R21 ?? `House`, OAQbadD9M: t ?? _.OAQbadD9M, odb0bWURU: f ?? _.odb0bWURU, QQq_dHjj6: ut[l] ?? l ?? _.QQq_dHjj6 ?? `regular`, rt9DsEiKG: i ?? _.rt9DsEiKG ?? `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))`, TdzRKJaWY: m ?? _.TdzRKJaWY, tipS0P7cJ: h ?? _.tipS0P7cJ ?? `Sign up`, Ud3HdUmNm: p ?? _.Ud3HdUmNm, variant: dt[_.variant] ?? _.variant ?? `fyaazp7pn` })), (pt = (e, t) => (e.layoutDependency ? t.join(`-`) + e.layoutDependency : t.join(`-`))), (mt = t(function (e, t) { let r = l(null), i = t ?? r, a = n(), { activeLocale: o, setLocale: s } = L(); I(); let { style: u, className: d, layoutId: p, variant: m, tipS0P7cJ: g, GLWImmBy_: v, nZIvc5R21: y, LdEuC589O: S, QQq_dHjj6: C, HBR9r6Wzz: w, nL8OQ61g_: E, rt9DsEiKG: D, kTynE2FQc: te, odb0bWURU: k, OAQbadD9M: A, TdzRKJaWY: M, Ud3HdUmNm: N, jSn1qfWzp: P, Q7omvm8K3: F, ...re } = ft(e), { baseVariant: R, classNames: z, clearLoadingGesture: ae, gestureHandlers: oe, gestureVariant: B, isLoading: V, setGestureState: se, setVariant: ce, variants: H } = ie({ cycleOrder: it, defaultVariant: `fyaazp7pn`, enabledGestures: rt, ref: i, variant: m, variantClassNames: ot }), U = pt(e, H), { activeVariantCallback: W, delay: le } = ne(R), ue = W(async (...e) => { if ((se({ isPressed: !1 }), M)) { let t = await M(...e); if (t === !1) return !1; } }), de = W(async (...e) => { if ((se({ isHovered: !0 }), A)) { let t = await A(...e); if (t === !1) return !1; } }), fe = [], G = j(at, ...fe); return c(_, { id: p ?? a, children: c(lt, { animate: H, initial: !1, children: c(ct, { value: st, children: c(T, { href: k, motionChild: !0, nodeId: `fyaazp7pn`, openInNewTab: N, scopeId: `h9up4_pFN`, smoothScroll: !0, ...tt({ fLgeGgxc3: { openInNewTab: F }, q2rCK5lhb: { openInNewTab: F } }, R, B), children: f(b.a, { ...re, ...oe, className: `${j(G, `framer-1y85anj`, d, z)} framer-1snnu2a`, "data-framer-name": `Secondary Large`, "data-highlight": !0, layoutDependency: U, layoutId: `fyaazp7pn`, onMouseEnter: de, onTap: ue, ref: i, style: { backdropFilter: `blur(10px)`, backgroundColor: `rgba(13, 13, 13, 0.5)`, borderBottomLeftRadius: 999, borderBottomRightRadius: 999, borderTopLeftRadius: 999, borderTopRightRadius: 999, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.1), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(255, 255, 255, 0.08)`, WebkitBackdropFilter: `blur(10px)`, ...u }, variants: { "fyaazp7pn-hover": { backgroundColor: `rgba(0, 0, 0, 0.7)`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 4px rgba(255, 255, 255, 0.08)` }, "ke7By49HW-hover": { backgroundColor: `var(--token-d5abad45-bff0-4cd8-9671-a3004817739b, rgb(132, 101, 224))`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 4px rgba(98, 20, 217, 0.32)` }, "kHviqYtmc-hover": { backgroundColor: `rgba(13, 13, 13, 0.7)`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 4px rgba(255, 255, 255, 0.08)` }, "q2rCK5lhb-hover": { backgroundColor: `var(--token-d5abad45-bff0-4cd8-9671-a3004817739b, rgb(174, 148, 255))`, boxShadow: `0px 4px 10px -2px rgba(255, 255, 255, 0.05), 0px 2px 2px -1px rgba(255, 255, 255, 0.1), 0px 0px 0px 5px rgba(98, 20, 217, 0.32)` }, "QUTH27_ce-hover": { backgroundColor: `rgba(13, 13, 13, 0.7)`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.1), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 4px rgba(255, 255, 255, 0.08)` }, "wnk_W7u7s-hover": { backgroundColor: `var(--token-d5abad45-bff0-4cd8-9671-a3004817739b, rgb(132, 101, 224))`, boxShadow: `0px 4px 10px -2px rgba(255, 255, 255, 0.05), 0px 2px 2px -1px rgba(255, 255, 255, 0.1), 0px 0px 0px 5px rgba(98, 20, 217, 0.32)` }, fLgeGgxc3: { backgroundColor: `var(--token-181c343f-eac3-43c0-b453-adf6d1c0605d, rgb(98, 20, 217))`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(98, 20, 217, 0.12)` }, ke7By49HW: { backgroundColor: `var(--token-181c343f-eac3-43c0-b453-adf6d1c0605d, rgb(98, 20, 217))`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(98, 20, 217, 0.12)` }, q2rCK5lhb: { backgroundColor: `var(--token-181c343f-eac3-43c0-b453-adf6d1c0605d, rgb(98, 20, 217))`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(98, 20, 217, 0.12)` }, wnk_W7u7s: { backgroundColor: `var(--token-181c343f-eac3-43c0-b453-adf6d1c0605d, rgb(98, 20, 217))`, boxShadow: `0px 4px 10px -2px rgba(0, 0, 0, 0.05), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(98, 20, 217, 0.12)` } }, ...tt( { "fyaazp7pn-hover": { "data-framer-name": void 0 }, "ke7By49HW-hover": { "data-framer-name": void 0 }, "kHviqYtmc-hover": { "data-framer-name": void 0 }, "q2rCK5lhb-hover": { "data-framer-name": void 0 }, "QUTH27_ce-hover": { "data-framer-name": void 0 }, "wnk_W7u7s-hover": { "data-framer-name": void 0 }, fLgeGgxc3: { "data-framer-name": `Variant 7` }, ke7By49HW: { "data-framer-name": `Primary Medium` }, kHviqYtmc: { "data-framer-name": `Secondary Small` }, q2rCK5lhb: { "data-framer-name": `Primary Large` }, QUTH27_ce: { "data-framer-name": `Secondary Medium` }, wnk_W7u7s: { "data-framer-name": `Primary Small` } }, R, B ), children: [ w && c(x, { children: c(O, { className: `framer-10ao4ux-container`, isAuthoredByUser: !0, isModuleExternal: !0, layoutDependency: U, layoutId: `dZphtoxMc-container`, nodeId: `dZphtoxMc`, rendersWithMotion: !0, scopeId: `h9up4_pFN`, children: c(J, { color: D, height: `100%`, iconSearch: `House`, iconSelection: E, id: `dZphtoxMc`, layoutId: `dZphtoxMc`, mirrored: !1, selectByList: !0, style: { height: `100%`, width: `100%` }, weight: te, width: `100%` }) }) }), c(ee, { __fromCanvasComponent: !0, children: c(h, { children: c(b.h6, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-size": `calc(var(--variable-reference-jSn1qfWzp-h9up4_pFN) * 1px)`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `24px`, "--framer-text-color": `var(--extracted-1w1cjl5, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))` }, children: `Sign up` }) }), className: `framer-1oq9jkb`, "data-framer-name": `Categories`, fonts: [`FS;Satoshi-medium`], layoutDependency: U, layoutId: `df5s0uwQH`, style: { "--extracted-1w1cjl5": `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, "--variable-reference-jSn1qfWzp-h9up4_pFN": P }, text: g, variants: { ke7By49HW: { "--extracted-1w1cjl5": `var(--token-3294dda8-8f0a-48e2-90c8-89344355926c, rgb(249, 250, 251))` }, wnk_W7u7s: { "--extracted-1w1cjl5": `var(--token-3294dda8-8f0a-48e2-90c8-89344355926c, rgb(249, 250, 251))` } }, verticalAlignment: `center`, withExternalLayout: !0, ...tt( { ke7By49HW: { children: c(h, { children: c(b.h6, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `24px`, "--framer-text-color": `var(--extracted-1w1cjl5, var(--token-3294dda8-8f0a-48e2-90c8-89344355926c, rgb(249, 250, 251)))` }, children: `Sign up` }) }) }, kHviqYtmc: { children: c(h, { children: c(b.h6, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-size": `14px`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `24px`, "--framer-text-color": `var(--extracted-1w1cjl5, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))` }, children: `Sign up` }) }) }, QUTH27_ce: { children: c(h, { children: c(b.h6, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `24px`, "--framer-text-color": `var(--extracted-1w1cjl5, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))` }, children: `Sign up` }) }) }, wnk_W7u7s: { children: c(h, { children: c(b.h6, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-size": `14px`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `24px`, "--framer-text-color": `var(--extracted-1w1cjl5, var(--token-3294dda8-8f0a-48e2-90c8-89344355926c, rgb(249, 250, 251)))` }, children: `Sign up` }) }) } }, R, B ) }), v && c(x, { children: c(O, { className: `framer-15sk7ka-container`, isAuthoredByUser: !0, isModuleExternal: !0, layoutDependency: U, layoutId: `jyAnDUJ03-container`, nodeId: `jyAnDUJ03`, rendersWithMotion: !0, scopeId: `h9up4_pFN`, children: c(J, { color: S, height: `100%`, iconSearch: `House`, iconSelection: y, id: `jyAnDUJ03`, layoutId: `jyAnDUJ03`, mirrored: !1, selectByList: !0, style: { height: `100%`, width: `100%` }, weight: C, width: `100%` }) }) }) ] }) }) }) }) }); })), (ht = [ `@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }`, `.framer-NG0WM.framer-1snnu2a, .framer-NG0WM .framer-1snnu2a { display: block; }`, `.framer-NG0WM.framer-1y85anj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 48px 24px 48px; position: relative; text-decoration: none; width: min-content; }`, `.framer-NG0WM .framer-10ao4ux-container { flex: none; height: 18px; position: relative; width: 18px; }`, `.framer-NG0WM .framer-1oq9jkb { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }`, `.framer-NG0WM .framer-15sk7ka-container { flex: none; height: 21px; position: relative; width: 21px; }`, `.framer-NG0WM.framer-v-1qeza48.framer-1y85anj, .framer-NG0WM.framer-v-1wq5eci.framer-1y85anj { gap: 8px; padding: 9px 13px 9px 13px; }`, `.framer-NG0WM.framer-v-1qeza48 .framer-1oq9jkb, .framer-NG0WM.framer-v-cb3mkt .framer-1oq9jkb, .framer-NG0WM.framer-v-1wq5eci .framer-1oq9jkb, .framer-NG0WM.framer-v-13pq63p .framer-1oq9jkb { height: 18px; }`, `.framer-NG0WM.framer-v-1qeza48 .framer-15sk7ka-container, .framer-NG0WM.framer-v-cb3mkt .framer-15sk7ka-container, .framer-NG0WM.framer-v-13pq63p .framer-15sk7ka-container { height: 18px; width: 18px; }`, `.framer-NG0WM.framer-v-cb3mkt.framer-1y85anj, .framer-NG0WM.framer-v-13pq63p.framer-1y85anj { gap: 8px; padding: 12px 18px 12px 18px; }`, `.framer-NG0WM.framer-v-1bp6rf1 .framer-10ao4ux-container, .framer-NG0WM.framer-v-v3naph .framer-10ao4ux-container { order: 1; }`, `.framer-NG0WM.framer-v-1bp6rf1 .framer-1oq9jkb, .framer-NG0WM.framer-v-v3naph .framer-1oq9jkb { order: 0; }`, `.framer-NG0WM.framer-v-1bp6rf1 .framer-15sk7ka-container, .framer-NG0WM.framer-v-v3naph .framer-15sk7ka-container { order: 2; }` ]), (X = z(mt, ht, `framer-NG0WM`)), (X.displayName = `Buttons/Button`), (X.defaultProps = { height: 69, width: 196 }), A(X, { variant: { options: [ `fyaazp7pn`, `kHviqYtmc`, `QUTH27_ce`, `q2rCK5lhb`, `wnk_W7u7s`, `ke7By49HW`, `fLgeGgxc3` ], optionTitles: [ `Secondary Large`, `Secondary Small`, `Secondary Medium`, `Primary Large`, `Primary Small`, `Primary Medium`, `Variant 7` ], title: `Variant`, type: S.Enum }, tipS0P7cJ: { defaultValue: `Sign up`, displayTextArea: !1, title: `Title`, type: S.String }, GLWImmBy_: { defaultValue: !0, title: `Icon Right`, type: S.Boolean }, nZIvc5R21: Y?.iconSelection && { ...Y.iconSelection, defaultValue: `House`, description: void 0, hidden: void 0, title: `Icon Right 2` }, LdEuC589O: { defaultValue: `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)) /* {"name":"Heading"} */`, title: `Icon Right Color`, type: S.Color }, QQq_dHjj6: Y?.weight && { ...Y.weight, defaultValue: `regular`, description: void 0, hidden: void 0, title: `Icon RIght Weight` }, HBR9r6Wzz: { defaultValue: !1, title: `Icon Left`, type: S.Boolean }, nL8OQ61g_: Y?.iconSelection && { ...Y.iconSelection, defaultValue: `House`, description: void 0, hidden: void 0, title: `Icon Left` }, rt9DsEiKG: { defaultValue: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36)) /* {"name":"Heading"} */`, title: `Icon Left Color`, type: S.Color }, kTynE2FQc: Y?.weight && { ...Y.weight, defaultValue: `regular`, description: void 0, hidden: void 0, title: `Icon Left Weight` }, odb0bWURU: { title: `Link`, type: S.Link }, OAQbadD9M: { title: `Hover`, type: S.EventHandler }, TdzRKJaWY: { title: `Tap`, type: S.EventHandler }, Ud3HdUmNm: { defaultValue: !1, title: `New Tab`, type: S.Boolean }, jSn1qfWzp: { defaultValue: 21, title: `Largew P Button text size`, type: S.Number } }), k( X, [ { explicitInter: !0, fonts: [ { family: `Satoshi`, source: `fontshare`, style: `normal`, url: `https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2`, weight: `500` } ] }, ...nt ], { supportsExplicitInterCodegen: !0 } ); }); function _t(e, ...t) { let n = {}; return t?.forEach((t) => t && Object.assign(n, e[t])), n; } var vt, yt, bt, xt, St, Ct, wt, Tt, Et, Dt, Ot, Z, kt = e(() => { r(), F(), y(), i(), (vt = [`eEWDdAIsP`, `YFwbW6sh_`]), (yt = `framer-Vbrwc`), (bt = { eEWDdAIsP: `framer-v-12x6qj7`, YFwbW6sh_: `framer-v-1ow9zvb` }), (xt = { damping: 60, delay: 0, mass: 1, stiffness: 500, type: `spring` }), (St = ({ value: e, children: t }) => { let n = u(v), r = e ?? n.transition, i = d(() => ({ ...n, transition: r }), [JSON.stringify(r)]); return c(v.Provider, { value: i, children: t }); }), (Ct = b(h)), (wt = { Close: `YFwbW6sh_`, Default: `eEWDdAIsP` }), (Tt = ({ height: e, id: t, tap: n, width: r, ...i }) => { var a, o; return { ...i, mNnEtKoz7: n ?? i.mNnEtKoz7, variant: (o = (a = wt[i.variant]) ?? i.variant) ?? `eEWDdAIsP` }; }), (Et = (e, t) => t.join(`-`) + e.layoutDependency), (Dt = t(function (e, t) { let { activeLocale: r, setLocale: i } = L(), { style: a, className: o, layoutId: s, variant: u, mNnEtKoz7: d, ...p } = Tt(e), { baseVariant: m, classNames: h, gestureVariant: g, setGestureState: v, setVariant: y, variants: x } = ie({ cycleOrder: vt, defaultVariant: `eEWDdAIsP`, variant: u, variantClassNames: bt }), S = Et(e, x), { activeVariantCallback: C, delay: w } = ne(m), T = C(async (...e) => { if ((v({ isPressed: !1 }), d)) { let t = await d(...e); if (t === !1) return !1; } }), E = l(null), D = n(), ee = []; return ( I(), c(_, { id: s ?? D, children: c(Ct, { animate: x, initial: !1, children: c(St, { value: xt, children: f(b.div, { ...p, className: j(yt, ...ee, `framer-12x6qj7`, o, h), "data-framer-name": `Default`, "data-highlight": !0, layoutDependency: S, layoutId: `eEWDdAIsP`, onHoverEnd: () => v({ isHovered: !1 }), onHoverStart: () => v({ isHovered: !0 }), onTap: T, onTapCancel: () => v({ isPressed: !1 }), onTapStart: () => v({ isPressed: !0 }), ref: t ?? E, style: { ...a }, ..._t({ YFwbW6sh_: { "data-framer-name": `Close` } }, m, g), children: [ c(b.div, { className: `framer-mo6mep`, "data-framer-name": `Line 1`, layoutDependency: S, layoutId: `yjlAhpf8Z`, style: { backgroundColor: `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, borderBottomLeftRadius: 7, borderBottomRightRadius: 7, borderTopLeftRadius: 7, borderTopRightRadius: 7, rotate: 0 }, variants: { YFwbW6sh_: { rotate: 45 } } }), c(b.div, { className: `framer-eqiune`, "data-framer-name": `Line 2`, layoutDependency: S, layoutId: `yXSm4Sg9z`, style: { backgroundColor: `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, borderBottomLeftRadius: 7, borderBottomRightRadius: 7, borderTopLeftRadius: 7, borderTopRightRadius: 7, opacity: 1 }, variants: { YFwbW6sh_: { opacity: 0 } } }), c(b.div, { className: `framer-126a8bk`, "data-framer-name": `Line 3`, layoutDependency: S, layoutId: `qDQFNzD4F`, style: { backgroundColor: `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, borderBottomLeftRadius: 7, borderBottomRightRadius: 7, borderTopLeftRadius: 7, borderTopRightRadius: 7, rotate: 0 }, variants: { YFwbW6sh_: { rotate: -45 } } }) ] }) }) }) }) ); })), (Ot = [ `@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }`, `.framer-Vbrwc.framer-e33g22, .framer-Vbrwc .framer-e33g22 { display: block; }`, `.framer-Vbrwc.framer-12x6qj7 { cursor: pointer; height: 31px; overflow: hidden; position: relative; width: 31px; }`, `.framer-Vbrwc .framer-mo6mep { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 6px; will-change: var(--framer-will-change-override, transform); }`, `.framer-Vbrwc .framer-eqiune { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(48.38709677419357% - 2px / 2); will-change: var(--framer-will-change-override, transform); }`, `.framer-Vbrwc .framer-126a8bk { bottom: 6px; flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }`, `.framer-Vbrwc.framer-v-1ow9zvb .framer-mo6mep { left: calc(48.38709677419357% - 27px / 2); right: unset; top: calc(51.61290322580647% - 2px / 2); width: 27px; }`, `.framer-Vbrwc.framer-v-1ow9zvb .framer-eqiune { right: unset; top: calc(51.61290322580647% - 2px / 2); width: 1px; }`, `.framer-Vbrwc.framer-v-1ow9zvb .framer-126a8bk { bottom: unset; left: calc(48.38709677419357% - 27px / 2); right: unset; top: calc(51.61290322580647% - 2px / 2); width: 27px; }` ]), (Z = z(Dt, Ot, `framer-Vbrwc`)), (Z.displayName = `Navigation/Hamburger`), (Z.defaultProps = { height: 31, width: 31 }), A(Z, { variant: { options: [`eEWDdAIsP`, `YFwbW6sh_`], optionTitles: [`Default`, `Close`], title: `Variant`, type: S.Enum }, mNnEtKoz7: { title: `Tap`, type: S.EventHandler } }), k(Z, [{ explicitInter: !0, fonts: [] }], { supportsExplicitInterCodegen: !0 }); }); function At(e, ...t) { let n = {}; return t?.forEach((t) => t && Object.assign(n, e[t])), n; } var jt, Mt, Nt, Pt, Ft, It, Lt, Rt, zt, Bt, Vt, Ht, Q, Ut = e(() => { r(), F(), y(), i(), (jt = { JEqihjiPW: { hover: !0 } }), (Mt = [`JEqihjiPW`, `NftyupGcK`, `y8esPpZ8o`]), (Nt = `framer-jxLhA`), (Pt = { JEqihjiPW: `framer-v-1pufeoa`, NftyupGcK: `framer-v-r7kvbr`, y8esPpZ8o: `framer-v-1hqnhqv` }), (Ft = { damping: 60, delay: 0, mass: 1, stiffness: 500, type: `spring` }), (It = ({ value: e, children: t }) => { let n = u(v), r = e ?? n.transition, i = d(() => ({ ...n, transition: r }), [JSON.stringify(r)]); return c(v.Provider, { value: i, children: t }); }), (Lt = b.create(h)), (Rt = { Default: `JEqihjiPW`, Mobile: `y8esPpZ8o`, Selected: `NftyupGcK` }), (zt = ({ arrow: e, click: t, fontSize: n, height: r, hover2: i, id: a, link: o, title: s, width: c, ...l }) => ({ ...l, PhVfOodqh: t ?? l.PhVfOodqh, qsy89vfHT: o ?? l.qsy89vfHT, qYoNsjVW2: n ?? l.qYoNsjVW2 ?? 14, Rm4iGSliJ: s ?? l.Rm4iGSliJ ?? `Mockups`, S56GXOJs0: i ?? l.S56GXOJs0, variant: Rt[l.variant] ?? l.variant ?? `JEqihjiPW`, VAy4WuR7v: e ?? l.VAy4WuR7v })), (Bt = (e, t) => (e.layoutDependency ? t.join(`-`) + e.layoutDependency : t.join(`-`))), (Vt = t(function (e, t) { let r = l(null), i = t ?? r, a = n(), { activeLocale: o, setLocale: s } = L(); I(); let { style: u, className: d, layoutId: p, variant: m, Rm4iGSliJ: g, qsy89vfHT: v, VAy4WuR7v: y, PhVfOodqh: x, S56GXOJs0: S, qYoNsjVW2: C, ...w } = zt(e), { baseVariant: E, classNames: D, clearLoadingGesture: O, gestureHandlers: k, gestureVariant: A, isLoading: M, setGestureState: N, setVariant: P, variants: F } = ie({ cycleOrder: Mt, defaultVariant: `JEqihjiPW`, enabledGestures: jt, ref: i, variant: m, variantClassNames: Pt }), re = Bt(e, F), { activeVariantCallback: R, delay: z } = ne(E), ae = R(async (...e) => { if ((N({ isPressed: !1 }), x)) { let t = await x(...e); if (t === !1) return !1; } }), oe = R(async (...e) => { if ((N({ isHovered: !0 }), S)) { let t = await S(...e); if (t === !1) return !1; } }), B = [], V = j(Nt, ...B); return c(_, { id: p ?? a, children: c(Lt, { animate: F, initial: !1, children: c(It, { value: Ft, children: c(T, { href: v, motionChild: !0, nodeId: `JEqihjiPW`, openInNewTab: !1, scopeId: `lyAIxI4yA`, smoothScroll: !0, children: f(b.a, { ...w, ...k, className: `${j(V, `framer-1pufeoa`, d, D)} framer-1bu7ulq`, "data-framer-name": `Default`, "data-highlight": !0, layoutDependency: re, layoutId: `JEqihjiPW`, onMouseEnter: oe, onTap: ae, ref: i, style: { backgroundColor: `rgba(255, 255, 255, 0)`, borderBottomLeftRadius: 8, borderBottomRightRadius: 8, borderTopLeftRadius: 8, borderTopRightRadius: 8, boxShadow: `0px 0px 0px 1px rgba(255, 255, 255, 0)`, ...u }, variants: { "JEqihjiPW-hover": { backgroundColor: `rgba(255, 255, 255, 0.1)`, borderBottomLeftRadius: 999, borderBottomRightRadius: 999, borderTopLeftRadius: 999, borderTopRightRadius: 999, boxShadow: `none` }, NftyupGcK: { backgroundColor: `rgba(255, 255, 255, 0.36)`, borderBottomLeftRadius: 999, borderBottomRightRadius: 999, borderTopLeftRadius: 999, borderTopRightRadius: 999, boxShadow: `none` } }, ...At( { "JEqihjiPW-hover": { "data-framer-name": void 0 }, NftyupGcK: { "data-framer-name": `Selected` }, y8esPpZ8o: { "data-framer-name": `Mobile` } }, E, A ), children: [ c(ee, { __fromCanvasComponent: !0, children: c(h, { children: c(b.p, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-size": `14px`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-text-alignment": `left`, "--framer-text-color": `var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))` }, children: `Mockups` }) }), className: `framer-swg871`, fonts: [`FS;Satoshi-medium`], layoutDependency: re, layoutId: `bY9743nHg`, style: { "--extracted-r6o4lv": `var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))`, "--framer-link-text-color": `rgb(0, 153, 255)`, "--framer-link-text-decoration": `underline`, "--framer-paragraph-spacing": `0px`, "--variable-reference-qYoNsjVW2-lyAIxI4yA": C }, text: g, variants: { y8esPpZ8o: { "--variable-reference-qYoNsjVW2-lyAIxI4yA": C } }, verticalAlignment: `top`, withExternalLayout: !0, ...At( { y8esPpZ8o: { children: c(h, { children: c(b.p, { style: { "--font-selector": `RlM7U2F0b3NoaS1tZWRpdW0=`, "--framer-font-family": `"Satoshi", "Satoshi Placeholder", sans-serif`, "--framer-font-size": `calc(var(--variable-reference-qYoNsjVW2-lyAIxI4yA) * 1px)`, "--framer-font-weight": `500`, "--framer-letter-spacing": `-0.02em`, "--framer-line-height": `1.5em`, "--framer-text-alignment": `left`, "--framer-text-color": `var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))` }, children: `Mockups` }) }) } }, E, A ) }), y && c(te, { className: `framer-1aiy8cx`, "data-framer-name": `Icon`, fill: `rgb(255, 255, 255)`, intrinsicHeight: 32, intrinsicWidth: 32, layoutDependency: re, layoutId: `sOeezhcwo`, svg: ``, withExternalLayout: !0 }) ] }) }) }) }) }); })), (Ht = [ `@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }`, `.framer-jxLhA.framer-1bu7ulq, .framer-jxLhA .framer-1bu7ulq { display: block; }`, `.framer-jxLhA.framer-1pufeoa { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 14px 8px 14px; position: relative; text-decoration: none; width: min-content; }`, `.framer-jxLhA .framer-swg871 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }`, `.framer-jxLhA .framer-1aiy8cx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }`, `.framer-jxLhA.framer-v-1hqnhqv.framer-1pufeoa { justify-content: flex-start; padding: 4px 0px 4px 0px; }` ]), (Q = z(Vt, Ht, `framer-jxLhA`)), (Q.displayName = `Navigation/Link`), (Q.defaultProps = { height: 33, width: 83 }), A(Q, { variant: { options: [`JEqihjiPW`, `NftyupGcK`, `y8esPpZ8o`], optionTitles: [`Default`, `Selected`, `Mobile`], title: `Variant`, type: S.Enum }, Rm4iGSliJ: { defaultValue: `Mockups`, displayTextArea: !1, title: `Title`, type: S.String }, qsy89vfHT: { title: `Link`, type: S.Link }, VAy4WuR7v: { defaultValue: !1, title: `Arrow`, type: S.Boolean }, PhVfOodqh: { title: `Click`, type: S.EventHandler }, S56GXOJs0: { title: `Hover 2`, type: S.EventHandler }, qYoNsjVW2: { defaultValue: 14, title: `Font Size`, type: S.Number } }), k( Q, [ { explicitInter: !0, fonts: [ { family: `Satoshi`, source: `fontshare`, style: `normal`, url: `https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2`, weight: `500` } ] } ], { supportsExplicitInterCodegen: !0 } ); }); function $(e, ...t) { let n = {}; return t?.forEach((t) => t && Object.assign(n, e[t])), n; } var Wt, Gt, Kt, qt, Jt, Yt, Xt, Zt, Qt, $t, en, tn, nn, rn, an, on, sn, cn, ln, un = e(() => { r(), F(), y(), i(), gt(), kt(), Ut(), (Wt = M(Z)), (Gt = oe(ae(w))), (Kt = M(Q)), (qt = M(X)), (Jt = [ `xtA9ZIlcg`, `fri8OpIN6`, `ARU9gxf_5`, `iQv_Al8ab`, `vMO2UDZco`, `ioBluR8Fb`, `WaXEEZkjw`, `CYPRK_eyR`, `P4aDaN22A`, `wiw6LnqMy`, `qnaA0VPdN`, `rEEqkCkPw`, `e_q8U49tH` ]), (Yt = `framer-7NCqF`), (Xt = { ARU9gxf_5: `framer-v-1p9artn`, CYPRK_eyR: `framer-v-wp5t6m`, e_q8U49tH: `framer-v-rowedg`, fri8OpIN6: `framer-v-192xiry`, ioBluR8Fb: `framer-v-1trvw3e`, iQv_Al8ab: `framer-v-1xccllf`, P4aDaN22A: `framer-v-sl4k7n`, qnaA0VPdN: `framer-v-tppdmh`, rEEqkCkPw: `framer-v-knjmfi`, vMO2UDZco: `framer-v-e7xap8`, WaXEEZkjw: `framer-v-rstep7`, wiw6LnqMy: `framer-v-146uw9i`, xtA9ZIlcg: `framer-v-yw8tqs` }), (Zt = { damping: 60, delay: 0, mass: 1, stiffness: 320, type: `spring` }), (Qt = { damping: 60, delay: 0.3, mass: 1, stiffness: 320, type: `spring` }), ($t = { opacity: 1, rotate: 0, rotateX: 0, rotateY: 0, scale: 1, skewX: 0, skewY: 0, transition: Qt, x: 0, y: 0 }), (en = { opacity: 0.001, rotate: 0, rotateX: 0, rotateY: 0, scale: 1, skewX: 0, skewY: 0, x: 0, y: 0 }), (tn = ({ value: e, children: t }) => { let n = u(v), r = e ?? n.transition, i = d(() => ({ ...n, transition: r }), [JSON.stringify(r)]); return c(v.Provider, { value: i, children: t }); }), (nn = b.create(h)), (rn = { "FAQ section": `P4aDaN22A`, "Mobile black closed": `rEEqkCkPw`, "Mobile expanded black": `e_q8U49tH`, "Mobile expanded": `qnaA0VPdN`, "Mobile transparent": `wiw6LnqMy`, "pricing section": `CYPRK_eyR`, "Solution section": `ioBluR8Fb`, "Tablet Closed (fill)": `iQv_Al8ab`, "Tablet Closed (Transparent)": `fri8OpIN6`, "Tablet expanded (fill)": `vMO2UDZco`, "Tablet Expanded": `ARU9gxf_5`, "work section": `WaXEEZkjw`, Desktop: `xtA9ZIlcg` }), (an = ({ height: e, id: t, width: n, ...r }) => ({ ...r, variant: rn[r.variant] ?? r.variant ?? `xtA9ZIlcg` })), (on = (e, t) => (e.layoutDependency ? t.join(`-`) + e.layoutDependency : t.join(`-`))), (sn = t(function (e, t) { let r = l(null), i = t ?? r, a = n(), { activeLocale: o, setLocale: s } = L(), u = I(), { style: d, className: p, layoutId: m, variant: h, ...g } = an(e), { baseVariant: v, classNames: y, clearLoadingGesture: S, gestureHandlers: C, gestureVariant: E, isLoading: ee, setGestureState: te, setVariant: k, variants: A } = ie({ cycleOrder: Jt, defaultVariant: `xtA9ZIlcg`, ref: i, variant: h, variantClassNames: Xt }), M = on(e, A), { activeVariantCallback: P, delay: F } = ne(v), re = P(async (...e) => { k(`ARU9gxf_5`); }), z = P(async (...e) => { k(`fri8OpIN6`); }), ae = P(async (...e) => { k(`vMO2UDZco`); }), oe = P(async (...e) => { k(`iQv_Al8ab`); }), B = P(async (...e) => { k(`qnaA0VPdN`); }), V = P(async (...e) => { k(`wiw6LnqMy`); }), se = P(async (...e) => { k(`e_q8U49tH`); }), ce = P(async (...e) => { k(`rEEqkCkPw`); }), H = P(async (...e) => { await F(() => k(`fri8OpIN6`), 300); }), U = P(async (...e) => { await F(() => k(`iQv_Al8ab`), 300); }), W = P(async (...e) => { await F(() => k(`wiw6LnqMy`), 300); }), le = P(async (...e) => { await F(() => k(`rEEqkCkPw`), 300); }), ue = [], de = j(Yt, ...ue), fe = () => !![ `fri8OpIN6`, `ARU9gxf_5`, `iQv_Al8ab`, `vMO2UDZco`, `wiw6LnqMy`, `qnaA0VPdN`, `rEEqkCkPw`, `e_q8U49tH` ].includes(v); R(); let G = () => ![ `fri8OpIN6`, `ARU9gxf_5`, `iQv_Al8ab`, `vMO2UDZco`, `wiw6LnqMy`, `qnaA0VPdN`, `rEEqkCkPw`, `e_q8U49tH` ].includes(v), pe = () => ![`fri8OpIN6`, `ARU9gxf_5`, `vMO2UDZco`, `wiw6LnqMy`, `qnaA0VPdN`, `e_q8U49tH`].includes(v); return c(_, { id: m ?? a, children: c(nn, { animate: A, initial: !1, children: c(tn, { value: Zt, children: f(b.nav, { ...g, ...C, className: j(de, `framer-yw8tqs`, p, y), "data-framer-name": `Desktop`, layoutDependency: M, layoutId: `xtA9ZIlcg`, ref: i, style: { "--border-bottom-width": `0px`, "--border-color": `rgba(0, 0, 0, 0)`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-style": `solid`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `rgba(0, 0, 0, 0)`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `none`, ...d }, variants: { ARU9gxf_5: { "--border-bottom-width": `1px`, "--border-color": `var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-style": `solid`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))`, borderBottomLeftRadius: 48, borderBottomRightRadius: 48, WebkitBackdropFilter: `none` }, CYPRK_eyR: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `rgba(0, 0, 0, 0)`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `none` }, e_q8U49tH: { "--border-bottom-width": `1px`, "--border-color": `var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-style": `solid`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))`, borderBottomLeftRadius: 48, borderBottomRightRadius: 48, WebkitBackdropFilter: `none` }, fri8OpIN6: { backdropFilter: `blur(5px)`, WebkitBackdropFilter: `blur(5px)` }, ioBluR8Fb: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `rgba(0, 0, 0, 0)`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `none` }, iQv_Al8ab: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `blur(5px)`, backgroundColor: `var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `blur(5px)` }, P4aDaN22A: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `rgba(0, 0, 0, 0)`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `none` }, qnaA0VPdN: { "--border-bottom-width": `1px`, "--border-color": `var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-style": `solid`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))`, borderBottomLeftRadius: 48, borderBottomRightRadius: 48, WebkitBackdropFilter: `none` }, rEEqkCkPw: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `blur(5px)`, backgroundColor: `var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `blur(5px)` }, vMO2UDZco: { "--border-bottom-width": `1px`, "--border-color": `var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-style": `solid`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))`, borderBottomLeftRadius: 48, borderBottomRightRadius: 48, WebkitBackdropFilter: `none` }, WaXEEZkjw: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `none`, backgroundColor: `rgba(0, 0, 0, 0)`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `none` }, wiw6LnqMy: { "--border-bottom-width": `0px`, "--border-left-width": `0px`, "--border-right-width": `0px`, "--border-top-width": `0px`, backdropFilter: `blur(5px)`, backgroundColor: `rgba(0, 0, 0, 0)`, borderBottomLeftRadius: 0, borderBottomRightRadius: 0, WebkitBackdropFilter: `blur(5px)` } }, ...$( { ARU9gxf_5: { "data-border": !0, "data-framer-name": `Tablet Expanded` }, CYPRK_eyR: { "data-framer-name": `pricing section` }, e_q8U49tH: { "data-border": !0, "data-framer-name": `Mobile expanded black` }, fri8OpIN6: { "data-framer-name": `Tablet Closed (Transparent)` }, ioBluR8Fb: { "data-framer-name": `Solution section` }, iQv_Al8ab: { "data-framer-name": `Tablet Closed (fill)` }, P4aDaN22A: { "data-framer-name": `FAQ section` }, qnaA0VPdN: { "data-border": !0, "data-framer-name": `Mobile expanded` }, rEEqkCkPw: { "data-framer-name": `Mobile black closed` }, vMO2UDZco: { "data-border": !0, "data-framer-name": `Tablet expanded (fill)` }, WaXEEZkjw: { "data-framer-name": `work section` }, wiw6LnqMy: { "data-framer-name": `Mobile transparent` } }, v, E ), children: [ fe() && f(b.div, { className: `framer-1en80ge`, "data-framer-name": `Mobile Closed`, layoutDependency: M, layoutId: `kyPJ0j0jF`, children: [ fe() && c(x, { ...$( { ARU9gxf_5: { height: 31, width: `31px`, y: (u?.y || 0) + 34 + 0 + 5 }, e_q8U49tH: { height: 31, width: `27px`, y: (u?.y || 0) + 24 + 0 + 1 }, fri8OpIN6: { height: 31, width: `31px`, y: (u?.y || 0) + 34 + 0 + 5 }, iQv_Al8ab: { height: 31, width: `31px`, y: (u?.y || 0) + 34 + 0 + 5 }, qnaA0VPdN: { height: 31, width: `27px`, y: (u?.y || 0) + 24 + 0 + 1 }, rEEqkCkPw: { height: 31, width: `27px`, y: (u?.y || 0) + 24 + 0 + 1 }, vMO2UDZco: { height: 31, width: `31px`, y: (u?.y || 0) + 34 + 0 + 5 }, wiw6LnqMy: { height: 31, width: `27px`, y: (u?.y || 0) + 24 + 0 + 1 } }, v, E ), children: c(O, { className: `framer-1nschop-container`, "data-framer-name": `Hamburger icon`, layoutDependency: M, layoutId: `X5CY7akAI-container`, name: `Hamburger icon`, nodeId: `X5CY7akAI`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Z, { height: `100%`, id: `X5CY7akAI`, layoutId: `X5CY7akAI`, name: `Hamburger icon`, style: { height: `100%`, width: `100%` }, variant: `eEWDdAIsP`, width: `100%`, ...$( { ARU9gxf_5: { mNnEtKoz7: z, variant: `YFwbW6sh_` }, e_q8U49tH: { mNnEtKoz7: ce, variant: `YFwbW6sh_` }, fri8OpIN6: { mNnEtKoz7: re }, iQv_Al8ab: { mNnEtKoz7: ae }, qnaA0VPdN: { mNnEtKoz7: V, variant: `YFwbW6sh_` }, rEEqkCkPw: { mNnEtKoz7: se }, vMO2UDZco: { mNnEtKoz7: oe, variant: `YFwbW6sh_` }, wiw6LnqMy: { mNnEtKoz7: B } }, v, E ) }) }) }), c(T, { motionChild: !0, nodeId: `JfaBlSAV5`, scopeId: `vf5tqoe0G`, ...$( { fri8OpIN6: { href: { webPageId: `MzVDsyX25` }, openInNewTab: !1 } }, v, E ), children: c(Gt, { __perspectiveFX: !1, __smartComponentFX: !0, __targetOpacity: 1, animate: $t, background: { alt: ``, fit: `fill`, pixelHeight: 176, pixelWidth: 383, src: `https://framerusercontent.com/images/GMVhZPtsuWWrqENoEkFJHvidmI.svg` }, className: `framer-1mr16jn framer-1ynafac`, "data-framer-appear-id": `1mr16jn`, initial: en, layoutDependency: M, layoutId: `JfaBlSAV5`, optimized: !0, ...$( { ARU9gxf_5: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 34 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `95px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } }, e_q8U49tH: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 24 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `77px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } }, fri8OpIN6: { animate: void 0, as: `a`, background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 34 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `95px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` }, initial: void 0, optimized: void 0 }, iQv_Al8ab: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 34 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `95px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } }, qnaA0VPdN: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 24 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `77px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } }, rEEqkCkPw: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 24 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `77px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } }, vMO2UDZco: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 34 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `95px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } }, wiw6LnqMy: { background: { alt: `Edit Lobby Logo`, fit: `fill`, loading: N((u?.y || 0) + 24 + 0 + 0), pixelHeight: 299, pixelWidth: 697, sizes: `77px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` } } }, v, E ) }) }) ] }), fe() && f(b.div, { className: `framer-62i8gb`, "data-framer-name": `Mobile Expanded`, layoutDependency: M, layoutId: `leLLtFoO4`, children: [ f(b.div, { className: `framer-qpgx3s`, "data-framer-name": `Links`, layoutDependency: M, layoutId: `MVuiRCGub`, children: [ c(D, { links: [ { href: { webPageId: `NGKxYtLvO` }, implicitPathVariables: void 0 }, { href: { webPageId: `NGKxYtLvO` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `NGKxYtLvO` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `NGKxYtLvO` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `NGKxYtLvO` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, ...$( { ARU9gxf_5: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 0 }, e_q8U49tH: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 0 }, fri8OpIN6: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 0 }, iQv_Al8ab: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 0 }, qnaA0VPdN: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 0 }, rEEqkCkPw: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 0 }, vMO2UDZco: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 0 }, wiw6LnqMy: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 0 } }, v, E ), children: c(O, { className: `framer-rgelks-container`, layoutDependency: M, layoutId: `Nmpc8_MvR-container`, nodeId: `Nmpc8_MvR`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `Nmpc8_MvR`, layoutId: `Nmpc8_MvR`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Solution`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%`, ...$( { ARU9gxf_5: { PhVfOodqh: H, qsy89vfHT: e[2], qYoNsjVW2: 16 }, e_q8U49tH: { PhVfOodqh: le, qsy89vfHT: e[8] }, fri8OpIN6: { qsy89vfHT: e[1], qYoNsjVW2: 16 }, iQv_Al8ab: { qsy89vfHT: e[3], qYoNsjVW2: 16 }, qnaA0VPdN: { PhVfOodqh: W, qsy89vfHT: e[6] }, rEEqkCkPw: { qsy89vfHT: e[7] }, vMO2UDZco: { PhVfOodqh: U, qsy89vfHT: e[4], qYoNsjVW2: 16 }, wiw6LnqMy: { qsy89vfHT: e[5] } }, v, E ) }) }) }) }), c(D, { links: [ { href: { webPageId: `KE2eu5UUp` }, implicitPathVariables: void 0 }, { href: { webPageId: `KE2eu5UUp` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `KE2eu5UUp` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `KE2eu5UUp` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `KE2eu5UUp` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, ...$( { ARU9gxf_5: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 41 }, e_q8U49tH: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 41 }, fri8OpIN6: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 41 }, iQv_Al8ab: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 41 }, qnaA0VPdN: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 41 }, rEEqkCkPw: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 41 }, vMO2UDZco: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 41 }, wiw6LnqMy: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 41 } }, v, E ), children: c(O, { className: `framer-1eayadz-container`, layoutDependency: M, layoutId: `GYHfdL_yH-container`, nodeId: `GYHfdL_yH`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `GYHfdL_yH`, layoutId: `GYHfdL_yH`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Work`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%`, ...$( { ARU9gxf_5: { PhVfOodqh: H, qsy89vfHT: e[2], qYoNsjVW2: 16 }, e_q8U49tH: { PhVfOodqh: le, qsy89vfHT: e[8] }, fri8OpIN6: { qsy89vfHT: e[1], qYoNsjVW2: 16 }, iQv_Al8ab: { qsy89vfHT: e[3], qYoNsjVW2: 16 }, qnaA0VPdN: { PhVfOodqh: W, qsy89vfHT: e[6] }, rEEqkCkPw: { qsy89vfHT: e[7] }, vMO2UDZco: { PhVfOodqh: U, qsy89vfHT: e[4], qYoNsjVW2: 16 }, wiw6LnqMy: { qsy89vfHT: e[5] } }, v, E ) }) }) }) }), c(D, { links: [ { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, ...$( { ARU9gxf_5: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 82 }, e_q8U49tH: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 82 }, fri8OpIN6: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 82 }, iQv_Al8ab: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 82 }, qnaA0VPdN: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 82 }, rEEqkCkPw: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 82 }, vMO2UDZco: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 82 }, wiw6LnqMy: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 82 } }, v, E ), children: c(O, { className: `framer-kwm55l-container`, layoutDependency: M, layoutId: `hfJmE0f21-container`, nodeId: `hfJmE0f21`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `hfJmE0f21`, layoutId: `hfJmE0f21`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Features`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%`, ...$( { ARU9gxf_5: { PhVfOodqh: H, qsy89vfHT: e[2], qYoNsjVW2: 16, Rm4iGSliJ: `Pricing` }, e_q8U49tH: { PhVfOodqh: le, qsy89vfHT: e[8], Rm4iGSliJ: `Pricing` }, fri8OpIN6: { qsy89vfHT: e[1], qYoNsjVW2: 16, Rm4iGSliJ: `Pricing` }, iQv_Al8ab: { qsy89vfHT: e[3], qYoNsjVW2: 16, Rm4iGSliJ: `Pricing` }, qnaA0VPdN: { PhVfOodqh: W, qsy89vfHT: e[6], Rm4iGSliJ: `Pricing` }, rEEqkCkPw: { qsy89vfHT: e[7], Rm4iGSliJ: `Pricing` }, vMO2UDZco: { PhVfOodqh: U, qsy89vfHT: e[4], qYoNsjVW2: 16, Rm4iGSliJ: `Pricing` }, wiw6LnqMy: { qsy89vfHT: e[5], Rm4iGSliJ: `Pricing` } }, v, E ) }) }) }) }), c(D, { links: [ { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { webPageId: `augiA20Il` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, ...$( { ARU9gxf_5: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 123 }, e_q8U49tH: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 123 }, fri8OpIN6: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 123 }, iQv_Al8ab: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 123 }, qnaA0VPdN: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 123 }, rEEqkCkPw: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 123 }, vMO2UDZco: { y: (u?.y || 0) + 34 + 65 + 0 + 0 + 0 + 123 }, wiw6LnqMy: { y: (u?.y || 0) + 24 + 57 + 0 + 0 + 0 + 123 } }, v, E ), children: c(O, { className: `framer-1wxxfzk-container`, layoutDependency: M, layoutId: `HeQcG7hlS-container`, nodeId: `HeQcG7hlS`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `HeQcG7hlS`, layoutId: `HeQcG7hlS`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Pricing`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%`, ...$( { ARU9gxf_5: { PhVfOodqh: H, qsy89vfHT: e[2], qYoNsjVW2: 16, Rm4iGSliJ: `FAQ` }, e_q8U49tH: { PhVfOodqh: le, qsy89vfHT: e[8], Rm4iGSliJ: `FAQ` }, fri8OpIN6: { qsy89vfHT: e[1], qYoNsjVW2: 16, Rm4iGSliJ: `FAQ` }, iQv_Al8ab: { qsy89vfHT: e[3], qYoNsjVW2: 16, Rm4iGSliJ: `FAQ` }, qnaA0VPdN: { PhVfOodqh: W, qsy89vfHT: e[6], Rm4iGSliJ: `FAQ` }, rEEqkCkPw: { qsy89vfHT: e[7], Rm4iGSliJ: `FAQ` }, vMO2UDZco: { PhVfOodqh: U, qsy89vfHT: e[4], qYoNsjVW2: 16, Rm4iGSliJ: `FAQ` }, wiw6LnqMy: { qsy89vfHT: e[5], Rm4iGSliJ: `FAQ` } }, v, E ) }) }) }) }), G() && c(D, { links: [ { href: { webPageId: `yYla3htJR` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, children: c(O, { className: `framer-oqauct-container`, layoutDependency: M, layoutId: `VtI8Rt5cP-container`, nodeId: `VtI8Rt5cP`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `VtI8Rt5cP`, layoutId: `VtI8Rt5cP`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Coming Soon`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%` }) }) }) }), G() && c(D, { links: [ { href: { webPageId: `Mw2Q_neZP` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, children: c(O, { className: `framer-kgql8i-container`, layoutDependency: M, layoutId: `uNj80Ybqw-container`, nodeId: `uNj80Ybqw`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `uNj80Ybqw`, layoutId: `uNj80Ybqw`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Legal`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%` }) }) }) }), G() && c(D, { links: [ { href: { webPageId: `tIUqB8oYE` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, children: c(O, { className: `framer-18ximpu-container`, layoutDependency: M, layoutId: `jW31VqtfZ-container`, nodeId: `jW31VqtfZ`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `jW31VqtfZ`, layoutId: `jW31VqtfZ`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `404`, variant: `y8esPpZ8o`, VAy4WuR7v: !1, width: `100%` }) }) }) }) ] }), f(b.div, { className: `framer-1nabwpv`, "data-framer-name": `Buttons`, layoutDependency: M, layoutId: `hqQyne0gF`, children: [ pe() && c(D, { links: [ { href: { webPageId: `k2_VN0i0s` }, implicitPathVariables: void 0 }, { href: { webPageId: `k2_VN0i0s` }, implicitPathVariables: void 0 }, { href: { webPageId: `k2_VN0i0s` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 69, ...$( { iQv_Al8ab: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 34 + 65 + 0 + 180 + 0 + 0 }, rEEqkCkPw: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 24 + 57 + 0 + 180 + 0 + 0 } }, v, E ), children: c(O, { className: `framer-te6a6f-container`, layoutDependency: M, layoutId: `z7PrItor3-container`, nodeId: `z7PrItor3`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(X, { GLWImmBy_: !1, HBR9r6Wzz: !1, height: `100%`, id: `z7PrItor3`, jSn1qfWzp: 21, kTynE2FQc: `regular`, layoutId: `z7PrItor3`, LdEuC589O: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))`, nL8OQ61g_: `House`, nZIvc5R21: `Lightning`, odb0bWURU: e[0], QQq_dHjj6: `fill`, rt9DsEiKG: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))`, style: { width: `100%` }, tipS0P7cJ: `Tutorials`, Ud3HdUmNm: !1, variant: `QUTH27_ce`, width: `100%`, ...$( { iQv_Al8ab: { odb0bWURU: e[1], tipS0P7cJ: `Talent` }, rEEqkCkPw: { odb0bWURU: e[2], tipS0P7cJ: `Talent` } }, v, E ) }) }) }) }), c(D, { links: [ { href: { webPageId: `Rcl9GL45t` }, implicitPathVariables: void 0 }, { href: { webPageId: `Rcl9GL45t` }, implicitPathVariables: void 0 }, { href: { webPageId: `Rcl9GL45t` }, implicitPathVariables: void 0 }, { href: { webPageId: `Rcl9GL45t` }, implicitPathVariables: void 0 }, { href: { webPageId: `Rcl9GL45t` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 69, ...$( { ARU9gxf_5: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 34 + 65 + 0 + 180 + 0 + 0 }, e_q8U49tH: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 24 + 57 + 0 + 180 + 0 + 0 }, fri8OpIN6: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 34 + 65 + 0 + 180 + 0 + 0 }, iQv_Al8ab: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 34 + 65 + 0 + 180 + 0 + 85 }, qnaA0VPdN: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 24 + 57 + 0 + 180 + 0 + 0 }, rEEqkCkPw: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 24 + 57 + 0 + 180 + 0 + 85 }, vMO2UDZco: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 34 + 65 + 0 + 180 + 0 + 0 }, wiw6LnqMy: { width: `calc(${u?.width || `100vw`} - 48px)`, y: (u?.y || 0) + 24 + 57 + 0 + 180 + 0 + 0 } }, v, E ), children: c(O, { className: `framer-7kbi8k-container`, layoutDependency: M, layoutId: `kIshqNu6l-container`, nodeId: `kIshqNu6l`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(X, { GLWImmBy_: !1, HBR9r6Wzz: !1, height: `100%`, id: `kIshqNu6l`, jSn1qfWzp: 21, kTynE2FQc: `regular`, layoutId: `kIshqNu6l`, LdEuC589O: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))`, nL8OQ61g_: `House`, nZIvc5R21: `Lightning`, odb0bWURU: e[0], QQq_dHjj6: `fill`, rt9DsEiKG: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))`, style: { width: `100%` }, tipS0P7cJ: `Book a call`, Ud3HdUmNm: !1, variant: `ke7By49HW`, width: `100%`, ...$( { ARU9gxf_5: { odb0bWURU: `https://calendly.com/hello-editlobby/intro-to-edit-lobby` }, e_q8U49tH: { odb0bWURU: `https://calendly.com/hello-editlobby/intro-to-edit-lobby` }, fri8OpIN6: { odb0bWURU: e[1] }, iQv_Al8ab: { odb0bWURU: e[2] }, qnaA0VPdN: { odb0bWURU: `https://calendly.com/hello-editlobby/intro-to-edit-lobby` }, rEEqkCkPw: { odb0bWURU: e[4] }, vMO2UDZco: { odb0bWURU: `https://calendly.com/hello-editlobby/intro-to-edit-lobby` }, wiw6LnqMy: { odb0bWURU: e[3] } }, v, E ) }) }) }) }) ] }) ] }), G() && c(b.div, { className: `framer-18g6jok`, "data-border": !0, "data-framer-name": `Desktop`, layoutDependency: M, layoutId: `xkYG_Bu1F`, style: { "--border-bottom-width": `1px`, "--border-color": `var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))`, "--border-left-width": `1px`, "--border-right-width": `1px`, "--border-style": `solid`, "--border-top-width": `1px`, backdropFilter: `blur(10px)`, backgroundColor: `rgba(13, 13, 13, 0.5)`, borderBottomLeftRadius: 999, borderBottomRightRadius: 999, borderTopLeftRadius: 999, borderTopRightRadius: 999, WebkitBackdropFilter: `blur(10px)` }, children: f(b.div, { className: `framer-5x15bd`, "data-framer-name": `Container`, layoutDependency: M, layoutId: `P6NFJBm43`, children: [ c(T, { href: { webPageId: `MzVDsyX25` }, motionChild: !0, nodeId: `TV0nGzy9u`, openInNewTab: !1, scopeId: `vf5tqoe0G`, children: c(w, { as: `a`, background: { alt: `Edit Lobby logo`, fit: `fill`, loading: N( (u?.y || 0) + (24 + ((u?.height || 108) - 48 - 93) / 2) + 12 + 20.5 ), pixelHeight: 299, pixelWidth: 697, sizes: `67px`, src: `images/Ethnify-logo.png`, srcSet: `images/Ethnify-logo.png?scale-down-to=512 512w,images/Ethnify-logo.png 697w` }, className: `framer-1ljfbz0 framer-1ynafac`, layoutDependency: M, layoutId: `TV0nGzy9u` }) }), f(b.div, { className: `framer-143tf2n`, layoutDependency: M, layoutId: `KqRo706_E`, children: [ c(D, { links: [ { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:KcmypeDai`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, y: (u?.y || 0) + (24 + ((u?.height || 108) - 48 - 93) / 2) + 12 + 18.5 + -0.5, children: c(O, { className: `framer-ug7vl9-container`, layoutDependency: M, layoutId: `U4nSjdOib-container`, nodeId: `U4nSjdOib`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `U4nSjdOib`, layoutId: `U4nSjdOib`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Solution`, variant: `JEqihjiPW`, VAy4WuR7v: !1, width: `100%`, ...$( { CYPRK_eyR: { qsy89vfHT: e[3] }, ioBluR8Fb: { qsy89vfHT: e[1], variant: `NftyupGcK` }, P4aDaN22A: { qsy89vfHT: e[4] }, WaXEEZkjw: { qsy89vfHT: e[2] } }, v, E ) }) }) }) }), c(D, { links: [ { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:nHtFYSwXH`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, y: (u?.y || 0) + (24 + ((u?.height || 108) - 48 - 93) / 2) + 12 + 18.5 + -0.5, children: c(O, { className: `framer-kb8ox3-container`, layoutDependency: M, layoutId: `nTkOFfgqP-container`, nodeId: `nTkOFfgqP`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `nTkOFfgqP`, layoutId: `nTkOFfgqP`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Work`, variant: `JEqihjiPW`, VAy4WuR7v: !1, width: `100%`, ...$( { CYPRK_eyR: { qsy89vfHT: e[3] }, ioBluR8Fb: { qsy89vfHT: e[1] }, P4aDaN22A: { qsy89vfHT: e[4] }, WaXEEZkjw: { qsy89vfHT: e[2], variant: `NftyupGcK` } }, v, E ) }) }) }) }), c(D, { links: [ { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:PPhxDISL2`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, y: (u?.y || 0) + (24 + ((u?.height || 108) - 48 - 93) / 2) + 12 + 18.5 + -0.5, children: c(O, { className: `framer-1nid1sb-container`, layoutDependency: M, layoutId: `EZu3qTClC-container`, nodeId: `EZu3qTClC`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `EZu3qTClC`, layoutId: `EZu3qTClC`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `Pricing`, variant: `JEqihjiPW`, VAy4WuR7v: !1, width: `100%`, ...$( { CYPRK_eyR: { qsy89vfHT: e[3], variant: `NftyupGcK` }, ioBluR8Fb: { qsy89vfHT: e[1] }, P4aDaN22A: { qsy89vfHT: e[4] }, WaXEEZkjw: { qsy89vfHT: e[2] } }, v, E ) }) }) }) }), c(D, { links: [ { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 }, { href: { hash: `:J73_Aj3MV`, webPageId: `MzVDsyX25` }, implicitPathVariables: void 0 } ], children: (e) => c(x, { height: 33, y: (u?.y || 0) + (24 + ((u?.height || 108) - 48 - 93) / 2) + 12 + 18.5 + -0.5, children: c(O, { className: `framer-zcsk97-container`, layoutDependency: M, layoutId: `yxhvwYXD2-container`, nodeId: `yxhvwYXD2`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(Q, { height: `100%`, id: `yxhvwYXD2`, layoutId: `yxhvwYXD2`, qsy89vfHT: e[0], qYoNsjVW2: 14, Rm4iGSliJ: `FAQ`, variant: `JEqihjiPW`, VAy4WuR7v: !1, width: `100%`, ...$( { CYPRK_eyR: { qsy89vfHT: e[3] }, ioBluR8Fb: { qsy89vfHT: e[1] }, P4aDaN22A: { qsy89vfHT: e[4], variant: `NftyupGcK` }, WaXEEZkjw: { qsy89vfHT: e[2] } }, v, E ) }) }) }) }) ] }), c(b.div, { className: `framer-6royn1`, layoutDependency: M, layoutId: `TOvNZhI2X`, children: c(x, { height: 69, y: (u?.y || 0) + (24 + ((u?.height || 108) - 48 - 93) / 2) + 12 + 0 + 0, children: c(O, { className: `framer-11ohocw-container`, layoutDependency: M, layoutId: `swEhrStDO-container`, nodeId: `swEhrStDO`, rendersWithMotion: !0, scopeId: `vf5tqoe0G`, children: c(X, { GLWImmBy_: !1, HBR9r6Wzz: !1, height: `100%`, id: `swEhrStDO`, jSn1qfWzp: 21, kTynE2FQc: `regular`, layoutId: `swEhrStDO`, LdEuC589O: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))`, nL8OQ61g_: `House`, nZIvc5R21: `CalendarPlus`, odb0bWURU: `https://calendly.com/hello-editlobby/intro-to-edit-lobby`, QQq_dHjj6: `regular`, rt9DsEiKG: `var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))`, tipS0P7cJ: `Book a call`, Ud3HdUmNm: !1, variant: `wnk_W7u7s`, width: `100%` }) }) }) }) ] }) }) ] }) }) }) }); })), (cn = [ `@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }`, `.framer-7NCqF.framer-1ynafac, .framer-7NCqF .framer-1ynafac { display: block; }`, `.framer-7NCqF.framer-yw8tqs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 64px 24px 64px; position: relative; width: 1440px; }`, `.framer-7NCqF .framer-1en80ge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 86px; }`, `.framer-7NCqF .framer-1nschop-container { flex: none; height: 31px; position: relative; width: 31px; }`, `.framer-7NCqF .framer-1mr16jn { aspect-ratio: 2.1769911504424777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 92px); overflow: hidden; position: relative; width: 48%; }`, `.framer-7NCqF .framer-62i8gb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 200px; }`, `.framer-7NCqF .framer-qpgx3s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }`, `.framer-7NCqF .framer-rgelks-container, .framer-7NCqF .framer-1eayadz-container, .framer-7NCqF .framer-kwm55l-container, .framer-7NCqF .framer-1wxxfzk-container, .framer-7NCqF .framer-oqauct-container, .framer-7NCqF .framer-kgql8i-container, .framer-7NCqF .framer-18ximpu-container, .framer-7NCqF .framer-ug7vl9-container, .framer-7NCqF .framer-kb8ox3-container, .framer-7NCqF .framer-1nid1sb-container, .framer-7NCqF .framer-zcsk97-container, .framer-7NCqF .framer-11ohocw-container { flex: none; height: auto; position: relative; width: auto; }`, `.framer-7NCqF .framer-1nabwpv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }`, `.framer-7NCqF .framer-te6a6f-container, .framer-7NCqF .framer-7kbi8k-container { flex: none; height: auto; position: relative; width: 100%; }`, `.framer-7NCqF .framer-18g6jok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 12px 24px 12px 24px; position: relative; width: min-content; }`, `.framer-7NCqF .framer-5x15bd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }`, `.framer-7NCqF .framer-1ljfbz0 { aspect-ratio: 2.392857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; text-decoration: none; width: 67px; }`, `.framer-7NCqF .framer-143tf2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 310px; }`, `.framer-7NCqF .framer-6royn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }`, `.framer-7NCqF.framer-v-192xiry.framer-yw8tqs { flex-direction: column; height: 82px; justify-content: flex-start; padding: 34px 24px 16px 24px; width: 810px; }`, `.framer-7NCqF.framer-v-192xiry .framer-1en80ge, .framer-7NCqF.framer-v-1p9artn .framer-1en80ge, .framer-7NCqF.framer-v-1xccllf .framer-1en80ge, .framer-7NCqF.framer-v-e7xap8 .framer-1en80ge, .framer-7NCqF.framer-v-146uw9i .framer-1en80ge, .framer-7NCqF.framer-v-tppdmh .framer-1en80ge, .framer-7NCqF.framer-v-knjmfi .framer-1en80ge, .framer-7NCqF.framer-v-rowedg .framer-1en80ge { gap: unset; justify-content: space-between; width: 100%; }`, `.framer-7NCqF.framer-v-192xiry .framer-1nschop-container, .framer-7NCqF.framer-v-1p9artn .framer-1nschop-container, .framer-7NCqF.framer-v-1xccllf .framer-1nschop-container, .framer-7NCqF.framer-v-e7xap8 .framer-1nschop-container { order: 1; }`, `.framer-7NCqF.framer-v-192xiry .framer-1mr16jn { aspect-ratio: 2.317073170731707 / 1; height: var(--framer-aspect-ratio-supported, 41px); order: 0; text-decoration: none; width: 95px; }`, `.framer-7NCqF.framer-v-192xiry .framer-62i8gb, .framer-7NCqF.framer-v-1xccllf .framer-62i8gb, .framer-7NCqF.framer-v-146uw9i .framer-62i8gb, .framer-7NCqF.framer-v-knjmfi .framer-62i8gb { flex-direction: column; gap: 24px; justify-content: flex-start; width: 100%; }`, `.framer-7NCqF.framer-v-192xiry .framer-qpgx3s, .framer-7NCqF.framer-v-192xiry .framer-1nabwpv, .framer-7NCqF.framer-v-1p9artn .framer-qpgx3s, .framer-7NCqF.framer-v-1p9artn .framer-1nabwpv, .framer-7NCqF.framer-v-1xccllf .framer-qpgx3s, .framer-7NCqF.framer-v-1xccllf .framer-1nabwpv, .framer-7NCqF.framer-v-e7xap8 .framer-qpgx3s, .framer-7NCqF.framer-v-e7xap8 .framer-1nabwpv, .framer-7NCqF.framer-v-146uw9i .framer-qpgx3s, .framer-7NCqF.framer-v-146uw9i .framer-1nabwpv, .framer-7NCqF.framer-v-tppdmh .framer-qpgx3s, .framer-7NCqF.framer-v-tppdmh .framer-1nabwpv, .framer-7NCqF.framer-v-knjmfi .framer-qpgx3s, .framer-7NCqF.framer-v-knjmfi .framer-1nabwpv, .framer-7NCqF.framer-v-rowedg .framer-qpgx3s, .framer-7NCqF.framer-v-rowedg .framer-1nabwpv { flex: none; width: 100%; }`, `.framer-7NCqF.framer-v-1p9artn.framer-yw8tqs, .framer-7NCqF.framer-v-e7xap8.framer-yw8tqs { flex-direction: column; justify-content: flex-start; padding: 34px 24px 32px 24px; width: 810px; will-change: var(--framer-will-change-override, transform); }`, `.framer-7NCqF.framer-v-1p9artn .framer-1mr16jn, .framer-7NCqF.framer-v-1xccllf .framer-1mr16jn, .framer-7NCqF.framer-v-e7xap8 .framer-1mr16jn { aspect-ratio: unset; height: 41px; order: 0; width: 95px; }`, `.framer-7NCqF.framer-v-1p9artn .framer-62i8gb, .framer-7NCqF.framer-v-e7xap8 .framer-62i8gb, .framer-7NCqF.framer-v-tppdmh .framer-62i8gb, .framer-7NCqF.framer-v-rowedg .framer-62i8gb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; width: 100%; }`, `.framer-7NCqF.framer-v-1xccllf.framer-yw8tqs { flex-direction: column; height: 90px; justify-content: flex-start; padding: 34px 24px 16px 24px; width: 810px; }`, `.framer-7NCqF.framer-v-146uw9i.framer-yw8tqs, .framer-7NCqF.framer-v-knjmfi.framer-yw8tqs { flex-direction: column; height: 68px; justify-content: flex-start; padding: 24px 24px 16px 24px; width: 393px; }`, `.framer-7NCqF.framer-v-146uw9i .framer-1nschop-container, .framer-7NCqF.framer-v-tppdmh .framer-1nschop-container, .framer-7NCqF.framer-v-knjmfi .framer-1nschop-container, .framer-7NCqF.framer-v-rowedg .framer-1nschop-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 27px); order: 1; width: 27px; }`, `.framer-7NCqF.framer-v-146uw9i .framer-1mr16jn, .framer-7NCqF.framer-v-tppdmh .framer-1mr16jn, .framer-7NCqF.framer-v-knjmfi .framer-1mr16jn, .framer-7NCqF.framer-v-rowedg .framer-1mr16jn { aspect-ratio: 2.3333333333333335 / 1; height: var(--framer-aspect-ratio-supported, 33px); order: 0; width: 77px; }`, `.framer-7NCqF.framer-v-tppdmh.framer-yw8tqs, .framer-7NCqF.framer-v-rowedg.framer-yw8tqs { flex-direction: column; justify-content: flex-start; padding: 24px 24px 32px 24px; width: 393px; will-change: var(--framer-will-change-override, transform); }`, `.framer-7NCqF[data-border="true"]::after, .framer-7NCqF [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; }` ]), (ln = z(sn, cn, `framer-7NCqF`)), (ln.displayName = `Navigation/Navigation`), (ln.defaultProps = { height: 108, width: 1440 }), A(ln, { variant: { options: [ `xtA9ZIlcg`, `fri8OpIN6`, `ARU9gxf_5`, `iQv_Al8ab`, `vMO2UDZco`, `ioBluR8Fb`, `WaXEEZkjw`, `CYPRK_eyR`, `P4aDaN22A`, `wiw6LnqMy`, `qnaA0VPdN`, `rEEqkCkPw`, `e_q8U49tH` ], optionTitles: [ `Desktop`, `Tablet Closed (Transparent)`, `Tablet Expanded`, `Tablet Closed (fill)`, `Tablet expanded (fill)`, `Solution section`, `work section`, `pricing section`, `FAQ section`, `Mobile transparent`, `Mobile expanded`, `Mobile black closed`, `Mobile expanded black` ], title: `Variant`, type: S.Enum } }), k(ln, [{ explicitInter: !0, fonts: [] }, ...Wt, ...Kt, ...qt], { supportsExplicitInterCodegen: !0 }); }); export { q as FramerF5zSwZv4k, X as Framerh9up4_pFN, ln as Framervf5tqoe0G, J as Icon, ue as SmoothScroll, Re as init_F5zSwZv4k, et as init_Phosphor, de as init_Smooth_Scroll, gt as init_h9up4_pFN, un as init_vf5tqoe0G }; //# sourceMappingURL=shared-lib.Dk4hdxmM.mjs.map