diff --git a/css/normalize.css b/css/normalize.css new file mode 100644 index 0000000..411d0b2 --- /dev/null +++ b/css/normalize.css @@ -0,0 +1,355 @@ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS and IE text size adjust after device orientation change, + * without disabling user zoom. + */ +html { + font-family: sans-serif; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} +/** + * Remove default margin. + */ +body { + margin: 0; +} +/* HTML5 display definitions + ========================================================================== */ +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ +audio, +canvas, +progress, +video { + display: inline-block; + /* 1 */ + vertical-align: baseline; + /* 2 */ +} +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ +audio:not([controls]) { + display: none; + height: 0; +} +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. + */ +[hidden], +template { + display: none; +} +/* Links + ========================================================================== */ +/** + * Remove the gray background color from active links in IE 10. + */ +a { + background-color: transparent; +} +/** + * Improve readability of focused elements when they are also in an + * active/hover state. + */ +a:active, +a:hover { + outline: 0; +} +/* Text-level semantics + ========================================================================== */ +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ +abbr[title] { + border-bottom: 1px dotted; +} +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ +b, +strong { + font-weight: bold; +} +/** + * Address styling not present in Safari and Chrome. + */ +dfn { + font-style: italic; +} +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} +/** + * Address styling not present in IE 8/9. + */ +mark { + background: #ff0; + color: #000; +} +/** + * Address inconsistent and variable font size in all browsers. + */ +small { + font-size: 80%; +} +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +/* Embedded content + ========================================================================== */ +/** + * Remove border when inside `a` element in IE 8/9/10. + */ +img { + border: 0; +} +/** + * Correct overflow not hidden in IE 9/10/11. + */ +svg:not(:root) { + overflow: hidden; +} +/* Grouping content + ========================================================================== */ +/** + * Address margin not present in IE 8/9 and Safari. + */ +figure { + margin: 1em 40px; +} +/** + * Address differences between Firefox and other browsers. + */ +hr { + box-sizing: content-box; + height: 0; +} +/** + * Contain overflow in all browsers. + */ +pre { + overflow: auto; +} +/** + * Address odd `em`-unit font size rendering in all browsers. + */ +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +/* Forms + ========================================================================== */ +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ +button, +input, +optgroup, +select, +textarea { + color: inherit; + /* 1 */ + font: inherit; + /* 2 */ + margin: 0; + /* 3 */ +} +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ +button { + overflow: visible; +} +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ +button, +select { + text-transform: none; +} +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce + * specificity and defer to the .w-button selector + */ +button, +html input[type="button"], +input[type="reset"] { + -webkit-appearance: button; + /* 2 */ + cursor: pointer; + /* 3 */ +} +/** + * Re-set default cursor for disabled elements. + */ +button[disabled], +html input[disabled] { + cursor: default; +} +/** + * Remove inner padding and border in Firefox 4+. + */ +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ +input { + line-height: normal; +} +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ +input[type='checkbox'], +input[type='radio'] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ +input[type='number']::-webkit-inner-spin-button, +input[type='number']::-webkit-outer-spin-button { + height: auto; +} +/** + * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input + * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed + * (similar to normalize.css >=4.0.0) + */ +input[type='search'] { + -webkit-appearance: none; + /* 1 */ +} +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ +input[type='search']::-webkit-search-cancel-button, +input[type='search']::-webkit-search-decoration { + -webkit-appearance: none; +} +/** + * Define consistent border, margin, and padding. + */ +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ +legend { + border: 0; + /* 1 */ + padding: 0; + /* 2 */ +} +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ +textarea { + overflow: auto; +} +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ +optgroup { + font-weight: bold; +} +/* Tables + ========================================================================== */ +/** + * Remove most spacing between table cells. + */ +table { + border-collapse: collapse; + border-spacing: 0; +} +td, +th { + padding: 0; +} diff --git a/css/tp2-5dcdea.webflow.css b/css/tp2-5dcdea.webflow.css new file mode 100644 index 0000000..1f21eb2 --- /dev/null +++ b/css/tp2-5dcdea.webflow.css @@ -0,0 +1,1461 @@ +:root { + --bg-color: black; + --primary-color: #0e69eb; + --white: white; + --black: black; + --post-it: #ffd500; + --secondary-color: #e3f957; + --yellow-color: #00f6ff; + --content-color: #c8c8c8; + --heading-color: #b7b7b7; + --transparent: transparent; + --red-color: #f53434; + --dark-color: #101012; + --block-transparent: #e4e4e48f; + --primary-color-faded: #0e69eb80; +} + +.w-layout-blockcontainer { + max-width: 940px; + margin-left: auto; + margin-right: auto; + display: block; +} + +.w-layout-grid { + grid-row-gap: 16px; + grid-column-gap: 16px; + grid-template-rows: auto auto; + grid-template-columns: 1fr 1fr; + grid-auto-columns: 1fr; + display: grid; +} + +@media screen and (max-width: 991px) { + .w-layout-blockcontainer { + max-width: 728px; + } +} + +@media screen and (max-width: 767px) { + .w-layout-blockcontainer { + max-width: none; + } +} + +h1 { + margin-top: 20px; + margin-bottom: 10px; + font-size: 35px; + font-weight: 700; + line-height: 50px; +} + +h2 { + margin-top: 20px; + margin-bottom: 10px; + font-size: 32px; + font-weight: 700; + line-height: 48px; +} + +h3 { + margin-top: 20px; + margin-bottom: 10px; + font-size: 24px; + font-weight: bold; + line-height: 30px; +} + +h5 { + margin-top: 10px; + margin-bottom: 10px; + font-size: 14px; + font-weight: bold; + line-height: 20px; +} + +.body { + background-color: var(--bg-color); + font-family: Mukta, sans-serif; +} + +.nav-link { + color: #dfdfdf; + padding: 1vw 2vw; + font-size: 1.3vw; + transition: color .2s; +} + +.nav-link:hover, .nav-link.w--current { + color: #00f6ff; +} + +.nav-menu { + flex: 1; + justify-content: space-between; + align-items: center; + max-width: none; + display: flex; +} + +.image { + width: 20vw; + padding-bottom: 0; +} + +.nav-wrap { + justify-content: space-between; + align-items: center; + display: flex; +} + +.nav-logo-wrap { + padding-left: 0; +} + +.navbar { + z-index: 50; + background-color: #0000; + margin-top: 35px; +} + +.nav-link-line { + background-color: #dfdfdf; + width: 1px; + height: 15px; +} + +.nav-link-wrap { + justify-content: space-between; + align-items: center; + display: flex; +} + +.menu-button { + background-color: var(--primary-color); +} + +.container { + max-width: none; + margin-left: 0; + margin-right: 0; + padding-left: 8vw; + padding-right: 8vw; +} + +.container.frustrations-container { + height: 100%; +} + +.call-to-action { + grid-column-gap: .75vw; + grid-row-gap: .75vw; + flex-flow: wrap; + justify-content: flex-start; + align-items: center; + margin-top: 0; + display: flex; +} + +.home-banner-image { + border-radius: 12px; + max-width: 65vw; + overflow: clip; + box-shadow: 0 0 7vw 1vw #0e69eb; +} + +.button { + grid-column-gap: 1vw; + grid-row-gap: 1vw; + color: #000; + background-color: #0e69eb; + border: 1px solid #0e69eb; + border-radius: 5px; + justify-content: center; + align-items: center; + padding: .7vw 1.2vw; + font-size: 1.4vw; + font-weight: 500; + line-height: 1; + text-decoration: none; + transition: box-shadow .2s, border-color .2s, background-color .2s; + display: flex; + box-shadow: 0 5px 20px #e8ff5933; +} + +.button:hover { + box-shadow: none; + color: #000; + background-color: #fff; + border-color: #fff; +} + +.button.button-black { + background-color: var(--black); + color: var(--white); +} + +.button.button-black:hover, .button.button-black.chat-with-us:hover { + background-color: var(--primary-color); +} + +.button-icon-wrap { + justify-content: center; + align-self: center; + align-items: center; + width: 1.5vw; + height: 1.5vw; + display: flex; +} + +.banner-title-top { + color: var(--white); + margin-top: 0; + margin-bottom: 0; + font-size: 3vw; + line-height: 3.2vw; +} + +.home-banner-grid { + grid-column-gap: 4vw; + grid-row-gap: 4vw; + grid-template-rows: auto; + grid-template-columns: 1fr 1fr; + align-items: center; +} + +.black-icon-button { + grid-column-gap: 5px; + grid-row-gap: 5px; + border: 1px solid var(--primary-color); + color: #fff; + background-color: #000; + border-radius: 5px; + justify-content: center; + align-items: center; + padding: 14px 25px 12px; + font-size: 16px; + font-weight: 500; + line-height: 1; + text-decoration: none; + transition: color .2s, border-color .2s, background-color .2s; + display: flex; +} + +.black-icon-button:hover { + color: #000; + background-color: #0e69eb; + border-color: #0e69eb; +} + +.home-banner { + padding-top: 6vw; + padding-bottom: 12vw; + overflow: visible; +} + +.home-banner-image-wrap { + min-width: 140%; + position: relative; +} + +.pi-reality-text { + color: var(--white); + text-align: center; + margin-top: 0; + margin-bottom: 0; + margin-left: 5px; + font-family: Varela, sans-serif; + font-size: 1.3vw; + font-weight: 600; + line-height: 1.3vw; +} + +.pi-reality-subtitle { + color: var(--post-it); + text-align: left; + margin-top: 0; + margin-bottom: 0; + margin-left: 5px; + font-family: Varela Round, sans-serif; + font-size: 1.5vw; + font-weight: 400; + line-height: 1.5vw; + text-decoration: none; +} + +.pi-paper-content { + flex-flow: column; + padding: 2.6vw; + display: flex; +} + +.pi-paper { + grid-template-rows: auto; + grid-template-columns: 1fr; + grid-auto-columns: 1fr; + display: grid; +} + +.pi-block { + flex-flow: column; + height: 100%; + display: flex; +} + +.chaos-section { + height: 200vh; + margin-bottom: 6vw; +} + +.chaos-sticky { + grid-column-gap: 0px; + grid-row-gap: 0px; + background-image: url('../images/chaos.png'); + background-position: 50% 100%; + background-repeat: no-repeat; + background-size: auto 100%; + background-attachment: scroll; + flex-flow: column; + grid-template-rows: 9vw auto 18vw; + grid-template-columns: 1fr; + grid-auto-columns: 1fr; + width: 100%; + height: 100vh; + display: grid; + position: sticky; + top: 0; + overflow: hidden; +} + +.frustrations-wrap { + width: 100%; + height: 100%; +} + +.frustrations-list { + justify-content: flex-start; + align-items: stretch; + width: 100%; + height: 100%; + display: flex; +} + +.frustration-item { + flex: none; + width: 35vw; + height: 100%; + padding-right: 20px; +} + +.align-center { + z-index: 3; + text-align: center; + flex-flow: column; + justify-content: center; + align-items: center; + display: flex; + position: relative; +} + +.section-title-wrap { + color: var(--white); + max-width: 700px; + margin: 3vw auto 0; + position: relative; + bottom: 0; +} + +.section-title-wrap.fed-up { + margin-bottom: 6vw; +} + +.section-title-wrap.wifty { + margin-top: 0; + margin-bottom: 0; +} + +.schedule-title { + color: var(--white); + text-align: center; + margin-top: 0; + margin-bottom: 3.5vw; + font-size: 2vw; + line-height: 2.3vw; +} + +.schedule-title.what-if-we-told-you { + opacity: 0; + text-shadow: 0 9px 7px #000; + margin-bottom: 2vw; +} + +.value-block { + flex-flow: column; + align-items: center; + display: flex; +} + +.value-icon { + width: 100%; + height: 100%; + overflow: hidden; +} + +.value-icon-wrap { + justify-content: center; + align-items: center; + width: 100px; + height: 100px; + margin-bottom: 10px; + display: flex; +} + +.value-title { + color: var(--secondary-color); + text-align: center; + margin-top: 0; + font-size: 25px; + font-weight: 600; +} + +.solution-block { + grid-column-gap: 2vw; + grid-row-gap: 2vw; + opacity: 1; + -webkit-backdrop-filter: blur(50px); + backdrop-filter: blur(50px); + mix-blend-mode: normal; + background-color: #222224bf; + border-radius: 20px; + justify-content: flex-start; + align-items: flex-start; + height: 100%; + padding: 2vw; + display: flex; + box-shadow: 0 10px 15px #00000080; +} + +.solution-title { + color: var(--yellow-color); + margin-top: 0; + margin-bottom: 1.7vw; + font-size: 2vw; + font-weight: 600; + line-height: 2.2vw; +} + +.solution-icon-wrap { + background-color: #09090b; + border-radius: 15px; + justify-content: center; + align-items: center; + width: 8vw; + height: 8vw; + padding: 1.5vw; + display: flex; +} + +.footer-logo-wrap { + margin-bottom: 25px; +} + +.footer-widget-area { + flex-flow: column; + display: flex; +} + +.footer-widget-area.bottom { + grid-column-gap: 30px; + grid-row-gap: 30px; + flex-flow: row; +} + +.footer-content-area { + grid-column-gap: 40px; + grid-row-gap: 40px; + flex-flow: column; + justify-content: space-between; + display: flex; +} + +.hover-icon { + opacity: 0; + position: absolute; +} + +.footer-social-link { + border: 1px solid #fff; + border-radius: 100%; + justify-content: center; + align-items: center; + min-width: 35px; + max-width: 35px; + min-height: 35px; + max-height: 35px; + transition-property: background-color; + transition-duration: .3s; + display: flex; + position: relative; +} + +.footer-social-link:hover { + background-color: #fff; +} + +.footer-social-wrap { + grid-column-gap: 10px; + grid-row-gap: 10px; + justify-content: flex-start; + align-items: center; + display: flex; +} + +.footer-content-wrap { + max-width: 330px; +} + +.footer-widget-title { + margin-top: 0; + margin-bottom: 20px; + font-size: 20px; + font-weight: 600; +} + +.copyright-text { + margin-bottom: 0; +} + +.designer-link { + color: #fff; + text-decoration: none; +} + +.designer-link:hover { + color: #0e69eb; +} + +.footer-copyright-area { + grid-column-gap: 20px; + grid-row-gap: 20px; + text-align: center; + border-top: 1px solid #525252; + flex-flow: wrap; + justify-content: space-between; + align-items: center; + margin-top: 35px; + padding-top: 30px; + display: flex; +} + +.text-white { + color: #fff; +} + +.footer-link { + color: #fff; + padding-top: 8px; + padding-bottom: 8px; + text-decoration: none; +} + +.footer-link:hover { + color: #0e69eb; +} + +.footer-grid { + grid-column-gap: 50px; + grid-row-gap: 50px; + grid-template-rows: auto; + grid-template-columns: .85fr .5fr .6fr 1fr .7fr; + margin-top: 140px; +} + +.footer-section { + padding-top: 6vw; + padding-bottom: 6vw; +} + +.banner-text { + color: var(--content-color); + margin-bottom: 2vw; + font-size: 1.5vw; + line-height: 1.7vw; +} + +.pi-title { + text-align: center; + height: 2.5vw; + text-decoration: none; +} + +.pi-title-text { + color: var(--post-it); + text-shadow: 0 9px 7px #000; + margin-top: 0; + margin-bottom: 0; + font-size: 1.5vw; + line-height: 1.8vw; + text-decoration: none; +} + +.pi-top { + grid-column-gap: 2vw; + grid-row-gap: 2vw; + flex-flow: column; + flex: 1; + display: flex; +} + +.pi-reality { + grid-column-gap: 16px; + grid-row-gap: 16px; + grid-template-rows: auto; + grid-template-columns: 1fr; + grid-auto-columns: 1fr; + justify-content: flex-start; + height: 8vw; + margin-top: 1vw; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-left: 1vw; + padding-right: 1vw; +} + +.text-span { + color: var(--post-it); +} + +.values-section { + margin-top: 3vw; + margin-bottom: 0; +} + +.value-text { + color: var(--white); + text-align: center; + font-size: 18px; +} + +.values-grid { + grid-column-gap: 16px; + grid-row-gap: 16px; + grid-template-rows: auto auto auto; + grid-template-columns: 1fr 1fr 1fr; + grid-auto-columns: 1fr; + display: grid; +} + +.solution-section { + margin-top: 3vw; + padding-top: 0; + padding-bottom: 4vw; +} + +.solutions-grid { + grid-column-gap: 2vw; + grid-row-gap: 2vw; + grid-template-rows: auto auto; + grid-template-columns: 1fr 1fr; + grid-auto-columns: 1fr; + display: grid; +} + +.solution-text { + color: var(--white); + margin-bottom: 1.7vw; + font-size: 1.8vw; + line-height: 2vw; +} + +.solution-details { + color: var(--white); + font-size: 1.4vw; + line-height: 1.6vw; +} + +.solution-icon { + width: 100%; + height: 100%; + overflow: hidden; +} + +.text-span-2 { + color: var(--secondary-color); + font-style: italic; +} + +.castleberry-point-grid { + grid-template-rows: auto; + grid-template-columns: 1fr; +} + +.castleberry-point-map { + border-radius: 40px; +} + +.castleberry-point-content { + flex-flow: column; + display: flex; +} + +.castleberry-point-subtitle { + color: var(--white); + text-shadow: 0 4px 13px var(--black); + flex: 1; + margin-top: 1vw; + font-family: Saira, sans-serif; + font-size: 3vw; + font-weight: 800; + line-height: 3vw; +} + +.castleberry-point-title { + color: var(--yellow-color); + text-shadow: 2px 8px 10px var(--black); + margin-top: 4vw; + font-family: Saira, sans-serif; + font-size: 6vw; + font-weight: 800; + line-height: 2vw; +} + +.castleberry-point-bottom { + color: var(--white); + text-shadow: 0 4px 13px var(--black); + flex: none; + margin-top: 0; + margin-bottom: 4vw; + font-family: Saira, sans-serif; + font-size: 3vw; + font-weight: 800; + line-height: 3vw; +} + +.text-span-4, .text-span-5 { + color: var(--secondary-color); + font-style: italic; +} + +.text-span-8 { + color: var(--yellow-color); + font-style: italic; +} + +.italic-text, .italic-text-2 { + color: var(--secondary-color); +} + +.pi-note { + color: #000; + text-align: center; + margin-top: 0; + margin-bottom: 0; + font-family: Gloria Hallelujah, sans-serif; + font-size: 2vw; + line-height: 2vw; +} + +.pi-reality-content { + border: 1px solid var(--post-it); + opacity: 1; + mix-blend-mode: normal; + background-color: #000000b8; + border-radius: 30px; + flex-flow: row; + grid-template-rows: auto; + grid-template-columns: 1fr; + grid-auto-columns: 1fr; + align-items: center; + height: 100%; + padding: 1vw; + display: flex; + box-shadow: 0 10px 11px -8px #000000b3; +} + +.text-span-9 { + color: var(--secondary-color); +} + +.banner-title-bottom { + color: var(--primary-color); + margin-top: 0; + margin-bottom: 4vw; + font-size: 4vw; + line-height: 4vw; +} + +.banner-title-underline { + color: var(--primary-color); + background-image: url('../images/underline.svg'); + background-position: 0 100%; + background-repeat: no-repeat; + background-size: auto; + background-attachment: scroll; + font-size: 3vw; + line-height: 3.2vw; + display: inline; +} + +.text-span-10 { + color: var(--yellow-color); +} + +.text-span-11 { + color: var(--secondary-color); +} + +.scheduler { + display: block; +} + +.image-3 { + width: 100%; + height: 100%; +} + +.booker { + background-color: var(--primary-color); + border-radius: 20px; + padding: 40px 25px; +} + +.joyful-man { + width: 100%; + margin-bottom: 2vw; +} + +.section-title-wrap-man { + color: var(--white); + max-width: 700px; + margin: 4vw auto 0; +} + +.chaos-sticky-top { + flex: auto; + margin-bottom: 0; +} + +.chaos-sticky-middle { + flex: 4 auto; + overflow: hidden; +} + +.chaos-sticky-bottom { + flex-flow: column; + flex: 4 4 auto; + justify-content: center; + align-items: center; + display: flex; +} + +.button-text { + align-self: center; + line-height: 1.4; +} + +.man-grid { + grid-column-gap: 0px; + grid-row-gap: 0px; + grid-template-rows: auto; + grid-template-columns: 1fr; +} + +.man-text { + color: var(--white); + text-align: center; + text-shadow: 3px 4px 7px #000; + margin-top: 0; + margin-bottom: 0; + font-size: 3.8vw; + line-height: 3.8vw; +} + +.man-text.what-if-we-told-you { + opacity: 0; + text-shadow: 0 9px 7px #000; +} + +@media screen and (min-width: 1280px) { + .home-banner-image-wrap { + min-width: 130%; + } + + .pi-block { + background-size: cover; + background-attachment: scroll; + min-height: 375px; + padding: 20px 15px 15px 25px; + } + + .value-icon-wrap { + overflow: visible; + } + + .solution-block { + -webkit-backdrop-filter: blur(40px); + backdrop-filter: blur(40px); + } + + .footer-grid { + grid-template-columns: 1fr 1fr .75fr 1fr .75fr; + } + + .pi-reality { + margin-top: 15px; + } + + .pi-note { + font-size: 1.8vw; + } + + .pi-reality-content { + padding-left: 15px; + padding-right: 15px; + } + + .banner-title-bottom { + font-size: 55px; + } +} + +@media screen and (min-width: 1440px) { + .home-banner-image { + box-shadow: 0 2px 120px 20px #0e69eb; + } + + .home-banner-image-wrap { + min-width: 160%; + } + + .pi-block { + padding-bottom: 20px; + padding-right: 20px; + } + + .section-title-wrap { + max-width: 900px; + } + + .schedule-title { + margin-bottom: 25px; + } + + .castleberry-point-subtitle { + font-size: 38px; + } + + .castleberry-point-title { + text-shadow: -2px 2px 7px var(--black); + margin-top: 90px; + font-size: 60px; + } + + .castleberry-point-bottom { + text-shadow: -2px 2px 7px var(--black); + margin-bottom: 90px; + font-size: 38px; + } + + .text-span-4, .text-span-5 { + color: var(--secondary-color); + } + + .text-span-8 { + color: var(--primary-color); + } + + .section-title-wrap-man { + max-width: 900px; + } + + .man-text { + margin-bottom: 25px; + } +} + +@media screen and (min-width: 1920px) { + .image { + width: 15vw; + } + + .home-banner-image-wrap { + min-width: 180%; + } + + .pi-reality-text { + font-size: 1vw; + line-height: 1.2vw; + } + + .pi-reality-subtitle { + font-size: 1.2vw; + } + + .frustration-item { + width: 25vw; + } + + .reality-section { + background-color: #18181c; + } + + .solution-block { + grid-column-gap: 1.5vw; + grid-row-gap: 1.5vw; + padding: 1.5vw; + } + + .solution-title { + margin-bottom: 1vw; + font-size: 1.4vw; + line-height: 1.6vw; + } + + .banner-text { + font-size: 35px; + line-height: 35px; + } + + .solutions-wrap { + margin-top: 3vw; + } + + .solution-text { + margin-bottom: 1vw; + font-size: 1vw; + line-height: 1.2vw; + } + + .solution-details { + font-size: .8vw; + line-height: 1vw; + } + + .pi-note { + font-size: 1.2vw; + line-height: 1.2vw; + } + + .banner-title-underline { + font-size: 60px; + line-height: 60px; + } +} + +@media screen and (max-width: 991px) { + .nav-link { + margin-left: 0; + margin-right: 0; + padding-left: 0; + } + + .nav-menu { + background-color: #18181c; + max-width: none; + padding: 35px; + } + + .nav-wrap { + padding-bottom: 10px; + } + + .nav-link-line { + width: 100%; + height: 1px; + } + + .nav-link-wrap { + flex-flow: column; + justify-content: space-between; + align-items: stretch; + } + + .menu-button { + color: var(--white); + border: 1px solid #00f6ff; + border-radius: 5px; + padding: 1.5vw; + } + + .menu-button.w--open { + color: #00f6ff; + background-color: #0000; + } + + .call-to-action { + justify-content: center; + align-items: center; + } + + .home-banner-image { + width: 100%; + max-width: none; + } + + .home-banner-grid { + grid-template-columns: 1fr; + } + + .home-banner-image-wrap { + min-width: auto; + } + + .frustration-item { + width: 40vw; + } + + .value-title { + font-size: 24px; + } + + .solution-title { + font-size: 3vw; + line-height: 3vw; + } + + .footer-copyright-area { + justify-content: space-around; + } + + .footer-grid { + grid-column-gap: 35px; + grid-row-gap: 35px; + flex-flow: wrap; + grid-template-columns: 1fr .4fr .7fr; + margin-top: 100px; + } + + .solutions-grid { + grid-template-rows: auto; + grid-template-columns: 1fr; + } + + .solution-text { + font-size: 2.5vw; + line-height: 2.5vw; + } + + .solution-details { + font-size: 2vw; + line-height: 2vw; + } + + .pi-note { + font-size: 2.4vw; + line-height: 2.4vw; + } +} + +@media screen and (max-width: 767px) { + .call-to-action { + grid-column-gap: 2vw; + grid-row-gap: 2vw; + } + + .button { + padding-top: 1.4vw; + padding-bottom: 1.4vw; + } + + .button-icon-wrap { + width: 3.5vw; + height: 3.5vw; + } + + .banner-title-top { + font-size: 5vw; + line-height: 5vw; + } + + .home-banner-image-wrap { + margin-top: 4vw; + } + + .pi-reality-text { + font-size: 2.5vw; + line-height: 3vw; + } + + .pi-reality-subtitle { + font-size: 2.5vw; + line-height: 2.5vw; + } + + .pi-paper-content { + padding: 5vw; + } + + .chaos-sticky { + grid-template-rows: 20vw auto 40vw; + } + + .frustration-item { + width: 60vw; + } + + .schedule-title { + margin-bottom: 6vw; + font-size: 5.5vw; + line-height: 6vw; + } + + .solution-block { + grid-column-gap: 2.7vw; + grid-row-gap: 2.7vw; + padding: 3vw; + } + + .solution-title { + font-size: 4vw; + line-height: 4.4vw; + } + + .solution-icon-wrap { + min-width: 80px; + max-width: 80px; + min-height: 80px; + max-height: 80px; + } + + .footer-content-wrap { + max-width: 400px; + } + + .footer-copyright-area { + grid-column-gap: 10px; + grid-row-gap: 10px; + justify-content: space-around; + } + + .footer-grid { + grid-template-columns: .75fr 1fr; + margin-top: 80px; + } + + .footer-section { + padding-bottom: 30px; + } + + .banner-text { + margin-bottom: 5vw; + font-size: 3vw; + line-height: 3.4vw; + } + + .pi-title { + height: 9vw; + } + + .pi-title-text { + font-size: 4vw; + line-height: 4vw; + } + + .pi-reality { + height: 20vw; + } + + .values-grid { + grid-template-columns: 1fr 1fr; + } + + .solutions-grid { + grid-column-gap: 4vw; + grid-row-gap: 4vw; + } + + .solution-text, .solution-details { + font-size: 3.3vw; + line-height: 3.7vw; + } + + .pi-note { + font-size: 3.6vw; + line-height: 3.6vw; + } + + .pi-reality-content { + grid-column-gap: 1vw; + grid-row-gap: 1vw; + flex-flow: column; + justify-content: center; + align-items: center; + } + + .banner-title-bottom { + margin-bottom: 6vw; + font-size: 5vw; + line-height: 5vw; + } + + .banner-title-underline { + font-size: 5vw; + line-height: 5vw; + } + + .button-text { + font-size: 3vw; + line-height: 3vw; + } + + .man-text { + margin-bottom: 6vw; + font-size: 5.5vw; + line-height: 5.5vw; + } +} + +@media screen and (max-width: 479px) { + .nav-menu { + padding: 25px; + } + + .image { + width: 40vw; + } + + .call-to-action { + flex-flow: row; + } + + .button-icon-wrap { + width: 5vw; + height: 5vw; + } + + .banner-title-top { + font-size: 6vw; + line-height: 6vw; + } + + .pi-reality-text { + font-size: 3vw; + line-height: 3.4vw; + } + + .pi-reality-subtitle { + font-size: 3vw; + line-height: 3vw; + } + + .chaos-sticky { + left: 0; + } + + .frustration-item { + width: 80vw; + } + + .value-icon-wrap { + margin-bottom: 20px; + } + + .value-title { + font-size: 22px; + } + + .solution-block { + border-radius: 15px; + flex-flow: row; + } + + .solution-icon-wrap { + min-width: 70px; + max-width: 70px; + min-height: 70px; + max-height: 70px; + } + + .footer-content-area { + width: 100%; + } + + .footer-content-wrap { + max-width: none; + } + + .footer-copyright-area { + margin-top: 30px; + padding-top: 20px; + } + + .footer-grid { + grid-column-gap: 80px; + grid-row-gap: 50px; + grid-template-columns: 1fr; + margin-top: 60px; + display: flex; + } + + .footer-section { + padding-top: 80px; + padding-bottom: 15px; + } + + .banner-text { + font-size: 4vw; + line-height: 4.2vw; + } + + .pi-title { + height: 9vw; + } + + .pi-title-text { + font-size: 5vw; + line-height: 5vw; + } + + .pi-top { + grid-column-gap: 3vw; + grid-row-gap: 3vw; + } + + .values-grid { + grid-template-rows: auto; + grid-template-columns: 1fr; + } + + .pi-note { + font-size: 4.5vw; + line-height: 4.5vw; + } + + .banner-title-bottom, .banner-title-underline { + font-size: 6vw; + line-height: 6vw; + } + + .button-text { + font-size: 3vw; + line-height: 3vw; + } + + .text-block-2 { + align-self: flex-end; + } +} + +#w-node-fcf31704-7989-722e-afb7-b3e19da4ba2d-c6b67b4a, #w-node-fcf31704-7989-722e-afb7-b3e19da4ba2e-c6b67b4a, #w-node-_5659da0b-eb13-063b-a27c-b0810245f037-c6b67b4a, #w-node-_5659da0b-eb13-063b-a27c-b0810245f038-c6b67b4a, #w-node-_5659da0b-eb13-063b-a27c-b0810245f03a-c6b67b4a, #w-node-_6400dd1e-1717-9058-b716-da336fdb5e2a-c6b67b4a { + grid-area: 1 / 1 / 2 / 2; +} + +#w-node-_95d19cf3-e585-e146-8a2e-637065a6ae06-c6b67b4a { + grid-area: 1 / 1 / 2 / 2; + place-self: center; +} + +#w-node-_17f1c697-ca96-8716-6c01-14a839af3728-c6b67b4a, #w-node-_9cfbcd91-6607-b16e-f76d-db2a37c942bd-c6b67b4a { + grid-area: 1 / 1 / 2 / 2; +} + +@media screen and (min-width: 1920px) { + #w-node-fcf31704-7989-722e-afb7-b3e19da4ba2e-c6b67b4a { + grid-area: 1 / 1 / 2 / 2; + } +} + + diff --git a/css/webflow.css b/css/webflow.css new file mode 100644 index 0000000..a615470 --- /dev/null +++ b/css/webflow.css @@ -0,0 +1,1809 @@ +@font-face { + font-family: 'webflow-icons'; + src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype'); + font-weight: normal; + font-style: normal; +} +[class^="w-icon-"], +[class*=" w-icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'webflow-icons' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.w-icon-slider-right:before { + content: "\e600"; +} +.w-icon-slider-left:before { + content: "\e601"; +} +.w-icon-nav-menu:before { + content: "\e602"; +} +.w-icon-arrow-down:before, +.w-icon-dropdown-toggle:before { + content: "\e603"; +} +.w-icon-file-upload-remove:before { + content: "\e900"; +} +.w-icon-file-upload-icon:before { + content: "\e903"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + height: 100%; +} +body { + margin: 0; + min-height: 100%; + background-color: #fff; + font-family: Arial, sans-serif; + font-size: 14px; + line-height: 20px; + color: #333; +} +img { + max-width: 100%; + vertical-align: middle; + display: inline-block; +} +html.w-mod-touch * { + background-attachment: scroll !important; +} +.w-block { + display: block; +} +.w-inline-block { + max-width: 100%; + display: inline-block; +} +.w-clearfix:before, +.w-clearfix:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-clearfix:after { + clear: both; +} +.w-hidden { + display: none; +} +.w-button { + display: inline-block; + padding: 9px 15px; + background-color: #3898EC; + color: white; + border: 0; + line-height: inherit; + text-decoration: none; + cursor: pointer; + border-radius: 0; +} +input.w-button { + -webkit-appearance: button; +} +html[data-w-dynpage] [data-w-cloak] { + color: transparent !important; +} +.w-code-block { + margin: unset; +} +pre.w-code-block code { + all: inherit; +} +.w-optimization { + display: contents; +} +.w-webflow-badge, +.w-webflow-badge * { + position: static; + left: auto; + top: auto; + right: auto; + bottom: auto; + z-index: auto; + display: block; + visibility: visible; + overflow: visible; + overflow-x: visible; + overflow-y: visible; + box-sizing: border-box; + width: auto; + height: auto; + max-height: none; + max-width: none; + min-height: 0; + min-width: 0; + margin: 0; + padding: 0; + float: none; + clear: none; + border: 0 none transparent; + border-radius: 0; + background: none; + background-image: none; + background-position: 0% 0%; + background-size: auto auto; + background-repeat: repeat; + background-origin: padding-box; + background-clip: border-box; + background-attachment: scroll; + background-color: transparent; + box-shadow: none; + opacity: 1; + transform: none; + transition: none; + direction: ltr; + font-family: inherit; + font-weight: inherit; + color: inherit; + font-size: inherit; + line-height: inherit; + font-style: inherit; + font-variant: inherit; + text-align: inherit; + letter-spacing: inherit; + text-decoration: inherit; + text-indent: 0; + text-transform: inherit; + list-style-type: disc; + text-shadow: none; + font-smoothing: auto; + vertical-align: baseline; + cursor: inherit; + white-space: inherit; + word-break: normal; + word-spacing: normal; + word-wrap: normal; +} +.w-webflow-badge { + position: fixed !important; + display: inline-block !important; + visibility: visible !important; + z-index: 2147483647 !important; + top: auto !important; + right: 12px !important; + bottom: 12px !important; + left: auto !important; + color: #aaadb0 !important; + background-color: #fff !important; + border-radius: 3px !important; + padding: 6px !important; + font-size: 12px !important; + opacity: 1 !important; + line-height: 14px !important; + text-decoration: none !important; + transform: none !important; + margin: 0 !important; + width: auto !important; + height: auto !important; + overflow: visible !important; + white-space: nowrap; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); + cursor: pointer; +} +.w-webflow-badge > img { + display: inline-block !important; + visibility: visible !important; + opacity: 1 !important; + vertical-align: middle !important; +} +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: bold; + margin-bottom: 10px; +} +h1 { + font-size: 38px; + line-height: 44px; + margin-top: 20px; +} +h2 { + font-size: 32px; + line-height: 36px; + margin-top: 20px; +} +h3 { + font-size: 24px; + line-height: 30px; + margin-top: 20px; +} +h4 { + font-size: 18px; + line-height: 24px; + margin-top: 10px; +} +h5 { + font-size: 14px; + line-height: 20px; + margin-top: 10px; +} +h6 { + font-size: 12px; + line-height: 18px; + margin-top: 10px; +} +p { + margin-top: 0; + margin-bottom: 10px; +} +blockquote { + margin: 0 0 10px 0; + padding: 10px 20px; + border-left: 5px solid #E2E2E2; + font-size: 18px; + line-height: 22px; +} +figure { + margin: 0; + margin-bottom: 10px; +} +figcaption { + margin-top: 5px; + text-align: center; +} +ul, +ol { + margin-top: 0px; + margin-bottom: 10px; + padding-left: 40px; +} +.w-list-unstyled { + padding-left: 0; + list-style: none; +} +.w-embed:before, +.w-embed:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-embed:after { + clear: both; +} +.w-video { + width: 100%; + position: relative; + padding: 0; +} +.w-video iframe, +.w-video object, +.w-video embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: none; +} +fieldset { + padding: 0; + margin: 0; + border: 0; +} +button, +[type='button'], +[type='reset'] { + border: 0; + cursor: pointer; + -webkit-appearance: button; +} +.w-form { + margin: 0 0 15px; +} +.w-form-done { + display: none; + padding: 20px; + text-align: center; + background-color: #dddddd; +} +.w-form-fail { + display: none; + margin-top: 10px; + padding: 10px; + background-color: #ffdede; +} +label { + display: block; + margin-bottom: 5px; + font-weight: bold; +} +.w-input, +.w-select { + display: block; + width: 100%; + height: 38px; + padding: 8px 12px; + margin-bottom: 10px; + font-size: 14px; + line-height: 1.42857143; + color: #333333; + vertical-align: middle; + background-color: #ffffff; + border: 1px solid #cccccc; +} +.w-input::placeholder, +.w-select::placeholder { + color: #999; +} +.w-input:focus, +.w-select:focus { + border-color: #3898EC; + outline: 0; +} +.w-input[disabled], +.w-select[disabled], +.w-input[readonly], +.w-select[readonly], +fieldset[disabled] .w-input, +fieldset[disabled] .w-select { + cursor: not-allowed; +} +.w-input[disabled]:not(.w-input-disabled), +.w-select[disabled]:not(.w-input-disabled), +.w-input[readonly], +.w-select[readonly], +fieldset[disabled]:not(.w-input-disabled) .w-input, +fieldset[disabled]:not(.w-input-disabled) .w-select { + background-color: #eeeeee; +} +textarea.w-input, +textarea.w-select { + height: auto; +} +.w-select { + background-color: #f3f3f3; +} +.w-select[multiple] { + height: auto; +} +.w-form-label { + display: inline-block; + cursor: pointer; + font-weight: normal; + margin-bottom: 0px; +} +.w-radio { + display: block; + margin-bottom: 5px; + padding-left: 20px; +} +.w-radio:before, +.w-radio:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-radio:after { + clear: both; +} +.w-radio-input { + margin: 4px 0 0; + line-height: normal; + float: left; + margin-left: -20px; +} +.w-radio-input { + margin-top: 3px; +} +.w-file-upload { + display: block; + margin-bottom: 10px; +} +.w-file-upload-input { + width: 0.1px; + height: 0.1px; + opacity: 0; + overflow: hidden; + position: absolute; + z-index: -100; +} +.w-file-upload-default, +.w-file-upload-uploading, +.w-file-upload-success { + display: inline-block; + color: #333333; +} +.w-file-upload-error { + display: block; + margin-top: 10px; +} +.w-file-upload-default.w-hidden, +.w-file-upload-uploading.w-hidden, +.w-file-upload-error.w-hidden, +.w-file-upload-success.w-hidden { + display: none; +} +.w-file-upload-uploading-btn { + display: flex; + font-size: 14px; + font-weight: normal; + cursor: pointer; + margin: 0; + padding: 8px 12px; + border: 1px solid #cccccc; + background-color: #fafafa; +} +.w-file-upload-file { + display: flex; + flex-grow: 1; + justify-content: space-between; + margin: 0; + padding: 8px 9px 8px 11px; + border: 1px solid #cccccc; + background-color: #fafafa; +} +.w-file-upload-file-name { + font-size: 14px; + font-weight: normal; + display: block; +} +.w-file-remove-link { + margin-top: 3px; + margin-left: 10px; + width: auto; + height: auto; + padding: 3px; + display: block; + cursor: pointer; +} +.w-icon-file-upload-remove { + margin: auto; + font-size: 10px; +} +.w-file-upload-error-msg { + display: inline-block; + color: #ea384c; + padding: 2px 0; +} +.w-file-upload-info { + display: inline-block; + line-height: 38px; + padding: 0 12px; +} +.w-file-upload-label { + display: inline-block; + font-size: 14px; + font-weight: normal; + cursor: pointer; + margin: 0; + padding: 8px 12px; + border: 1px solid #cccccc; + background-color: #fafafa; +} +.w-icon-file-upload-icon, +.w-icon-file-upload-uploading { + display: inline-block; + margin-right: 8px; + width: 20px; +} +.w-icon-file-upload-uploading { + height: 20px; +} +.w-container { + margin-left: auto; + margin-right: auto; + max-width: 940px; +} +.w-container:before, +.w-container:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-container:after { + clear: both; +} +.w-container .w-row { + margin-left: -10px; + margin-right: -10px; +} +.w-row:before, +.w-row:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-row:after { + clear: both; +} +.w-row .w-row { + margin-left: 0; + margin-right: 0; +} +.w-col { + position: relative; + float: left; + width: 100%; + min-height: 1px; + padding-left: 10px; + padding-right: 10px; +} +.w-col .w-col { + padding-left: 0; + padding-right: 0; +} +.w-col-1 { + width: 8.33333333%; +} +.w-col-2 { + width: 16.66666667%; +} +.w-col-3 { + width: 25%; +} +.w-col-4 { + width: 33.33333333%; +} +.w-col-5 { + width: 41.66666667%; +} +.w-col-6 { + width: 50%; +} +.w-col-7 { + width: 58.33333333%; +} +.w-col-8 { + width: 66.66666667%; +} +.w-col-9 { + width: 75%; +} +.w-col-10 { + width: 83.33333333%; +} +.w-col-11 { + width: 91.66666667%; +} +.w-col-12 { + width: 100%; +} +.w-hidden-main { + display: none !important; +} +@media screen and (max-width: 991px) { + .w-container { + max-width: 728px; + } + .w-hidden-main { + display: inherit !important; + } + .w-hidden-medium { + display: none !important; + } + .w-col-medium-1 { + width: 8.33333333%; + } + .w-col-medium-2 { + width: 16.66666667%; + } + .w-col-medium-3 { + width: 25%; + } + .w-col-medium-4 { + width: 33.33333333%; + } + .w-col-medium-5 { + width: 41.66666667%; + } + .w-col-medium-6 { + width: 50%; + } + .w-col-medium-7 { + width: 58.33333333%; + } + .w-col-medium-8 { + width: 66.66666667%; + } + .w-col-medium-9 { + width: 75%; + } + .w-col-medium-10 { + width: 83.33333333%; + } + .w-col-medium-11 { + width: 91.66666667%; + } + .w-col-medium-12 { + width: 100%; + } + .w-col-stack { + width: 100%; + left: auto; + right: auto; + } +} +@media screen and (max-width: 767px) { + .w-hidden-main { + display: inherit !important; + } + .w-hidden-medium { + display: inherit !important; + } + .w-hidden-small { + display: none !important; + } + .w-row, + .w-container .w-row { + margin-left: 0; + margin-right: 0; + } + .w-col { + width: 100%; + left: auto; + right: auto; + } + .w-col-small-1 { + width: 8.33333333%; + } + .w-col-small-2 { + width: 16.66666667%; + } + .w-col-small-3 { + width: 25%; + } + .w-col-small-4 { + width: 33.33333333%; + } + .w-col-small-5 { + width: 41.66666667%; + } + .w-col-small-6 { + width: 50%; + } + .w-col-small-7 { + width: 58.33333333%; + } + .w-col-small-8 { + width: 66.66666667%; + } + .w-col-small-9 { + width: 75%; + } + .w-col-small-10 { + width: 83.33333333%; + } + .w-col-small-11 { + width: 91.66666667%; + } + .w-col-small-12 { + width: 100%; + } +} +@media screen and (max-width: 479px) { + .w-container { + max-width: none; + } + .w-hidden-main { + display: inherit !important; + } + .w-hidden-medium { + display: inherit !important; + } + .w-hidden-small { + display: inherit !important; + } + .w-hidden-tiny { + display: none !important; + } + .w-col { + width: 100%; + } + .w-col-tiny-1 { + width: 8.33333333%; + } + .w-col-tiny-2 { + width: 16.66666667%; + } + .w-col-tiny-3 { + width: 25%; + } + .w-col-tiny-4 { + width: 33.33333333%; + } + .w-col-tiny-5 { + width: 41.66666667%; + } + .w-col-tiny-6 { + width: 50%; + } + .w-col-tiny-7 { + width: 58.33333333%; + } + .w-col-tiny-8 { + width: 66.66666667%; + } + .w-col-tiny-9 { + width: 75%; + } + .w-col-tiny-10 { + width: 83.33333333%; + } + .w-col-tiny-11 { + width: 91.66666667%; + } + .w-col-tiny-12 { + width: 100%; + } +} +.w-widget { + position: relative; +} +.w-widget-map { + width: 100%; + height: 400px; +} +.w-widget-map label { + width: auto; + display: inline; +} +.w-widget-map img { + max-width: inherit; +} +.w-widget-map .gm-style-iw { + text-align: center; +} +.w-widget-map .gm-style-iw > button { + display: none !important; +} +.w-widget-twitter { + overflow: hidden; +} +.w-widget-twitter-count-shim { + display: inline-block; + vertical-align: top; + position: relative; + width: 28px; + height: 20px; + text-align: center; + background: white; + border: #758696 solid 1px; + border-radius: 3px; +} +.w-widget-twitter-count-shim * { + pointer-events: none; + user-select: none; +} +.w-widget-twitter-count-shim .w-widget-twitter-count-inner { + position: relative; + font-size: 15px; + line-height: 12px; + text-align: center; + color: #999; + font-family: serif; +} +.w-widget-twitter-count-shim .w-widget-twitter-count-clear { + position: relative; + display: block; +} +.w-widget-twitter-count-shim.w--large { + width: 36px; + height: 28px; +} +.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner { + font-size: 18px; + line-height: 18px; +} +.w-widget-twitter-count-shim:not(.w--vertical) { + margin-left: 5px; + margin-right: 8px; +} +.w-widget-twitter-count-shim:not(.w--vertical).w--large { + margin-left: 6px; +} +.w-widget-twitter-count-shim:not(.w--vertical):before, +.w-widget-twitter-count-shim:not(.w--vertical):after { + top: 50%; + left: 0; + border: solid transparent; + content: ' '; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} +.w-widget-twitter-count-shim:not(.w--vertical):before { + border-color: rgba(117, 134, 150, 0); + border-right-color: #5d6c7b; + border-width: 4px; + margin-left: -9px; + margin-top: -4px; +} +.w-widget-twitter-count-shim:not(.w--vertical).w--large:before { + border-width: 5px; + margin-left: -10px; + margin-top: -5px; +} +.w-widget-twitter-count-shim:not(.w--vertical):after { + border-color: rgba(255, 255, 255, 0); + border-right-color: white; + border-width: 4px; + margin-left: -8px; + margin-top: -4px; +} +.w-widget-twitter-count-shim:not(.w--vertical).w--large:after { + border-width: 5px; + margin-left: -9px; + margin-top: -5px; +} +.w-widget-twitter-count-shim.w--vertical { + width: 61px; + height: 33px; + margin-bottom: 8px; +} +.w-widget-twitter-count-shim.w--vertical:before, +.w-widget-twitter-count-shim.w--vertical:after { + top: 100%; + left: 50%; + border: solid transparent; + content: ' '; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} +.w-widget-twitter-count-shim.w--vertical:before { + border-color: rgba(117, 134, 150, 0); + border-top-color: #5d6c7b; + border-width: 5px; + margin-left: -5px; +} +.w-widget-twitter-count-shim.w--vertical:after { + border-color: rgba(255, 255, 255, 0); + border-top-color: white; + border-width: 4px; + margin-left: -4px; +} +.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner { + font-size: 18px; + line-height: 22px; +} +.w-widget-twitter-count-shim.w--vertical.w--large { + width: 76px; +} +.w-background-video { + position: relative; + overflow: hidden; + height: 500px; + color: white; +} +.w-background-video > video { + background-size: cover; + background-position: 50% 50%; + position: absolute; + margin: auto; + width: 100%; + height: 100%; + right: -100%; + bottom: -100%; + top: -100%; + left: -100%; + object-fit: cover; + z-index: -100; +} +.w-background-video > video::-webkit-media-controls-start-playback-button { + display: none !important; + -webkit-appearance: none; +} +.w-background-video--control { + position: absolute; + bottom: 1em; + right: 1em; + background-color: transparent; + padding: 0; +} +.w-background-video--control > [hidden] { + display: none !important; +} +.w-slider { + position: relative; + height: 300px; + text-align: center; + background: #dddddd; + clear: both; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + tap-highlight-color: rgba(0, 0, 0, 0); +} +.w-slider-mask { + position: relative; + display: block; + overflow: hidden; + z-index: 1; + left: 0; + right: 0; + height: 100%; + white-space: nowrap; +} +.w-slide { + position: relative; + display: inline-block; + vertical-align: top; + width: 100%; + height: 100%; + white-space: normal; + text-align: left; +} +.w-slider-nav { + position: absolute; + z-index: 2; + top: auto; + right: 0; + bottom: 0; + left: 0; + margin: auto; + padding-top: 10px; + height: 40px; + text-align: center; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + tap-highlight-color: rgba(0, 0, 0, 0); +} +.w-slider-nav.w-round > div { + border-radius: 100%; +} +.w-slider-nav.w-num > div { + width: auto; + height: auto; + padding: 0.2em 0.5em; + font-size: inherit; + line-height: inherit; +} +.w-slider-nav.w-shadow > div { + box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); +} +.w-slider-nav-invert { + color: #fff; +} +.w-slider-nav-invert > div { + background-color: rgba(34, 34, 34, 0.4); +} +.w-slider-nav-invert > div.w-active { + background-color: #222; +} +.w-slider-dot { + position: relative; + display: inline-block; + width: 1em; + height: 1em; + background-color: rgba(255, 255, 255, 0.4); + cursor: pointer; + margin: 0 3px 0.5em; + transition: background-color 100ms, color 100ms; +} +.w-slider-dot.w-active { + background-color: #fff; +} +.w-slider-dot:focus { + outline: none; + box-shadow: 0px 0px 0px 2px #fff; +} +.w-slider-dot:focus.w-active { + box-shadow: none; +} +.w-slider-arrow-left, +.w-slider-arrow-right { + position: absolute; + width: 80px; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + cursor: pointer; + overflow: hidden; + color: white; + font-size: 40px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + tap-highlight-color: rgba(0, 0, 0, 0); + user-select: none; +} +.w-slider-arrow-left [class^='w-icon-'], +.w-slider-arrow-right [class^='w-icon-'], +.w-slider-arrow-left [class*=' w-icon-'], +.w-slider-arrow-right [class*=' w-icon-'] { + position: absolute; +} +.w-slider-arrow-left:focus, +.w-slider-arrow-right:focus { + outline: 0; +} +.w-slider-arrow-left { + z-index: 3; + right: auto; +} +.w-slider-arrow-right { + z-index: 4; + left: auto; +} +.w-icon-slider-left, +.w-icon-slider-right { + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + width: 1em; + height: 1em; +} +.w-slider-aria-label { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} +.w-slider-force-show { + display: block !important; +} +.w-dropdown { + display: inline-block; + position: relative; + text-align: left; + margin-left: auto; + margin-right: auto; + z-index: 900; +} +.w-dropdown-btn, +.w-dropdown-toggle, +.w-dropdown-link { + position: relative; + vertical-align: top; + text-decoration: none; + color: #222222; + padding: 20px; + text-align: left; + margin-left: auto; + margin-right: auto; + white-space: nowrap; +} +.w-dropdown-toggle { + user-select: none; + display: inline-block; + cursor: pointer; + padding-right: 40px; +} +.w-dropdown-toggle:focus { + outline: 0; +} +.w-icon-dropdown-toggle { + position: absolute; + top: 0; + right: 0; + bottom: 0; + margin: auto; + margin-right: 20px; + width: 1em; + height: 1em; +} +.w-dropdown-list { + position: absolute; + background: #dddddd; + display: none; + min-width: 100%; +} +.w-dropdown-list.w--open { + display: block; +} +.w-dropdown-link { + padding: 10px 20px; + display: block; + color: #222222; +} +.w-dropdown-link.w--current { + color: #0082f3; +} +.w-dropdown-link:focus { + outline: 0; +} +@media screen and (max-width: 767px) { + .w-nav-brand { + padding-left: 10px; + } +} +/** + * ## Note + * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well. + * For example percentage units do not work on descendants of elements that + * have any dimensions expressed in viewport units. It also doesn’t handle them at + * all in `calc()`. + */ +/** + * Wrapper around all lightbox elements + * + * 1. Since the lightbox can receive focus, IE also gives it an outline. + * 2. Fixes flickering on Chrome when a transition is in progress + * underneath the lightbox. + */ +.w-lightbox-backdrop { + cursor: auto; + font-style: normal; + letter-spacing: normal; + list-style: disc; + text-indent: 0; + text-shadow: none; + text-transform: none; + visibility: visible; + white-space: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + color: #fff; + font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif; + font-size: 17px; + line-height: 1.2; + font-weight: 300; + text-align: center; + background: rgba(0, 0, 0, 0.9); + z-index: 2000; + outline: 0; + /* 1 */ + opacity: 0; + -webkit-user-select: none; + -moz-user-select: none; + -webkit-tap-highlight-color: transparent; + -webkit-transform: translate(0, 0); + /* 2 */ +} +/** + * Neat trick to bind the rubberband effect to our canvas instead of the whole + * document on iOS. It also prevents a bug that causes the document underneath to scroll. + */ +.w-lightbox-backdrop, +.w-lightbox-container { + height: 100%; + overflow: auto; + -webkit-overflow-scrolling: touch; +} +.w-lightbox-content { + position: relative; + height: 100vh; + overflow: hidden; +} +.w-lightbox-view { + position: absolute; + width: 100vw; + height: 100vh; + opacity: 0; +} +.w-lightbox-view:before { + content: ""; + height: 100vh; +} +/* .w-lightbox-content */ +.w-lightbox-group, +.w-lightbox-group .w-lightbox-view, +.w-lightbox-group .w-lightbox-view:before { + height: 86vh; +} +.w-lightbox-frame, +.w-lightbox-view:before { + display: inline-block; + vertical-align: middle; +} +/* + * 1. Remove default margin set by user-agent on the
element. + */ +.w-lightbox-figure { + position: relative; + margin: 0; + /* 1 */ +} +.w-lightbox-group .w-lightbox-figure { + cursor: pointer; +} +/** + * IE adds image dimensions as width and height attributes on the IMG tag, + * but we need both width and height to be set to auto to enable scaling. + */ +.w-lightbox-img { + width: auto; + height: auto; + max-width: none; +} +/** + * 1. Reset if style is set by user on "All Images" + */ +.w-lightbox-image { + display: block; + float: none; + /* 1 */ + max-width: 100vw; + max-height: 100vh; +} +.w-lightbox-group .w-lightbox-image { + max-height: 86vh; +} +.w-lightbox-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 0.5em 1em; + background: rgba(0, 0, 0, 0.4); + text-align: left; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} +.w-lightbox-embed { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; +} +.w-lightbox-control { + position: absolute; + top: 0; + width: 4em; + background-size: 24px; + background-repeat: no-repeat; + background-position: center; + cursor: pointer; + -webkit-transition: all 0.3s; + transition: all 0.3s; +} +.w-lightbox-left { + display: none; + bottom: 0; + left: 0; + /* */ + background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); +} +.w-lightbox-right { + display: none; + right: 0; + bottom: 0; + /* */ + background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); +} +/* + * Without specifying the with and height inside the SVG, all versions of IE render the icon too small. + * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows. + * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) + */ +.w-lightbox-close { + right: 0; + height: 2.6em; + /* */ + background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4="); + background-size: 18px; +} +/** + * 1. All IE versions add extra space at the bottom without this. + */ +.w-lightbox-strip { + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: 0 1vh; + line-height: 0; + /* 1 */ + white-space: nowrap; + overflow-x: auto; + overflow-y: hidden; +} +/* + * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)` + * which doesn’t work in Safari anyway. + * 2. Chrome renders images pixelated when switching to GPU. Making sure + * the parent is also rendered on the GPU (by setting translate3d for + * example) fixes this behavior. + */ +.w-lightbox-item { + display: inline-block; + width: 10vh; + padding: 2vh 1vh; + box-sizing: content-box; + /* 1 */ + cursor: pointer; + -webkit-transform: translate3d(0, 0, 0); + /* 2 */ +} +.w-lightbox-active { + opacity: 0.3; +} +.w-lightbox-thumbnail { + position: relative; + height: 10vh; + background: #222; + overflow: hidden; +} +.w-lightbox-thumbnail-image { + position: absolute; + top: 0; + left: 0; +} +.w-lightbox-thumbnail .w-lightbox-tall { + top: 50%; + width: 100%; + -webkit-transform: translate(0, -50%); + transform: translate(0, -50%); +} +.w-lightbox-thumbnail .w-lightbox-wide { + left: 50%; + height: 100%; + -webkit-transform: translate(-50%, 0); + transform: translate(-50%, 0); +} +/* + * Spinner + * + * Absolute pixel values are used to avoid rounding errors that would cause + * the white spinning element to be misaligned with the track. + */ +.w-lightbox-spinner { + position: absolute; + top: 50%; + left: 50%; + box-sizing: border-box; + width: 40px; + height: 40px; + margin-top: -20px; + margin-left: -20px; + border: 5px solid rgba(0, 0, 0, 0.4); + border-radius: 50%; + -webkit-animation: spin 0.8s infinite linear; + animation: spin 0.8s infinite linear; +} +.w-lightbox-spinner:after { + content: ""; + position: absolute; + top: -4px; + right: -4px; + bottom: -4px; + left: -4px; + border: 3px solid transparent; + border-bottom-color: #fff; + border-radius: 50%; +} +/* + * Utility classes + */ +.w-lightbox-hide { + display: none; +} +.w-lightbox-noscroll { + overflow: hidden; +} +@media (min-width: 768px) { + .w-lightbox-content { + height: 96vh; + margin-top: 2vh; + } + .w-lightbox-view, + .w-lightbox-view:before { + height: 96vh; + } + /* .w-lightbox-content */ + .w-lightbox-group, + .w-lightbox-group .w-lightbox-view, + .w-lightbox-group .w-lightbox-view:before { + height: 84vh; + } + .w-lightbox-image { + max-width: 96vw; + max-height: 96vh; + } + .w-lightbox-group .w-lightbox-image { + max-width: 82.3vw; + max-height: 84vh; + } + .w-lightbox-left, + .w-lightbox-right { + display: block; + opacity: 0.5; + } + .w-lightbox-close { + opacity: 0.8; + } + .w-lightbox-control:hover { + opacity: 1; + } +} +.w-lightbox-inactive, +.w-lightbox-inactive:hover { + opacity: 0; +} +.w-richtext:before, +.w-richtext:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-richtext:after { + clear: both; +} +.w-richtext[contenteditable="true"]:before, +.w-richtext[contenteditable="true"]:after { + white-space: initial; +} +.w-richtext ol, +.w-richtext ul { + overflow: hidden; +} +.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, +.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after { + outline: 2px solid #2895f7; +} +.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, +.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div { + outline: 2px solid #2895f7; +} +.w-richtext figure.w-richtext-figure-type-video > div:after, +.w-richtext figure[data-rt-type="video"] > div:after { + content: ''; + position: absolute; + display: none; + left: 0; + top: 0; + right: 0; + bottom: 0; +} +.w-richtext figure { + position: relative; + max-width: 60%; +} +.w-richtext figure > div:before { + cursor: default!important; +} +.w-richtext figure img { + width: 100%; +} +.w-richtext figure figcaption.w-richtext-figcaption-placeholder { + opacity: 0.6; +} +.w-richtext figure div { + /* fix incorrectly sized selection border in the data manager */ + font-size: 0px; + color: transparent; +} +.w-richtext figure.w-richtext-figure-type-image, +.w-richtext figure[data-rt-type="image"] { + display: table; +} +.w-richtext figure.w-richtext-figure-type-image > div, +.w-richtext figure[data-rt-type="image"] > div { + display: inline-block; +} +.w-richtext figure.w-richtext-figure-type-image > figcaption, +.w-richtext figure[data-rt-type="image"] > figcaption { + display: table-caption; + caption-side: bottom; +} +.w-richtext figure.w-richtext-figure-type-video, +.w-richtext figure[data-rt-type="video"] { + width: 60%; + height: 0; +} +.w-richtext figure.w-richtext-figure-type-video iframe, +.w-richtext figure[data-rt-type="video"] iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.w-richtext figure.w-richtext-figure-type-video > div, +.w-richtext figure[data-rt-type="video"] > div { + width: 100%; +} +.w-richtext figure.w-richtext-align-center { + margin-right: auto; + margin-left: auto; + clear: both; +} +.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, +.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div { + max-width: 100%; +} +.w-richtext figure.w-richtext-align-normal { + clear: both; +} +.w-richtext figure.w-richtext-align-fullwidth { + width: 100%; + max-width: 100%; + text-align: center; + clear: both; + display: block; + margin-right: auto; + margin-left: auto; +} +.w-richtext figure.w-richtext-align-fullwidth > div { + display: inline-block; + /* padding-bottom is used for aspect ratios in video figures + we want the div to inherit that so hover/selection borders in the designer-canvas + fit right*/ + padding-bottom: inherit; +} +.w-richtext figure.w-richtext-align-fullwidth > figcaption { + display: block; +} +.w-richtext figure.w-richtext-align-floatleft { + float: left; + margin-right: 15px; + clear: none; +} +.w-richtext figure.w-richtext-align-floatright { + float: right; + margin-left: 15px; + clear: none; +} +.w-nav { + position: relative; + background: #dddddd; + z-index: 1000; +} +.w-nav:before, +.w-nav:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-nav:after { + clear: both; +} +.w-nav-brand { + position: relative; + float: left; + text-decoration: none; + color: #333333; +} +.w-nav-link { + position: relative; + display: inline-block; + vertical-align: top; + text-decoration: none; + color: #222222; + padding: 20px; + text-align: left; + margin-left: auto; + margin-right: auto; +} +.w-nav-link.w--current { + color: #0082f3; +} +.w-nav-menu { + position: relative; + float: right; +} +[data-nav-menu-open] { + display: block !important; + position: absolute; + top: 100%; + left: 0; + right: 0; + background: #C8C8C8; + text-align: center; + overflow: visible; + min-width: 200px; +} +.w--nav-link-open { + display: block; + position: relative; +} +.w-nav-overlay { + position: absolute; + overflow: hidden; + display: none; + top: 100%; + left: 0; + right: 0; + width: 100%; +} +.w-nav-overlay [data-nav-menu-open] { + top: 0; +} +.w-nav[data-animation='over-left'] .w-nav-overlay { + width: auto; +} +.w-nav[data-animation='over-left'] .w-nav-overlay, +.w-nav[data-animation='over-left'] [data-nav-menu-open] { + right: auto; + z-index: 1; + top: 0; +} +.w-nav[data-animation='over-right'] .w-nav-overlay { + width: auto; +} +.w-nav[data-animation='over-right'] .w-nav-overlay, +.w-nav[data-animation='over-right'] [data-nav-menu-open] { + left: auto; + z-index: 1; + top: 0; +} +.w-nav-button { + position: relative; + float: right; + padding: 18px; + font-size: 24px; + display: none; + cursor: pointer; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + tap-highlight-color: rgba(0, 0, 0, 0); + user-select: none; +} +.w-nav-button:focus { + outline: 0; +} +.w-nav-button.w--open { + background-color: #C8C8C8; + color: white; +} +.w-nav[data-collapse='all'] .w-nav-menu { + display: none; +} +.w-nav[data-collapse='all'] .w-nav-button { + display: block; +} +.w--nav-dropdown-open { + display: block; +} +.w--nav-dropdown-toggle-open { + display: block; +} +.w--nav-dropdown-list-open { + position: static; +} +@media screen and (max-width: 991px) { + .w-nav[data-collapse='medium'] .w-nav-menu { + display: none; + } + .w-nav[data-collapse='medium'] .w-nav-button { + display: block; + } +} +@media screen and (max-width: 767px) { + .w-nav[data-collapse='small'] .w-nav-menu { + display: none; + } + .w-nav[data-collapse='small'] .w-nav-button { + display: block; + } + .w-nav-brand { + padding-left: 10px; + } +} +@media screen and (max-width: 479px) { + .w-nav[data-collapse='tiny'] .w-nav-menu { + display: none; + } + .w-nav[data-collapse='tiny'] .w-nav-button { + display: block; + } +} +.w-tabs { + position: relative; +} +.w-tabs:before, +.w-tabs:after { + content: " "; + display: table; + grid-column-start: 1; + grid-row-start: 1; + grid-column-end: 2; + grid-row-end: 2; +} +.w-tabs:after { + clear: both; +} +.w-tab-menu { + position: relative; +} +.w-tab-link { + position: relative; + display: inline-block; + vertical-align: top; + text-decoration: none; + padding: 9px 30px; + text-align: left; + cursor: pointer; + color: #222222; + background-color: #dddddd; +} +.w-tab-link.w--current { + background-color: #C8C8C8; +} +.w-tab-link:focus { + outline: 0; +} +.w-tab-content { + position: relative; + display: block; + overflow: hidden; +} +.w-tab-pane { + position: relative; + display: none; +} +.w--tab-active { + display: block; +} +@media screen and (max-width: 479px) { + .w-tab-link { + display: block; + } +} +.w-ix-emptyfix:after { + content: ""; +} +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} +.w-dyn-empty { + padding: 10px; + background-color: #dddddd; +} +.w-dyn-hide { + display: none !important; +} +.w-dyn-bind-empty { + display: none !important; +} +.w-condition-invisible { + display: none !important; +} +.wf-layout-layout { + display: grid; +} +.w-code-component > * { + height: 100%; + width: 100%; + position: absolute; + top: 0; + left: 0; +} diff --git a/detail_frustrations.html b/detail_frustrations.html new file mode 100644 index 0000000..9ba5023 --- /dev/null +++ b/detail_frustrations.html @@ -0,0 +1,23 @@ + + + + + TP2 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/detail_solutions.html b/detail_solutions.html new file mode 100644 index 0000000..626fd18 --- /dev/null +++ b/detail_solutions.html @@ -0,0 +1,23 @@ + + + + + TP2 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/detail_values.html b/detail_values.html new file mode 100644 index 0000000..494921f --- /dev/null +++ b/detail_values.html @@ -0,0 +1,23 @@ + + + + + TP2 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/agreego-alpha-p-500.png b/images/agreego-alpha-p-500.png new file mode 100644 index 0000000..ce8a8c2 Binary files /dev/null and b/images/agreego-alpha-p-500.png differ diff --git a/images/agreego-alpha.png b/images/agreego-alpha.png new file mode 100644 index 0000000..abe000c Binary files /dev/null and b/images/agreego-alpha.png differ diff --git a/images/agreego-man-p-500.png b/images/agreego-man-p-500.png new file mode 100644 index 0000000..8dde262 Binary files /dev/null and b/images/agreego-man-p-500.png differ diff --git a/images/agreego-man-p-800.png b/images/agreego-man-p-800.png new file mode 100644 index 0000000..3151d51 Binary files /dev/null and b/images/agreego-man-p-800.png differ diff --git a/images/agreego-man.png b/images/agreego-man.png new file mode 100644 index 0000000..964f917 Binary files /dev/null and b/images/agreego-man.png differ diff --git a/images/atlanta-p-1080.png b/images/atlanta-p-1080.png new file mode 100644 index 0000000..d846ed2 Binary files /dev/null and b/images/atlanta-p-1080.png differ diff --git a/images/atlanta-p-1600.png b/images/atlanta-p-1600.png new file mode 100644 index 0000000..f89916e Binary files /dev/null and b/images/atlanta-p-1600.png differ diff --git a/images/atlanta-p-500.png b/images/atlanta-p-500.png new file mode 100644 index 0000000..0859731 Binary files /dev/null and b/images/atlanta-p-500.png differ diff --git a/images/atlanta-p-800.png b/images/atlanta-p-800.png new file mode 100644 index 0000000..c6e8944 Binary files /dev/null and b/images/atlanta-p-800.png differ diff --git a/images/atlanta.png b/images/atlanta.png new file mode 100644 index 0000000..c29e436 Binary files /dev/null and b/images/atlanta.png differ diff --git a/images/carbon--chat.svg b/images/carbon--chat.svg new file mode 100644 index 0000000..8cb2bd7 --- /dev/null +++ b/images/carbon--chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/castleberry-point-card-p-1080.png b/images/castleberry-point-card-p-1080.png new file mode 100644 index 0000000..3e40f12 Binary files /dev/null and b/images/castleberry-point-card-p-1080.png differ diff --git a/images/castleberry-point-card-p-500.png b/images/castleberry-point-card-p-500.png new file mode 100644 index 0000000..3884381 Binary files /dev/null and b/images/castleberry-point-card-p-500.png differ diff --git a/images/castleberry-point-card-p-800.png b/images/castleberry-point-card-p-800.png new file mode 100644 index 0000000..9d34c4d Binary files /dev/null and b/images/castleberry-point-card-p-800.png differ diff --git a/images/castleberry-point-card.png b/images/castleberry-point-card.png new file mode 100644 index 0000000..2d6d974 Binary files /dev/null and b/images/castleberry-point-card.png differ diff --git a/images/chaos-p-500.png b/images/chaos-p-500.png new file mode 100644 index 0000000..33ee2ff Binary files /dev/null and b/images/chaos-p-500.png differ diff --git a/images/chaos-p-800.png b/images/chaos-p-800.png new file mode 100644 index 0000000..d4820f8 Binary files /dev/null and b/images/chaos-p-800.png differ diff --git a/images/chaos.png b/images/chaos.png new file mode 100644 index 0000000..11282b6 Binary files /dev/null and b/images/chaos.png differ diff --git a/images/dash-p-1080.png b/images/dash-p-1080.png new file mode 100644 index 0000000..298c372 Binary files /dev/null and b/images/dash-p-1080.png differ diff --git a/images/dash-p-1600.png b/images/dash-p-1600.png new file mode 100644 index 0000000..64f7820 Binary files /dev/null and b/images/dash-p-1600.png differ diff --git a/images/dash-p-500.png b/images/dash-p-500.png new file mode 100644 index 0000000..c8ad8a3 Binary files /dev/null and b/images/dash-p-500.png differ diff --git a/images/dash-p-800.png b/images/dash-p-800.png new file mode 100644 index 0000000..e8a5b75 Binary files /dev/null and b/images/dash-p-800.png differ diff --git a/images/dash.png b/images/dash.png new file mode 100644 index 0000000..c43990a Binary files /dev/null and b/images/dash.png differ diff --git a/images/favicon.ico b/images/favicon.ico new file mode 100644 index 0000000..d8432c6 Binary files /dev/null and b/images/favicon.ico differ diff --git a/images/mdi--virtual-meeting.svg b/images/mdi--virtual-meeting.svg new file mode 100644 index 0000000..35735f9 --- /dev/null +++ b/images/mdi--virtual-meeting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/post-it-p-500.png b/images/post-it-p-500.png new file mode 100644 index 0000000..2f04c03 Binary files /dev/null and b/images/post-it-p-500.png differ diff --git a/images/post-it.png b/images/post-it.png new file mode 100644 index 0000000..9a86d14 Binary files /dev/null and b/images/post-it.png differ diff --git a/images/streamline--arrow-roadmap.svg b/images/streamline--arrow-roadmap.svg new file mode 100644 index 0000000..b2bcfcd --- /dev/null +++ b/images/streamline--arrow-roadmap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/underline.svg b/images/underline.svg new file mode 100644 index 0000000..d5fbac5 --- /dev/null +++ b/images/underline.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/images/webclip.png b/images/webclip.png new file mode 100644 index 0000000..7fd380c Binary files /dev/null and b/images/webclip.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..b44b0a2 --- /dev/null +++ b/index.html @@ -0,0 +1,306 @@ + + + + + AgreeGo: Building Stronger Communities Together + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+

Replace your clunky management with AgreeGo to reach consensus and

+

+ + +
+
AgreeGo dashboard interface displaying an intuitive overview of community decisions, bank accounts, project budgets, and maintenance tasks, designed to streamline management and foster community-driven success
+
+
+
+
+
+
+
+

Fed up with your "property management"?

+
+
+
+
+
+
+
+
+
+

+
+
Aerial view of Castleberry Point, a mixed-use condo complex in Downtown Atlanta, GA, with 123 units, highlighted as 'The Alpha Site' where automated self-management processes were successfully implemented +
+
+

+

+

+
+
+
+
+
+

REALITY CHECK

+
+
+
+
+
+
+
+
No items found.
+
+
+
+
+
+
+

What if we told you

+

The only property manager you'll ever need is you and your neighbors

+
+
+
+
+
+
+
+
+
+ +
+
+
+
+

Let's take a second to remember what really matters...

+
+
+
+
+
+
+
+
+
+
+

+

+
+
+
+
+
No items found.
+
+
+
+
+
+
+
+
+
Man joyfully leaping into radiant light, symbolizing the excitement of discovering a powerful tool to bring peace and harmony to his community. +

Are you ready to bring peace to your community?

+
+

Join our vision of disrupting traditional management

+

We've implemented our automated self-management processes at...

+
+
Aerial view of Castleberry Point, a mixed-use condo complex in Downtown Atlanta, GA, with 123 units, highlighted as 'The Alpha Site' where automated self-management processes were successfully implemented +
+
Castleberry Point
+
Mixed-Use Condo Complex
"The Alpha Site"
+
123 Units
Downtown
Atlanta, GA
+
+
+
+

(we got so tired of firing management companies)

+

Over the past six years, we've made self-management possible for associations of any size

+
A panoramic view of the Atlanta skyline, symbolizing growth and innovation as the 2nd and 3rd beta communities onboard in the area, with the potential for more to follow. +
+

The 2nd and 3rd beta communities are currently onboarding in the Atlanta area

+

Want to be next?

+
+
+
+
+
+ +
+
+
+
+

We're building AgreeGo to help you...

+
+
+
+
+
+
+
+
+
+
+
+

+

+
+
+
+
+
+
+
+
+
No items found.
+
+
+
+
+
+
+
+

Schedule some time with us to learn more :)

+
+
+
+
+ + + + + \ No newline at end of file diff --git a/js/webflow.js b/js/webflow.js new file mode 100644 index 0000000..2406581 --- /dev/null +++ b/js/webflow.js @@ -0,0 +1,55 @@ + +/*! + * Webflow: Front-end site library + * @license MIT + * Inline scripts may access the api using an async handler: + * var Webflow = Webflow || []; + * Webflow.push(readyFunction); + */ + +(()=>{var CE=Object.create;var Rn=Object.defineProperty;var PE=Object.getOwnPropertyDescriptor;var LE=Object.getOwnPropertyNames;var NE=Object.getPrototypeOf,DE=Object.prototype.hasOwnProperty;var se=(e,t)=>()=>(e&&(t=e(e=0)),t);var f=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Oe=(e,t)=>{for(var n in t)Rn(e,n,{get:t[n],enumerable:!0})},aa=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of LE(t))!DE.call(e,i)&&i!==n&&Rn(e,i,{get:()=>t[i],enumerable:!(r=PE(t,i))||r.enumerable});return e};var ee=(e,t,n)=>(n=e!=null?CE(NE(e)):{},aa(t||!e||!e.__esModule?Rn(n,"default",{value:e,enumerable:!0}):n,e)),Ue=e=>aa(Rn({},"__esModule",{value:!0}),e);var Hr=f(()=>{"use strict";window.tram=function(e){function t(c,E){var v=new ge.Bare;return v.init(c,E)}function n(c){return c.replace(/[A-Z]/g,function(E){return"-"+E.toLowerCase()})}function r(c){var E=parseInt(c.slice(1),16),v=E>>16&255,b=E>>8&255,w=255&E;return[v,b,w]}function i(c,E,v){return"#"+(1<<24|c<<16|E<<8|v).toString(16).slice(1)}function o(){}function a(c,E){l("Type warning: Expected: ["+c+"] Got: ["+typeof E+"] "+E)}function s(c,E,v){l("Units do not match ["+c+"]: "+E+", "+v)}function u(c,E,v){if(E!==void 0&&(v=E),c===void 0)return v;var b=v;return $t.test(c)||!ft.test(c)?b=parseInt(c,10):ft.test(c)&&(b=1e3*parseFloat(c)),0>b&&(b=0),b===b?b:v}function l(c){oe.debug&&window&&window.console.warn(c)}function y(c){for(var E=-1,v=c?c.length:0,b=[];++EIe&&(Ie=de.span),de.stop(),de.animate(RE)},function(de){"wait"in de&&(Ie=u(de.wait,0))}),fe.call(this),Ie>0&&(this.timer=new tt({duration:Ie,context:this}),this.active=!0,J&&(this.timer.complete=O));var Le=this,Se=!1,wn={};te(function(){Ve.call(Le,W,function(de){de.active&&(Se=!0,wn[de.name]=de.nextStyle)}),Se&&Le.$el.css(wn)})}}}function b(W){W=u(W,0),this.active?this.queue.push({options:W}):(this.timer=new tt({duration:W,context:this,complete:O}),this.active=!0)}function w(W){return this.active?(this.queue.push({options:W,args:arguments}),void(this.timer.complete=O)):l("No active transition timer. Use start() or wait() before then().")}function O(){if(this.timer&&this.timer.destroy(),this.active=!1,this.queue.length){var W=this.queue.shift();v.call(this,W.options,!0,W.args)}}function H(W){this.timer&&this.timer.destroy(),this.queue=[],this.active=!1;var J;typeof W=="string"?(J={},J[W]=1):J=typeof W=="object"&&W!=null?W:this.props,Ve.call(this,J,_e),fe.call(this)}function Q(W){H.call(this,W),Ve.call(this,W,Zt,xE)}function ae(W){typeof W!="string"&&(W="block"),this.el.style.display=W}function D(){H.call(this),this.el.style.display="none"}function $(){this.el.offsetHeight}function Z(){H.call(this),e.removeData(this.el,S),this.$el=this.el=null}function fe(){var W,J,ce=[];this.upstream&&ce.push(this.upstream);for(W in this.props)J=this.props[W],J.active&&ce.push(J.string);ce=ce.join(","),this.style!==ce&&(this.style=ce,this.el.style[F.transition.dom]=ce)}function Ve(W,J,ce){var ne,Ie,Le,Se,wn=J!==_e,de={};for(ne in W)Le=W[ne],ne in ue?(de.transform||(de.transform={}),de.transform[ne]=Le):(x.test(ne)&&(ne=n(ne)),ne in q?de[ne]=Le:(Se||(Se={}),Se[ne]=Le));for(ne in de){if(Le=de[ne],Ie=this.props[ne],!Ie){if(!wn)continue;Ie=E.call(this,ne)}J.call(this,Ie,Le)}ce&&Se&&ce.call(this,Se)}function _e(W){W.stop()}function Zt(W,J){W.set(J)}function xE(W){this.$el.css(W)}function Pe(W,J){c[W]=function(){return this.children?wE.call(this,J,arguments):(this.el&&J.apply(this,arguments),this)}}function wE(W,J){var ce,ne=this.children.length;for(ce=0;ne>ce;ce++)W.apply(this.children[ce],J);return this}c.init=function(W){if(this.$el=e(W),this.el=this.$el[0],this.props={},this.queue=[],this.style="",this.active=!1,oe.keepInherited&&!oe.fallback){var J=M(this.el,"transition");J&&!U.test(J)&&(this.upstream=J)}F.backface&&oe.hideBackface&&p(this.el,F.backface.css,"hidden")},Pe("add",E),Pe("start",v),Pe("wait",b),Pe("then",w),Pe("next",O),Pe("stop",H),Pe("set",Q),Pe("show",ae),Pe("hide",D),Pe("redraw",$),Pe("destroy",Z)}),ge=g(Xe,function(c){function E(v,b){var w=e.data(v,S)||e.data(v,S,new Xe.Bare);return w.el||w.init(v),b?w.start(b):w}c.init=function(v,b){var w=e(v);if(!w.length)return this;if(w.length===1)return E(w[0],b);var O=[];return w.each(function(H,Q){O.push(E(Q,b))}),this.children=O,this}}),Y=g(function(c){function E(){var O=this.get();this.update("auto");var H=this.get();return this.update(O),H}function v(O,H,Q){return H!==void 0&&(Q=H),O in d?O:Q}function b(O){var H=/rgba?\((\d+),\s*(\d+),\s*(\d+)/.exec(O);return(H?i(H[1],H[2],H[3]):O).replace(/#(\w)(\w)(\w)$/,"#$1$1$2$2$3$3")}var w={duration:500,ease:"ease",delay:0};c.init=function(O,H,Q,ae){this.$el=O,this.el=O[0];var D=H[0];Q[2]&&(D=Q[2]),B[D]&&(D=B[D]),this.name=D,this.type=Q[1],this.duration=u(H[1],this.duration,w.duration),this.ease=v(H[2],this.ease,w.ease),this.delay=u(H[3],this.delay,w.delay),this.span=this.duration+this.delay,this.active=!1,this.nextStyle=null,this.auto=k.test(this.name),this.unit=ae.unit||this.unit||oe.defaultUnit,this.angle=ae.angle||this.angle||oe.defaultAngle,oe.fallback||ae.fallback?this.animate=this.fallback:(this.animate=this.transition,this.string=this.name+z+this.duration+"ms"+(this.ease!="ease"?z+d[this.ease][0]:"")+(this.delay?z+this.delay+"ms":""))},c.set=function(O){O=this.convert(O,this.type),this.update(O),this.redraw()},c.transition=function(O){this.active=!0,O=this.convert(O,this.type),this.auto&&(this.el.style[this.name]=="auto"&&(this.update(this.get()),this.redraw()),O=="auto"&&(O=E.call(this))),this.nextStyle=O},c.fallback=function(O){var H=this.el.style[this.name]||this.convert(this.get(),this.type);O=this.convert(O,this.type),this.auto&&(H=="auto"&&(H=this.convert(this.get(),this.type)),O=="auto"&&(O=E.call(this))),this.tween=new lt({from:H,to:O,duration:this.duration,delay:this.delay,ease:this.ease,update:this.update,context:this})},c.get=function(){return M(this.el,this.name)},c.update=function(O){p(this.el,this.name,O)},c.stop=function(){(this.active||this.nextStyle)&&(this.active=!1,this.nextStyle=null,p(this.el,this.name,this.get()));var O=this.tween;O&&O.context&&O.destroy()},c.convert=function(O,H){if(O=="auto"&&this.auto)return O;var Q,ae=typeof O=="number",D=typeof O=="string";switch(H){case A:if(ae)return O;if(D&&O.replace(m,"")==="")return+O;Q="number(unitless)";break;case L:if(D){if(O===""&&this.original)return this.original;if(H.test(O))return O.charAt(0)=="#"&&O.length==7?O:b(O)}Q="hex or rgb string";break;case N:if(ae)return O+this.unit;if(D&&H.test(O))return O;Q="number(px) or string(unit)";break;case R:if(ae)return O+this.unit;if(D&&H.test(O))return O;Q="number(px) or string(unit or %)";break;case G:if(ae)return O+this.angle;if(D&&H.test(O))return O;Q="number(deg) or string(angle)";break;case X:if(ae||D&&R.test(O))return O;Q="number(unitless) or string(unit or %)"}return a(Q,O),O},c.redraw=function(){this.el.offsetHeight}}),he=g(Y,function(c,E){c.init=function(){E.init.apply(this,arguments),this.original||(this.original=this.convert(this.get(),L))}}),ct=g(Y,function(c,E){c.init=function(){E.init.apply(this,arguments),this.animate=this.fallback},c.get=function(){return this.$el[this.name]()},c.update=function(v){this.$el[this.name](v)}}),_t=g(Y,function(c,E){function v(b,w){var O,H,Q,ae,D;for(O in b)ae=ue[O],Q=ae[0],H=ae[1]||O,D=this.convert(b[O],Q),w.call(this,H,D,Q)}c.init=function(){E.init.apply(this,arguments),this.current||(this.current={},ue.perspective&&oe.perspective&&(this.current.perspective=oe.perspective,p(this.el,this.name,this.style(this.current)),this.redraw()))},c.set=function(b){v.call(this,b,function(w,O){this.current[w]=O}),p(this.el,this.name,this.style(this.current)),this.redraw()},c.transition=function(b){var w=this.values(b);this.tween=new Qt({current:this.current,values:w,duration:this.duration,delay:this.delay,ease:this.ease});var O,H={};for(O in this.current)H[O]=O in w?w[O]:this.current[O];this.active=!0,this.nextStyle=this.style(H)},c.fallback=function(b){var w=this.values(b);this.tween=new Qt({current:this.current,values:w,duration:this.duration,delay:this.delay,ease:this.ease,update:this.update,context:this})},c.update=function(){p(this.el,this.name,this.style(this.current))},c.style=function(b){var w,O="";for(w in b)O+=w+"("+b[w]+") ";return O},c.values=function(b){var w,O={};return v.call(this,b,function(H,Q,ae){O[H]=Q,this.current[H]===void 0&&(w=0,~H.indexOf("scale")&&(w=1),this.current[H]=this.convert(w,ae))}),O}}),lt=g(function(c){function E(D){Q.push(D)===1&&te(v)}function v(){var D,$,Z,fe=Q.length;if(fe)for(te(v),$=ve(),D=fe;D--;)Z=Q[D],Z&&Z.render($)}function b(D){var $,Z=e.inArray(D,Q);Z>=0&&($=Q.slice(Z+1),Q.length=Z,$.length&&(Q=Q.concat($)))}function w(D){return Math.round(D*ae)/ae}function O(D,$,Z){return i(D[0]+Z*($[0]-D[0]),D[1]+Z*($[1]-D[1]),D[2]+Z*($[2]-D[2]))}var H={ease:d.ease[1],from:0,to:1};c.init=function(D){this.duration=D.duration||0,this.delay=D.delay||0;var $=D.ease||H.ease;d[$]&&($=d[$][1]),typeof $!="function"&&($=H.ease),this.ease=$,this.update=D.update||o,this.complete=D.complete||o,this.context=D.context||this,this.name=D.name;var Z=D.from,fe=D.to;Z===void 0&&(Z=H.from),fe===void 0&&(fe=H.to),this.unit=D.unit||"",typeof Z=="number"&&typeof fe=="number"?(this.begin=Z,this.change=fe-Z):this.format(fe,Z),this.value=this.begin+this.unit,this.start=ve(),D.autoplay!==!1&&this.play()},c.play=function(){this.active||(this.start||(this.start=ve()),this.active=!0,E(this))},c.stop=function(){this.active&&(this.active=!1,b(this))},c.render=function(D){var $,Z=D-this.start;if(this.delay){if(Z<=this.delay)return;Z-=this.delay}if(Z{"use strict";var ME=window.$,FE=Hr()&&ME.tram;sa.exports=function(){var e={};e.VERSION="1.6.0-Webflow";var t={},n=Array.prototype,r=Object.prototype,i=Function.prototype,o=n.push,a=n.slice,s=n.concat,u=r.toString,l=r.hasOwnProperty,y=n.forEach,g=n.map,d=n.reduce,h=n.reduceRight,T=n.filter,_=n.every,S=n.some,m=n.indexOf,x=n.lastIndexOf,A=Array.isArray,L=Object.keys,N=i.bind,R=e.each=e.forEach=function(I,C,V){if(I==null)return I;if(y&&I.forEach===y)I.forEach(C,V);else if(I.length===+I.length){for(var F=0,K=I.length;F/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var X=/(.)^/,U={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},k=/\\|'|\r|\n|\u2028|\u2029/g,z=function(I){return"\\"+U[I]},P=/^\s*(\w|\$)+\s*$/;return e.template=function(I,C,V){!C&&V&&(C=V),C=e.defaults({},C,e.templateSettings);var F=RegExp([(C.escape||X).source,(C.interpolate||X).source,(C.evaluate||X).source].join("|")+"|$","g"),K=0,j="__p+='";I.replace(F,function(ge,Y,he,ct,_t){return j+=I.slice(K,_t).replace(k,z),K=_t+ge.length,Y?j+=`'+ +((__t=(`+Y+`))==null?'':_.escape(__t))+ +'`:he?j+=`'+ +((__t=(`+he+`))==null?'':__t)+ +'`:ct&&(j+=`'; +`+ct+` +__p+='`),ge}),j+=`'; +`;var te=C.variable;if(te){if(!P.test(te))throw new Error("variable is not a bare identifier: "+te)}else j=`with(obj||{}){ +`+j+`} +`,te="obj";j=`var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');}; +`+j+`return __p; +`;var ve;try{ve=new Function(C.variable||"obj","_",j)}catch(ge){throw ge.source=j,ge}var Xe=function(ge){return ve.call(this,ge,e)};return Xe.source="function("+te+`){ +`+j+"}",Xe},e}()});var Ye=f((dF,Ea)=>{"use strict";var re={},It={},Tt=[],Wr=window.Webflow||[],nt=window.jQuery,De=nt(window),qE=nt(document),Be=nt.isFunction,Ne=re._=ua(),la=re.tram=Hr()&&nt.tram,Pn=!1,zr=!1;la.config.hideBackface=!1;la.config.keepInherited=!0;re.define=function(e,t,n){It[e]&&da(It[e]);var r=It[e]=t(nt,Ne,n)||{};return fa(r),r};re.require=function(e){return It[e]};function fa(e){re.env()&&(Be(e.design)&&De.on("__wf_design",e.design),Be(e.preview)&&De.on("__wf_preview",e.preview)),Be(e.destroy)&&De.on("__wf_destroy",e.destroy),e.ready&&Be(e.ready)&&GE(e)}function GE(e){if(Pn){e.ready();return}Ne.contains(Tt,e.ready)||Tt.push(e.ready)}function da(e){Be(e.design)&&De.off("__wf_design",e.design),Be(e.preview)&&De.off("__wf_preview",e.preview),Be(e.destroy)&&De.off("__wf_destroy",e.destroy),e.ready&&Be(e.ready)&&XE(e)}function XE(e){Tt=Ne.filter(Tt,function(t){return t!==e.ready})}re.push=function(e){if(Pn){Be(e)&&e();return}Wr.push(e)};re.env=function(e){var t=window.__wf_design,n=typeof t<"u";if(!e)return n;if(e==="design")return n&&t;if(e==="preview")return n&&!t;if(e==="slug")return n&&window.__wf_slug;if(e==="editor")return window.WebflowEditor;if(e==="test")return window.__wf_test;if(e==="frame")return window!==window.top};var Cn=navigator.userAgent.toLowerCase(),pa=re.env.touch="ontouchstart"in window||window.DocumentTouch&&document instanceof window.DocumentTouch,VE=re.env.chrome=/chrome/.test(Cn)&&/Google/.test(navigator.vendor)&&parseInt(Cn.match(/chrome\/(\d+)\./)[1],10),UE=re.env.ios=/(ipod|iphone|ipad)/.test(Cn);re.env.safari=/safari/.test(Cn)&&!VE&&!UE;var kr;pa&&qE.on("touchstart mousedown",function(e){kr=e.target});re.validClick=pa?function(e){return e===kr||nt.contains(e,kr)}:function(){return!0};var ga="resize.webflow orientationchange.webflow load.webflow",BE="scroll.webflow "+ga;re.resize=Kr(De,ga);re.scroll=Kr(De,BE);re.redraw=Kr();function Kr(e,t){var n=[],r={};return r.up=Ne.throttle(function(i){Ne.each(n,function(o){o(i)})}),e&&t&&e.on(t,r.up),r.on=function(i){typeof i=="function"&&(Ne.contains(n,i)||n.push(i))},r.off=function(i){if(!arguments.length){n=[];return}n=Ne.filter(n,function(o){return o!==i})},r}re.location=function(e){window.location=e};re.env()&&(re.location=function(){});re.ready=function(){Pn=!0,zr?HE():Ne.each(Tt,ca),Ne.each(Wr,ca),re.resize.up()};function ca(e){Be(e)&&e()}function HE(){zr=!1,Ne.each(It,fa)}var dt;re.load=function(e){dt.then(e)};function ha(){dt&&(dt.reject(),De.off("load",dt.resolve)),dt=new nt.Deferred,De.on("load",dt.resolve)}re.destroy=function(e){e=e||{},zr=!0,De.triggerHandler("__wf_destroy"),e.domready!=null&&(Pn=e.domready),Ne.each(It,da),re.resize.off(),re.scroll.off(),re.redraw.off(),Tt=[],Wr=[],dt.state()==="pending"&&ha()};nt(re.ready);ha();Ea.exports=window.Webflow=re});var ma=f((pF,va)=>{"use strict";var ya=Ye();ya.define("brand",va.exports=function(e){var t={},n=document,r=e("html"),i=e("body"),o=".w-webflow-badge",a=window.location,s=/PhantomJS/i.test(navigator.userAgent),u="fullscreenchange webkitfullscreenchange mozfullscreenchange msfullscreenchange",l;t.ready=function(){var h=r.attr("data-wf-status"),T=r.attr("data-wf-domain")||"";/\.webflow\.io$/i.test(T)&&a.hostname!==T&&(h=!0),h&&!s&&(l=l||g(),d(),setTimeout(d,500),e(n).off(u,y).on(u,y))};function y(){var h=n.fullScreen||n.mozFullScreen||n.webkitIsFullScreen||n.msFullscreenElement||!!n.webkitFullscreenElement;e(l).attr("style",h?"display: none !important;":"")}function g(){var h=e('').attr("href","https://webflow.com?utm_campaign=brandjs"),T=e("").attr("src","https://d3e54v103j8qbb.cloudfront.net/img/webflow-badge-icon-d2.89e12c322e.svg").attr("alt","").css({marginRight:"4px",width:"26px"}),_=e("").attr("src","https://d3e54v103j8qbb.cloudfront.net/img/webflow-badge-text-d2.c82cec3b78.svg").attr("alt","Made in Webflow");return h.append(T,_),h[0]}function d(){var h=i.children(o),T=h.length&&h.get(0)===l,_=ya.env("editor");if(T){_&&h.remove();return}h.length&&h.remove(),_||i.append(l)}return t})});var Ia=f((gF,_a)=>{"use strict";var kE=Ye();kE.define("focus-visible",_a.exports=function(){function e(n){var r=!0,i=!1,o=null,a={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function s(A){return!!(A&&A!==document&&A.nodeName!=="HTML"&&A.nodeName!=="BODY"&&"classList"in A&&"contains"in A.classList)}function u(A){var L=A.type,N=A.tagName;return!!(N==="INPUT"&&a[L]&&!A.readOnly||N==="TEXTAREA"&&!A.readOnly||A.isContentEditable)}function l(A){A.getAttribute("data-wf-focus-visible")||A.setAttribute("data-wf-focus-visible","true")}function y(A){A.getAttribute("data-wf-focus-visible")&&A.removeAttribute("data-wf-focus-visible")}function g(A){A.metaKey||A.altKey||A.ctrlKey||(s(n.activeElement)&&l(n.activeElement),r=!0)}function d(){r=!1}function h(A){s(A.target)&&(r||u(A.target))&&l(A.target)}function T(A){s(A.target)&&A.target.hasAttribute("data-wf-focus-visible")&&(i=!0,window.clearTimeout(o),o=window.setTimeout(function(){i=!1},100),y(A.target))}function _(){document.visibilityState==="hidden"&&(i&&(r=!0),S())}function S(){document.addEventListener("mousemove",x),document.addEventListener("mousedown",x),document.addEventListener("mouseup",x),document.addEventListener("pointermove",x),document.addEventListener("pointerdown",x),document.addEventListener("pointerup",x),document.addEventListener("touchmove",x),document.addEventListener("touchstart",x),document.addEventListener("touchend",x)}function m(){document.removeEventListener("mousemove",x),document.removeEventListener("mousedown",x),document.removeEventListener("mouseup",x),document.removeEventListener("pointermove",x),document.removeEventListener("pointerdown",x),document.removeEventListener("pointerup",x),document.removeEventListener("touchmove",x),document.removeEventListener("touchstart",x),document.removeEventListener("touchend",x)}function x(A){A.target.nodeName&&A.target.nodeName.toLowerCase()==="html"||(r=!1,m())}document.addEventListener("keydown",g,!0),document.addEventListener("mousedown",d,!0),document.addEventListener("pointerdown",d,!0),document.addEventListener("touchstart",d,!0),document.addEventListener("visibilitychange",_,!0),S(),n.addEventListener("focus",h,!0),n.addEventListener("blur",T,!0)}function t(){if(typeof document<"u")try{document.querySelector(":focus-visible")}catch{e(document)}}return{ready:t}})});var Aa=f((hF,ba)=>{"use strict";var Ta=Ye();Ta.define("focus",ba.exports=function(){var e=[],t=!1;function n(a){t&&(a.preventDefault(),a.stopPropagation(),a.stopImmediatePropagation(),e.unshift(a))}function r(a){var s=a.target,u=s.tagName;return/^a$/i.test(u)&&s.href!=null||/^(button|textarea)$/i.test(u)&&s.disabled!==!0||/^input$/i.test(u)&&/^(button|reset|submit|radio|checkbox)$/i.test(s.type)&&!s.disabled||!/^(button|input|textarea|select|a)$/i.test(u)&&!Number.isNaN(Number.parseFloat(s.tabIndex))||/^audio$/i.test(u)||/^video$/i.test(u)&&s.controls===!0}function i(a){r(a)&&(t=!0,setTimeout(()=>{for(t=!1,a.target.focus();e.length>0;){var s=e.pop();s.target.dispatchEvent(new MouseEvent(s.type,s))}},0))}function o(){typeof document<"u"&&document.body.hasAttribute("data-wf-focus-within")&&Ta.env.safari&&(document.addEventListener("mousedown",i,!0),document.addEventListener("mouseup",n,!0),document.addEventListener("click",n,!0))}return{ready:o}})});var xa=f((EF,Oa)=>{"use strict";var jr=window.jQuery,He={},Ln=[],Sa=".w-ix",Nn={reset:function(e,t){t.__wf_intro=null},intro:function(e,t){t.__wf_intro||(t.__wf_intro=!0,jr(t).triggerHandler(He.types.INTRO))},outro:function(e,t){t.__wf_intro&&(t.__wf_intro=null,jr(t).triggerHandler(He.types.OUTRO))}};He.triggers={};He.types={INTRO:"w-ix-intro"+Sa,OUTRO:"w-ix-outro"+Sa};He.init=function(){for(var e=Ln.length,t=0;t{"use strict";var Yr=xa();function wa(e,t){var n=document.createEvent("CustomEvent");n.initCustomEvent(t,!0,!0,null),e.dispatchEvent(n)}var WE=window.jQuery,Dn={},Ra=".w-ix",zE={reset:function(e,t){Yr.triggers.reset(e,t)},intro:function(e,t){Yr.triggers.intro(e,t),wa(t,"COMPONENT_ACTIVE")},outro:function(e,t){Yr.triggers.outro(e,t),wa(t,"COMPONENT_INACTIVE")}};Dn.triggers={};Dn.types={INTRO:"w-ix-intro"+Ra,OUTRO:"w-ix-outro"+Ra};WE.extend(Dn.triggers,zE);Ca.exports=Dn});var $r=f((vF,Pa)=>{var KE=typeof global=="object"&&global&&global.Object===Object&&global;Pa.exports=KE});var Me=f((mF,La)=>{var jE=$r(),YE=typeof self=="object"&&self&&self.Object===Object&&self,QE=jE||YE||Function("return this")();La.exports=QE});var bt=f((_F,Na)=>{var $E=Me(),ZE=$E.Symbol;Na.exports=ZE});var qa=f((IF,Fa)=>{var Da=bt(),Ma=Object.prototype,JE=Ma.hasOwnProperty,ey=Ma.toString,Jt=Da?Da.toStringTag:void 0;function ty(e){var t=JE.call(e,Jt),n=e[Jt];try{e[Jt]=void 0;var r=!0}catch{}var i=ey.call(e);return r&&(t?e[Jt]=n:delete e[Jt]),i}Fa.exports=ty});var Xa=f((TF,Ga)=>{var ny=Object.prototype,ry=ny.toString;function iy(e){return ry.call(e)}Ga.exports=iy});var rt=f((bF,Ba)=>{var Va=bt(),oy=qa(),ay=Xa(),sy="[object Null]",uy="[object Undefined]",Ua=Va?Va.toStringTag:void 0;function cy(e){return e==null?e===void 0?uy:sy:Ua&&Ua in Object(e)?oy(e):ay(e)}Ba.exports=cy});var Zr=f((AF,Ha)=>{function ly(e,t){return function(n){return e(t(n))}}Ha.exports=ly});var Jr=f((SF,ka)=>{var fy=Zr(),dy=fy(Object.getPrototypeOf,Object);ka.exports=dy});var Qe=f((OF,Wa)=>{function py(e){return e!=null&&typeof e=="object"}Wa.exports=py});var ei=f((xF,Ka)=>{var gy=rt(),hy=Jr(),Ey=Qe(),yy="[object Object]",vy=Function.prototype,my=Object.prototype,za=vy.toString,_y=my.hasOwnProperty,Iy=za.call(Object);function Ty(e){if(!Ey(e)||gy(e)!=yy)return!1;var t=hy(e);if(t===null)return!0;var n=_y.call(t,"constructor")&&t.constructor;return typeof n=="function"&&n instanceof n&&za.call(n)==Iy}Ka.exports=Ty});var ja=f(ti=>{"use strict";Object.defineProperty(ti,"__esModule",{value:!0});ti.default=by;function by(e){var t,n=e.Symbol;return typeof n=="function"?n.observable?t=n.observable:(t=n("observable"),n.observable=t):t="@@observable",t}});var Ya=f((ri,ni)=>{"use strict";Object.defineProperty(ri,"__esModule",{value:!0});var Ay=ja(),Sy=Oy(Ay);function Oy(e){return e&&e.__esModule?e:{default:e}}var At;typeof self<"u"?At=self:typeof window<"u"?At=window:typeof global<"u"?At=global:typeof ni<"u"?At=ni:At=Function("return this")();var xy=(0,Sy.default)(At);ri.default=xy});var ii=f(en=>{"use strict";en.__esModule=!0;en.ActionTypes=void 0;en.default=Ja;var wy=ei(),Ry=Za(wy),Cy=Ya(),Qa=Za(Cy);function Za(e){return e&&e.__esModule?e:{default:e}}var $a=en.ActionTypes={INIT:"@@redux/INIT"};function Ja(e,t,n){var r;if(typeof t=="function"&&typeof n>"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error("Expected the enhancer to be a function.");return n(Ja)(e,t)}if(typeof e!="function")throw new Error("Expected the reducer to be a function.");var i=e,o=t,a=[],s=a,u=!1;function l(){s===a&&(s=a.slice())}function y(){return o}function g(_){if(typeof _!="function")throw new Error("Expected listener to be a function.");var S=!0;return l(),s.push(_),function(){if(S){S=!1,l();var x=s.indexOf(_);s.splice(x,1)}}}function d(_){if(!(0,Ry.default)(_))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(typeof _.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(u)throw new Error("Reducers may not dispatch actions.");try{u=!0,o=i(o,_)}finally{u=!1}for(var S=a=s,m=0;m{"use strict";oi.__esModule=!0;oi.default=Py;function Py(e){typeof console<"u"&&typeof console.error=="function"&&console.error(e);try{throw new Error(e)}catch{}}});var ns=f(si=>{"use strict";si.__esModule=!0;si.default=Fy;var es=ii(),Ly=ei(),PF=ts(Ly),Ny=ai(),LF=ts(Ny);function ts(e){return e&&e.__esModule?e:{default:e}}function Dy(e,t){var n=t&&t.type,r=n&&'"'+n.toString()+'"'||"an action";return"Given action "+r+', reducer "'+e+'" returned undefined. To ignore an action, you must explicitly return the previous state.'}function My(e){Object.keys(e).forEach(function(t){var n=e[t],r=n(void 0,{type:es.ActionTypes.INIT});if(typeof r>"u")throw new Error('Reducer "'+t+'" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined.');var i="@@redux/PROBE_UNKNOWN_ACTION_"+Math.random().toString(36).substring(7).split("").join(".");if(typeof n(void 0,{type:i})>"u")throw new Error('Reducer "'+t+'" returned undefined when probed with a random type. '+("Don't try to handle "+es.ActionTypes.INIT+' or other actions in "redux/*" ')+"namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined.")})}function Fy(e){for(var t=Object.keys(e),n={},r=0;r"u"){var A=Dy(_,y);throw new Error(A)}h[_]=x,d=d||x!==m}return d?h:l}}});var is=f(ui=>{"use strict";ui.__esModule=!0;ui.default=qy;function rs(e,t){return function(){return t(e.apply(void 0,arguments))}}function qy(e,t){if(typeof e=="function")return rs(e,t);if(typeof e!="object"||e===null)throw new Error("bindActionCreators expected an object or a function, instead received "+(e===null?"null":typeof e)+'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?');for(var n=Object.keys(e),r={},i=0;i{"use strict";ci.__esModule=!0;ci.default=Gy;function Gy(){for(var e=arguments.length,t=Array(e),n=0;n{"use strict";fi.__esModule=!0;var Xy=Object.assign||function(e){for(var t=1;t{"use strict";Ce.__esModule=!0;Ce.compose=Ce.applyMiddleware=Ce.bindActionCreators=Ce.combineReducers=Ce.createStore=void 0;var ky=ii(),Wy=St(ky),zy=ns(),Ky=St(zy),jy=is(),Yy=St(jy),Qy=os(),$y=St(Qy),Zy=li(),Jy=St(Zy),ev=ai(),qF=St(ev);function St(e){return e&&e.__esModule?e:{default:e}}Ce.createStore=Wy.default;Ce.combineReducers=Ky.default;Ce.bindActionCreators=Yy.default;Ce.applyMiddleware=$y.default;Ce.compose=Jy.default});var Fe,pi,ke,tv,nv,Mn,rv,gi=se(()=>{"use strict";Fe={NAVBAR_OPEN:"NAVBAR_OPEN",NAVBAR_CLOSE:"NAVBAR_CLOSE",TAB_ACTIVE:"TAB_ACTIVE",TAB_INACTIVE:"TAB_INACTIVE",SLIDER_ACTIVE:"SLIDER_ACTIVE",SLIDER_INACTIVE:"SLIDER_INACTIVE",DROPDOWN_OPEN:"DROPDOWN_OPEN",DROPDOWN_CLOSE:"DROPDOWN_CLOSE",MOUSE_CLICK:"MOUSE_CLICK",MOUSE_SECOND_CLICK:"MOUSE_SECOND_CLICK",MOUSE_DOWN:"MOUSE_DOWN",MOUSE_UP:"MOUSE_UP",MOUSE_OVER:"MOUSE_OVER",MOUSE_OUT:"MOUSE_OUT",MOUSE_MOVE:"MOUSE_MOVE",MOUSE_MOVE_IN_VIEWPORT:"MOUSE_MOVE_IN_VIEWPORT",SCROLL_INTO_VIEW:"SCROLL_INTO_VIEW",SCROLL_OUT_OF_VIEW:"SCROLL_OUT_OF_VIEW",SCROLLING_IN_VIEW:"SCROLLING_IN_VIEW",ECOMMERCE_CART_OPEN:"ECOMMERCE_CART_OPEN",ECOMMERCE_CART_CLOSE:"ECOMMERCE_CART_CLOSE",PAGE_START:"PAGE_START",PAGE_FINISH:"PAGE_FINISH",PAGE_SCROLL_UP:"PAGE_SCROLL_UP",PAGE_SCROLL_DOWN:"PAGE_SCROLL_DOWN",PAGE_SCROLL:"PAGE_SCROLL"},pi={ELEMENT:"ELEMENT",CLASS:"CLASS",PAGE:"PAGE"},ke={ELEMENT:"ELEMENT",VIEWPORT:"VIEWPORT"},tv={X_AXIS:"X_AXIS",Y_AXIS:"Y_AXIS"},nv={CHILDREN:"CHILDREN",SIBLINGS:"SIBLINGS",IMMEDIATE_CHILDREN:"IMMEDIATE_CHILDREN"},Mn={FADE_EFFECT:"FADE_EFFECT",SLIDE_EFFECT:"SLIDE_EFFECT",GROW_EFFECT:"GROW_EFFECT",SHRINK_EFFECT:"SHRINK_EFFECT",SPIN_EFFECT:"SPIN_EFFECT",FLY_EFFECT:"FLY_EFFECT",POP_EFFECT:"POP_EFFECT",FLIP_EFFECT:"FLIP_EFFECT",JIGGLE_EFFECT:"JIGGLE_EFFECT",PULSE_EFFECT:"PULSE_EFFECT",DROP_EFFECT:"DROP_EFFECT",BLINK_EFFECT:"BLINK_EFFECT",BOUNCE_EFFECT:"BOUNCE_EFFECT",FLIP_LEFT_TO_RIGHT_EFFECT:"FLIP_LEFT_TO_RIGHT_EFFECT",FLIP_RIGHT_TO_LEFT_EFFECT:"FLIP_RIGHT_TO_LEFT_EFFECT",RUBBER_BAND_EFFECT:"RUBBER_BAND_EFFECT",JELLO_EFFECT:"JELLO_EFFECT",GROW_BIG_EFFECT:"GROW_BIG_EFFECT",SHRINK_BIG_EFFECT:"SHRINK_BIG_EFFECT",PLUGIN_LOTTIE_EFFECT:"PLUGIN_LOTTIE_EFFECT"},rv={LEFT:"LEFT",RIGHT:"RIGHT",BOTTOM:"BOTTOM",TOP:"TOP",BOTTOM_LEFT:"BOTTOM_LEFT",BOTTOM_RIGHT:"BOTTOM_RIGHT",TOP_RIGHT:"TOP_RIGHT",TOP_LEFT:"TOP_LEFT",CLOCKWISE:"CLOCKWISE",COUNTER_CLOCKWISE:"COUNTER_CLOCKWISE"}});var Te,iv,Fn=se(()=>{"use strict";Te={TRANSFORM_MOVE:"TRANSFORM_MOVE",TRANSFORM_SCALE:"TRANSFORM_SCALE",TRANSFORM_ROTATE:"TRANSFORM_ROTATE",TRANSFORM_SKEW:"TRANSFORM_SKEW",STYLE_OPACITY:"STYLE_OPACITY",STYLE_SIZE:"STYLE_SIZE",STYLE_FILTER:"STYLE_FILTER",STYLE_FONT_VARIATION:"STYLE_FONT_VARIATION",STYLE_BACKGROUND_COLOR:"STYLE_BACKGROUND_COLOR",STYLE_BORDER:"STYLE_BORDER",STYLE_TEXT_COLOR:"STYLE_TEXT_COLOR",OBJECT_VALUE:"OBJECT_VALUE",PLUGIN_LOTTIE:"PLUGIN_LOTTIE",PLUGIN_SPLINE:"PLUGIN_SPLINE",PLUGIN_RIVE:"PLUGIN_RIVE",PLUGIN_VARIABLE:"PLUGIN_VARIABLE",GENERAL_DISPLAY:"GENERAL_DISPLAY",GENERAL_START_ACTION:"GENERAL_START_ACTION",GENERAL_CONTINUOUS_ACTION:"GENERAL_CONTINUOUS_ACTION",GENERAL_COMBO_CLASS:"GENERAL_COMBO_CLASS",GENERAL_STOP_ACTION:"GENERAL_STOP_ACTION",GENERAL_LOOP:"GENERAL_LOOP",STYLE_BOX_SHADOW:"STYLE_BOX_SHADOW"},iv={ELEMENT:"ELEMENT",ELEMENT_CLASS:"ELEMENT_CLASS",TRIGGER_ELEMENT:"TRIGGER_ELEMENT"}});var ov,as=se(()=>{"use strict";ov={MOUSE_CLICK_INTERACTION:"MOUSE_CLICK_INTERACTION",MOUSE_HOVER_INTERACTION:"MOUSE_HOVER_INTERACTION",MOUSE_MOVE_INTERACTION:"MOUSE_MOVE_INTERACTION",SCROLL_INTO_VIEW_INTERACTION:"SCROLL_INTO_VIEW_INTERACTION",SCROLLING_IN_VIEW_INTERACTION:"SCROLLING_IN_VIEW_INTERACTION",MOUSE_MOVE_IN_VIEWPORT_INTERACTION:"MOUSE_MOVE_IN_VIEWPORT_INTERACTION",PAGE_IS_SCROLLING_INTERACTION:"PAGE_IS_SCROLLING_INTERACTION",PAGE_LOAD_INTERACTION:"PAGE_LOAD_INTERACTION",PAGE_SCROLLED_INTERACTION:"PAGE_SCROLLED_INTERACTION",NAVBAR_INTERACTION:"NAVBAR_INTERACTION",DROPDOWN_INTERACTION:"DROPDOWN_INTERACTION",ECOMMERCE_CART_INTERACTION:"ECOMMERCE_CART_INTERACTION",TAB_INTERACTION:"TAB_INTERACTION",SLIDER_INTERACTION:"SLIDER_INTERACTION"}});var av,sv,uv,cv,lv,fv,dv,hi,ss=se(()=>{"use strict";Fn();({TRANSFORM_MOVE:av,TRANSFORM_SCALE:sv,TRANSFORM_ROTATE:uv,TRANSFORM_SKEW:cv,STYLE_SIZE:lv,STYLE_FILTER:fv,STYLE_FONT_VARIATION:dv}=Te),hi={[av]:!0,[sv]:!0,[uv]:!0,[cv]:!0,[lv]:!0,[fv]:!0,[dv]:!0}});var pe={};Oe(pe,{IX2_ACTION_LIST_PLAYBACK_CHANGED:()=>Rv,IX2_ANIMATION_FRAME_CHANGED:()=>bv,IX2_CLEAR_REQUESTED:()=>_v,IX2_ELEMENT_STATE_CHANGED:()=>wv,IX2_EVENT_LISTENER_ADDED:()=>Iv,IX2_EVENT_STATE_CHANGED:()=>Tv,IX2_INSTANCE_ADDED:()=>Sv,IX2_INSTANCE_REMOVED:()=>xv,IX2_INSTANCE_STARTED:()=>Ov,IX2_MEDIA_QUERIES_DEFINED:()=>Pv,IX2_PARAMETER_CHANGED:()=>Av,IX2_PLAYBACK_REQUESTED:()=>vv,IX2_PREVIEW_REQUESTED:()=>yv,IX2_RAW_DATA_IMPORTED:()=>pv,IX2_SESSION_INITIALIZED:()=>gv,IX2_SESSION_STARTED:()=>hv,IX2_SESSION_STOPPED:()=>Ev,IX2_STOP_REQUESTED:()=>mv,IX2_TEST_FRAME_RENDERED:()=>Lv,IX2_VIEWPORT_WIDTH_CHANGED:()=>Cv});var pv,gv,hv,Ev,yv,vv,mv,_v,Iv,Tv,bv,Av,Sv,Ov,xv,wv,Rv,Cv,Pv,Lv,us=se(()=>{"use strict";pv="IX2_RAW_DATA_IMPORTED",gv="IX2_SESSION_INITIALIZED",hv="IX2_SESSION_STARTED",Ev="IX2_SESSION_STOPPED",yv="IX2_PREVIEW_REQUESTED",vv="IX2_PLAYBACK_REQUESTED",mv="IX2_STOP_REQUESTED",_v="IX2_CLEAR_REQUESTED",Iv="IX2_EVENT_LISTENER_ADDED",Tv="IX2_EVENT_STATE_CHANGED",bv="IX2_ANIMATION_FRAME_CHANGED",Av="IX2_PARAMETER_CHANGED",Sv="IX2_INSTANCE_ADDED",Ov="IX2_INSTANCE_STARTED",xv="IX2_INSTANCE_REMOVED",wv="IX2_ELEMENT_STATE_CHANGED",Rv="IX2_ACTION_LIST_PLAYBACK_CHANGED",Cv="IX2_VIEWPORT_WIDTH_CHANGED",Pv="IX2_MEDIA_QUERIES_DEFINED",Lv="IX2_TEST_FRAME_RENDERED"});var me={};Oe(me,{ABSTRACT_NODE:()=>Cm,AUTO:()=>mm,BACKGROUND:()=>pm,BACKGROUND_COLOR:()=>dm,BAR_DELIMITER:()=>Tm,BORDER_COLOR:()=>gm,BOUNDARY_SELECTOR:()=>qv,CHILDREN:()=>bm,COLON_DELIMITER:()=>Im,COLOR:()=>hm,COMMA_DELIMITER:()=>_m,CONFIG_UNIT:()=>Wv,CONFIG_VALUE:()=>Uv,CONFIG_X_UNIT:()=>Bv,CONFIG_X_VALUE:()=>Gv,CONFIG_Y_UNIT:()=>Hv,CONFIG_Y_VALUE:()=>Xv,CONFIG_Z_UNIT:()=>kv,CONFIG_Z_VALUE:()=>Vv,DISPLAY:()=>Em,FILTER:()=>um,FLEX:()=>ym,FONT_VARIATION_SETTINGS:()=>cm,HEIGHT:()=>fm,HTML_ELEMENT:()=>wm,IMMEDIATE_CHILDREN:()=>Am,IX2_ID_DELIMITER:()=>Nv,OPACITY:()=>sm,PARENT:()=>Om,PLAIN_OBJECT:()=>Rm,PRESERVE_3D:()=>xm,RENDER_GENERAL:()=>Lm,RENDER_PLUGIN:()=>Dm,RENDER_STYLE:()=>Nm,RENDER_TRANSFORM:()=>Pm,ROTATE_X:()=>tm,ROTATE_Y:()=>nm,ROTATE_Z:()=>rm,SCALE_3D:()=>em,SCALE_X:()=>$v,SCALE_Y:()=>Zv,SCALE_Z:()=>Jv,SIBLINGS:()=>Sm,SKEW:()=>im,SKEW_X:()=>om,SKEW_Y:()=>am,TRANSFORM:()=>zv,TRANSLATE_3D:()=>Qv,TRANSLATE_X:()=>Kv,TRANSLATE_Y:()=>jv,TRANSLATE_Z:()=>Yv,WF_PAGE:()=>Dv,WIDTH:()=>lm,WILL_CHANGE:()=>vm,W_MOD_IX:()=>Fv,W_MOD_JS:()=>Mv});var Nv,Dv,Mv,Fv,qv,Gv,Xv,Vv,Uv,Bv,Hv,kv,Wv,zv,Kv,jv,Yv,Qv,$v,Zv,Jv,em,tm,nm,rm,im,om,am,sm,um,cm,lm,fm,dm,pm,gm,hm,Em,ym,vm,mm,_m,Im,Tm,bm,Am,Sm,Om,xm,wm,Rm,Cm,Pm,Lm,Nm,Dm,cs=se(()=>{"use strict";Nv="|",Dv="data-wf-page",Mv="w-mod-js",Fv="w-mod-ix",qv=".w-dyn-item",Gv="xValue",Xv="yValue",Vv="zValue",Uv="value",Bv="xUnit",Hv="yUnit",kv="zUnit",Wv="unit",zv="transform",Kv="translateX",jv="translateY",Yv="translateZ",Qv="translate3d",$v="scaleX",Zv="scaleY",Jv="scaleZ",em="scale3d",tm="rotateX",nm="rotateY",rm="rotateZ",im="skew",om="skewX",am="skewY",sm="opacity",um="filter",cm="font-variation-settings",lm="width",fm="height",dm="backgroundColor",pm="background",gm="borderColor",hm="color",Em="display",ym="flex",vm="willChange",mm="AUTO",_m=",",Im=":",Tm="|",bm="CHILDREN",Am="IMMEDIATE_CHILDREN",Sm="SIBLINGS",Om="PARENT",xm="preserve-3d",wm="HTML_ELEMENT",Rm="PLAIN_OBJECT",Cm="ABSTRACT_NODE",Pm="RENDER_TRANSFORM",Lm="RENDER_GENERAL",Nm="RENDER_STYLE",Dm="RENDER_PLUGIN"});var ls={};Oe(ls,{ActionAppliesTo:()=>iv,ActionTypeConsts:()=>Te,EventAppliesTo:()=>pi,EventBasedOn:()=>ke,EventContinuousMouseAxes:()=>tv,EventLimitAffectedElements:()=>nv,EventTypeConsts:()=>Fe,IX2EngineActionTypes:()=>pe,IX2EngineConstants:()=>me,InteractionTypeConsts:()=>ov,QuickEffectDirectionConsts:()=>rv,QuickEffectIds:()=>Mn,ReducedMotionTypes:()=>hi});var xe=se(()=>{"use strict";gi();Fn();as();ss();us();cs();Fn();gi()});var Mm,fs,ds=se(()=>{"use strict";xe();({IX2_RAW_DATA_IMPORTED:Mm}=pe),fs=(e=Object.freeze({}),t)=>{switch(t.type){case Mm:return t.payload.ixData||Object.freeze({});default:return e}}});var Ot=f(le=>{"use strict";Object.defineProperty(le,"__esModule",{value:!0});var Fm=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};le.clone=Gn;le.addLast=hs;le.addFirst=Es;le.removeLast=ys;le.removeFirst=vs;le.insert=ms;le.removeAt=_s;le.replaceAt=Is;le.getIn=Xn;le.set=Vn;le.setIn=Un;le.update=bs;le.updateIn=As;le.merge=Ss;le.mergeDeep=Os;le.mergeIn=xs;le.omit=ws;le.addDefaults=Rs;var ps="INVALID_ARGS";function gs(e){throw new Error(e)}function Ei(e){var t=Object.keys(e);return Object.getOwnPropertySymbols?t.concat(Object.getOwnPropertySymbols(e)):t}var qm={}.hasOwnProperty;function Gn(e){if(Array.isArray(e))return e.slice();for(var t=Ei(e),n={},r=0;r3?o-3:0),s=3;s"u"?"undefined":Fm(e);return e!=null&&(t==="object"||t==="function")}function hs(e,t){return Array.isArray(t)?e.concat(t):e.concat([t])}function Es(e,t){return Array.isArray(t)?t.concat(e):[t].concat(e)}function ys(e){return e.length?e.slice(0,e.length-1):e}function vs(e){return e.length?e.slice(1):e}function ms(e,t,n){return e.slice(0,t).concat(Array.isArray(n)?n:[n]).concat(e.slice(t))}function _s(e,t){return t>=e.length||t<0?e:e.slice(0,t).concat(e.slice(t+1))}function Is(e,t,n){if(e[t]===n)return e;for(var r=e.length,i=Array(r),o=0;o6?a-6:0),u=6;u6?a-6:0),u=6;u7?l-7:0),g=7;g=0||(o[u]=e[u])}return o}function Rs(e,t,n,r,i,o){for(var a=arguments.length,s=Array(a>6?a-6:0),u=6;u{"use strict";xe();Ps=ee(Ot()),{IX2_PREVIEW_REQUESTED:Xm,IX2_PLAYBACK_REQUESTED:Vm,IX2_STOP_REQUESTED:Um,IX2_CLEAR_REQUESTED:Bm}=pe,Hm={preview:{},playback:{},stop:{},clear:{}},Cs=Object.create(null,{[Xm]:{value:"preview"},[Vm]:{value:"playback"},[Um]:{value:"stop"},[Bm]:{value:"clear"}}),Ls=(e=Hm,t)=>{if(t.type in Cs){let n=[Cs[t.type]];return(0,Ps.setIn)(e,[n],{...t.payload})}return e}});var be,km,Wm,zm,Km,jm,Ym,Qm,$m,Zm,Jm,Ds,e_,Ms,Fs=se(()=>{"use strict";xe();be=ee(Ot()),{IX2_SESSION_INITIALIZED:km,IX2_SESSION_STARTED:Wm,IX2_TEST_FRAME_RENDERED:zm,IX2_SESSION_STOPPED:Km,IX2_EVENT_LISTENER_ADDED:jm,IX2_EVENT_STATE_CHANGED:Ym,IX2_ANIMATION_FRAME_CHANGED:Qm,IX2_ACTION_LIST_PLAYBACK_CHANGED:$m,IX2_VIEWPORT_WIDTH_CHANGED:Zm,IX2_MEDIA_QUERIES_DEFINED:Jm}=pe,Ds={active:!1,tick:0,eventListeners:[],eventState:{},playbackState:{},viewportWidth:0,mediaQueryKey:null,hasBoundaryNodes:!1,hasDefinedMediaQueries:!1,reducedMotion:!1},e_=20,Ms=(e=Ds,t)=>{switch(t.type){case km:{let{hasBoundaryNodes:n,reducedMotion:r}=t.payload;return(0,be.merge)(e,{hasBoundaryNodes:n,reducedMotion:r})}case Wm:return(0,be.set)(e,"active",!0);case zm:{let{payload:{step:n=e_}}=t;return(0,be.set)(e,"tick",e.tick+n)}case Km:return Ds;case Qm:{let{payload:{now:n}}=t;return(0,be.set)(e,"tick",n)}case jm:{let n=(0,be.addLast)(e.eventListeners,t.payload);return(0,be.set)(e,"eventListeners",n)}case Ym:{let{stateKey:n,newState:r}=t.payload;return(0,be.setIn)(e,["eventState",n],r)}case $m:{let{actionListId:n,isPlaying:r}=t.payload;return(0,be.setIn)(e,["playbackState",n],r)}case Zm:{let{width:n,mediaQueries:r}=t.payload,i=r.length,o=null;for(let a=0;a=u&&n<=l){o=s;break}}return(0,be.merge)(e,{viewportWidth:n,mediaQueryKey:o})}case Jm:return(0,be.set)(e,"hasDefinedMediaQueries",!0);default:return e}}});var Gs=f((r2,qs)=>{function t_(){this.__data__=[],this.size=0}qs.exports=t_});var Bn=f((i2,Xs)=>{function n_(e,t){return e===t||e!==e&&t!==t}Xs.exports=n_});var tn=f((o2,Vs)=>{var r_=Bn();function i_(e,t){for(var n=e.length;n--;)if(r_(e[n][0],t))return n;return-1}Vs.exports=i_});var Bs=f((a2,Us)=>{var o_=tn(),a_=Array.prototype,s_=a_.splice;function u_(e){var t=this.__data__,n=o_(t,e);if(n<0)return!1;var r=t.length-1;return n==r?t.pop():s_.call(t,n,1),--this.size,!0}Us.exports=u_});var ks=f((s2,Hs)=>{var c_=tn();function l_(e){var t=this.__data__,n=c_(t,e);return n<0?void 0:t[n][1]}Hs.exports=l_});var zs=f((u2,Ws)=>{var f_=tn();function d_(e){return f_(this.__data__,e)>-1}Ws.exports=d_});var js=f((c2,Ks)=>{var p_=tn();function g_(e,t){var n=this.__data__,r=p_(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this}Ks.exports=g_});var nn=f((l2,Ys)=>{var h_=Gs(),E_=Bs(),y_=ks(),v_=zs(),m_=js();function xt(e){var t=-1,n=e==null?0:e.length;for(this.clear();++t{var __=nn();function I_(){this.__data__=new __,this.size=0}Qs.exports=I_});var Js=f((d2,Zs)=>{function T_(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}Zs.exports=T_});var tu=f((p2,eu)=>{function b_(e){return this.__data__.get(e)}eu.exports=b_});var ru=f((g2,nu)=>{function A_(e){return this.__data__.has(e)}nu.exports=A_});var We=f((h2,iu)=>{function S_(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}iu.exports=S_});var yi=f((E2,ou)=>{var O_=rt(),x_=We(),w_="[object AsyncFunction]",R_="[object Function]",C_="[object GeneratorFunction]",P_="[object Proxy]";function L_(e){if(!x_(e))return!1;var t=O_(e);return t==R_||t==C_||t==w_||t==P_}ou.exports=L_});var su=f((y2,au)=>{var N_=Me(),D_=N_["__core-js_shared__"];au.exports=D_});var lu=f((v2,cu)=>{var vi=su(),uu=function(){var e=/[^.]+$/.exec(vi&&vi.keys&&vi.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();function M_(e){return!!uu&&uu in e}cu.exports=M_});var mi=f((m2,fu)=>{var F_=Function.prototype,q_=F_.toString;function G_(e){if(e!=null){try{return q_.call(e)}catch{}try{return e+""}catch{}}return""}fu.exports=G_});var pu=f((_2,du)=>{var X_=yi(),V_=lu(),U_=We(),B_=mi(),H_=/[\\^$.*+?()[\]{}|]/g,k_=/^\[object .+?Constructor\]$/,W_=Function.prototype,z_=Object.prototype,K_=W_.toString,j_=z_.hasOwnProperty,Y_=RegExp("^"+K_.call(j_).replace(H_,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function Q_(e){if(!U_(e)||V_(e))return!1;var t=X_(e)?Y_:k_;return t.test(B_(e))}du.exports=Q_});var hu=f((I2,gu)=>{function $_(e,t){return e?.[t]}gu.exports=$_});var it=f((T2,Eu)=>{var Z_=pu(),J_=hu();function eI(e,t){var n=J_(e,t);return Z_(n)?n:void 0}Eu.exports=eI});var Hn=f((b2,yu)=>{var tI=it(),nI=Me(),rI=tI(nI,"Map");yu.exports=rI});var rn=f((A2,vu)=>{var iI=it(),oI=iI(Object,"create");vu.exports=oI});var Iu=f((S2,_u)=>{var mu=rn();function aI(){this.__data__=mu?mu(null):{},this.size=0}_u.exports=aI});var bu=f((O2,Tu)=>{function sI(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}Tu.exports=sI});var Su=f((x2,Au)=>{var uI=rn(),cI="__lodash_hash_undefined__",lI=Object.prototype,fI=lI.hasOwnProperty;function dI(e){var t=this.__data__;if(uI){var n=t[e];return n===cI?void 0:n}return fI.call(t,e)?t[e]:void 0}Au.exports=dI});var xu=f((w2,Ou)=>{var pI=rn(),gI=Object.prototype,hI=gI.hasOwnProperty;function EI(e){var t=this.__data__;return pI?t[e]!==void 0:hI.call(t,e)}Ou.exports=EI});var Ru=f((R2,wu)=>{var yI=rn(),vI="__lodash_hash_undefined__";function mI(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=yI&&t===void 0?vI:t,this}wu.exports=mI});var Pu=f((C2,Cu)=>{var _I=Iu(),II=bu(),TI=Su(),bI=xu(),AI=Ru();function wt(e){var t=-1,n=e==null?0:e.length;for(this.clear();++t{var Lu=Pu(),SI=nn(),OI=Hn();function xI(){this.size=0,this.__data__={hash:new Lu,map:new(OI||SI),string:new Lu}}Nu.exports=xI});var Fu=f((L2,Mu)=>{function wI(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}Mu.exports=wI});var on=f((N2,qu)=>{var RI=Fu();function CI(e,t){var n=e.__data__;return RI(t)?n[typeof t=="string"?"string":"hash"]:n.map}qu.exports=CI});var Xu=f((D2,Gu)=>{var PI=on();function LI(e){var t=PI(this,e).delete(e);return this.size-=t?1:0,t}Gu.exports=LI});var Uu=f((M2,Vu)=>{var NI=on();function DI(e){return NI(this,e).get(e)}Vu.exports=DI});var Hu=f((F2,Bu)=>{var MI=on();function FI(e){return MI(this,e).has(e)}Bu.exports=FI});var Wu=f((q2,ku)=>{var qI=on();function GI(e,t){var n=qI(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this}ku.exports=GI});var kn=f((G2,zu)=>{var XI=Du(),VI=Xu(),UI=Uu(),BI=Hu(),HI=Wu();function Rt(e){var t=-1,n=e==null?0:e.length;for(this.clear();++t{var kI=nn(),WI=Hn(),zI=kn(),KI=200;function jI(e,t){var n=this.__data__;if(n instanceof kI){var r=n.__data__;if(!WI||r.length{var YI=nn(),QI=$s(),$I=Js(),ZI=tu(),JI=ru(),eT=ju();function Ct(e){var t=this.__data__=new YI(e);this.size=t.size}Ct.prototype.clear=QI;Ct.prototype.delete=$I;Ct.prototype.get=ZI;Ct.prototype.has=JI;Ct.prototype.set=eT;Yu.exports=Ct});var $u=f((U2,Qu)=>{var tT="__lodash_hash_undefined__";function nT(e){return this.__data__.set(e,tT),this}Qu.exports=nT});var Ju=f((B2,Zu)=>{function rT(e){return this.__data__.has(e)}Zu.exports=rT});var tc=f((H2,ec)=>{var iT=kn(),oT=$u(),aT=Ju();function Wn(e){var t=-1,n=e==null?0:e.length;for(this.__data__=new iT;++t{function sT(e,t){for(var n=-1,r=e==null?0:e.length;++n{function uT(e,t){return e.has(t)}ic.exports=uT});var Ii=f((z2,ac)=>{var cT=tc(),lT=rc(),fT=oc(),dT=1,pT=2;function gT(e,t,n,r,i,o){var a=n&dT,s=e.length,u=t.length;if(s!=u&&!(a&&u>s))return!1;var l=o.get(e),y=o.get(t);if(l&&y)return l==t&&y==e;var g=-1,d=!0,h=n&pT?new cT:void 0;for(o.set(e,t),o.set(t,e);++g{var hT=Me(),ET=hT.Uint8Array;sc.exports=ET});var lc=f((j2,cc)=>{function yT(e){var t=-1,n=Array(e.size);return e.forEach(function(r,i){n[++t]=[i,r]}),n}cc.exports=yT});var dc=f((Y2,fc)=>{function vT(e){var t=-1,n=Array(e.size);return e.forEach(function(r){n[++t]=r}),n}fc.exports=vT});var yc=f((Q2,Ec)=>{var pc=bt(),gc=uc(),mT=Bn(),_T=Ii(),IT=lc(),TT=dc(),bT=1,AT=2,ST="[object Boolean]",OT="[object Date]",xT="[object Error]",wT="[object Map]",RT="[object Number]",CT="[object RegExp]",PT="[object Set]",LT="[object String]",NT="[object Symbol]",DT="[object ArrayBuffer]",MT="[object DataView]",hc=pc?pc.prototype:void 0,Ti=hc?hc.valueOf:void 0;function FT(e,t,n,r,i,o,a){switch(n){case MT:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case DT:return!(e.byteLength!=t.byteLength||!o(new gc(e),new gc(t)));case ST:case OT:case RT:return mT(+e,+t);case xT:return e.name==t.name&&e.message==t.message;case CT:case LT:return e==t+"";case wT:var s=IT;case PT:var u=r&bT;if(s||(s=TT),e.size!=t.size&&!u)return!1;var l=a.get(e);if(l)return l==t;r|=AT,a.set(e,t);var y=_T(s(e),s(t),r,i,o,a);return a.delete(e),y;case NT:if(Ti)return Ti.call(e)==Ti.call(t)}return!1}Ec.exports=FT});var zn=f(($2,vc)=>{function qT(e,t){for(var n=-1,r=t.length,i=e.length;++n{var GT=Array.isArray;mc.exports=GT});var bi=f((J2,_c)=>{var XT=zn(),VT=Ee();function UT(e,t,n){var r=t(e);return VT(e)?r:XT(r,n(e))}_c.exports=UT});var Tc=f((eq,Ic)=>{function BT(e,t){for(var n=-1,r=e==null?0:e.length,i=0,o=[];++n{function HT(){return[]}bc.exports=HT});var Si=f((nq,Sc)=>{var kT=Tc(),WT=Ai(),zT=Object.prototype,KT=zT.propertyIsEnumerable,Ac=Object.getOwnPropertySymbols,jT=Ac?function(e){return e==null?[]:(e=Object(e),kT(Ac(e),function(t){return KT.call(e,t)}))}:WT;Sc.exports=jT});var xc=f((rq,Oc)=>{function YT(e,t){for(var n=-1,r=Array(e);++n{var QT=rt(),$T=Qe(),ZT="[object Arguments]";function JT(e){return $T(e)&&QT(e)==ZT}wc.exports=JT});var an=f((oq,Lc)=>{var Cc=Rc(),eb=Qe(),Pc=Object.prototype,tb=Pc.hasOwnProperty,nb=Pc.propertyIsEnumerable,rb=Cc(function(){return arguments}())?Cc:function(e){return eb(e)&&tb.call(e,"callee")&&!nb.call(e,"callee")};Lc.exports=rb});var Dc=f((aq,Nc)=>{function ib(){return!1}Nc.exports=ib});var Kn=f((sn,Pt)=>{var ob=Me(),ab=Dc(),qc=typeof sn=="object"&&sn&&!sn.nodeType&&sn,Mc=qc&&typeof Pt=="object"&&Pt&&!Pt.nodeType&&Pt,sb=Mc&&Mc.exports===qc,Fc=sb?ob.Buffer:void 0,ub=Fc?Fc.isBuffer:void 0,cb=ub||ab;Pt.exports=cb});var jn=f((sq,Gc)=>{var lb=9007199254740991,fb=/^(?:0|[1-9]\d*)$/;function db(e,t){var n=typeof e;return t=t??lb,!!t&&(n=="number"||n!="symbol"&&fb.test(e))&&e>-1&&e%1==0&&e{var pb=9007199254740991;function gb(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=pb}Xc.exports=gb});var Uc=f((cq,Vc)=>{var hb=rt(),Eb=Yn(),yb=Qe(),vb="[object Arguments]",mb="[object Array]",_b="[object Boolean]",Ib="[object Date]",Tb="[object Error]",bb="[object Function]",Ab="[object Map]",Sb="[object Number]",Ob="[object Object]",xb="[object RegExp]",wb="[object Set]",Rb="[object String]",Cb="[object WeakMap]",Pb="[object ArrayBuffer]",Lb="[object DataView]",Nb="[object Float32Array]",Db="[object Float64Array]",Mb="[object Int8Array]",Fb="[object Int16Array]",qb="[object Int32Array]",Gb="[object Uint8Array]",Xb="[object Uint8ClampedArray]",Vb="[object Uint16Array]",Ub="[object Uint32Array]",ie={};ie[Nb]=ie[Db]=ie[Mb]=ie[Fb]=ie[qb]=ie[Gb]=ie[Xb]=ie[Vb]=ie[Ub]=!0;ie[vb]=ie[mb]=ie[Pb]=ie[_b]=ie[Lb]=ie[Ib]=ie[Tb]=ie[bb]=ie[Ab]=ie[Sb]=ie[Ob]=ie[xb]=ie[wb]=ie[Rb]=ie[Cb]=!1;function Bb(e){return yb(e)&&Eb(e.length)&&!!ie[hb(e)]}Vc.exports=Bb});var Hc=f((lq,Bc)=>{function Hb(e){return function(t){return e(t)}}Bc.exports=Hb});var Wc=f((un,Lt)=>{var kb=$r(),kc=typeof un=="object"&&un&&!un.nodeType&&un,cn=kc&&typeof Lt=="object"&&Lt&&!Lt.nodeType&&Lt,Wb=cn&&cn.exports===kc,Oi=Wb&&kb.process,zb=function(){try{var e=cn&&cn.require&&cn.require("util").types;return e||Oi&&Oi.binding&&Oi.binding("util")}catch{}}();Lt.exports=zb});var Qn=f((fq,jc)=>{var Kb=Uc(),jb=Hc(),zc=Wc(),Kc=zc&&zc.isTypedArray,Yb=Kc?jb(Kc):Kb;jc.exports=Yb});var xi=f((dq,Yc)=>{var Qb=xc(),$b=an(),Zb=Ee(),Jb=Kn(),eA=jn(),tA=Qn(),nA=Object.prototype,rA=nA.hasOwnProperty;function iA(e,t){var n=Zb(e),r=!n&&$b(e),i=!n&&!r&&Jb(e),o=!n&&!r&&!i&&tA(e),a=n||r||i||o,s=a?Qb(e.length,String):[],u=s.length;for(var l in e)(t||rA.call(e,l))&&!(a&&(l=="length"||i&&(l=="offset"||l=="parent")||o&&(l=="buffer"||l=="byteLength"||l=="byteOffset")||eA(l,u)))&&s.push(l);return s}Yc.exports=iA});var $n=f((pq,Qc)=>{var oA=Object.prototype;function aA(e){var t=e&&e.constructor,n=typeof t=="function"&&t.prototype||oA;return e===n}Qc.exports=aA});var Zc=f((gq,$c)=>{var sA=Zr(),uA=sA(Object.keys,Object);$c.exports=uA});var Zn=f((hq,Jc)=>{var cA=$n(),lA=Zc(),fA=Object.prototype,dA=fA.hasOwnProperty;function pA(e){if(!cA(e))return lA(e);var t=[];for(var n in Object(e))dA.call(e,n)&&n!="constructor"&&t.push(n);return t}Jc.exports=pA});var pt=f((Eq,el)=>{var gA=yi(),hA=Yn();function EA(e){return e!=null&&hA(e.length)&&!gA(e)}el.exports=EA});var ln=f((yq,tl)=>{var yA=xi(),vA=Zn(),mA=pt();function _A(e){return mA(e)?yA(e):vA(e)}tl.exports=_A});var rl=f((vq,nl)=>{var IA=bi(),TA=Si(),bA=ln();function AA(e){return IA(e,bA,TA)}nl.exports=AA});var al=f((mq,ol)=>{var il=rl(),SA=1,OA=Object.prototype,xA=OA.hasOwnProperty;function wA(e,t,n,r,i,o){var a=n&SA,s=il(e),u=s.length,l=il(t),y=l.length;if(u!=y&&!a)return!1;for(var g=u;g--;){var d=s[g];if(!(a?d in t:xA.call(t,d)))return!1}var h=o.get(e),T=o.get(t);if(h&&T)return h==t&&T==e;var _=!0;o.set(e,t),o.set(t,e);for(var S=a;++g{var RA=it(),CA=Me(),PA=RA(CA,"DataView");sl.exports=PA});var ll=f((Iq,cl)=>{var LA=it(),NA=Me(),DA=LA(NA,"Promise");cl.exports=DA});var dl=f((Tq,fl)=>{var MA=it(),FA=Me(),qA=MA(FA,"Set");fl.exports=qA});var wi=f((bq,pl)=>{var GA=it(),XA=Me(),VA=GA(XA,"WeakMap");pl.exports=VA});var Jn=f((Aq,_l)=>{var Ri=ul(),Ci=Hn(),Pi=ll(),Li=dl(),Ni=wi(),ml=rt(),Nt=mi(),gl="[object Map]",UA="[object Object]",hl="[object Promise]",El="[object Set]",yl="[object WeakMap]",vl="[object DataView]",BA=Nt(Ri),HA=Nt(Ci),kA=Nt(Pi),WA=Nt(Li),zA=Nt(Ni),gt=ml;(Ri&>(new Ri(new ArrayBuffer(1)))!=vl||Ci&>(new Ci)!=gl||Pi&>(Pi.resolve())!=hl||Li&>(new Li)!=El||Ni&>(new Ni)!=yl)&&(gt=function(e){var t=ml(e),n=t==UA?e.constructor:void 0,r=n?Nt(n):"";if(r)switch(r){case BA:return vl;case HA:return gl;case kA:return hl;case WA:return El;case zA:return yl}return t});_l.exports=gt});var wl=f((Sq,xl)=>{var Di=_i(),KA=Ii(),jA=yc(),YA=al(),Il=Jn(),Tl=Ee(),bl=Kn(),QA=Qn(),$A=1,Al="[object Arguments]",Sl="[object Array]",er="[object Object]",ZA=Object.prototype,Ol=ZA.hasOwnProperty;function JA(e,t,n,r,i,o){var a=Tl(e),s=Tl(t),u=a?Sl:Il(e),l=s?Sl:Il(t);u=u==Al?er:u,l=l==Al?er:l;var y=u==er,g=l==er,d=u==l;if(d&&bl(e)){if(!bl(t))return!1;a=!0,y=!1}if(d&&!y)return o||(o=new Di),a||QA(e)?KA(e,t,n,r,i,o):jA(e,t,u,n,r,i,o);if(!(n&$A)){var h=y&&Ol.call(e,"__wrapped__"),T=g&&Ol.call(t,"__wrapped__");if(h||T){var _=h?e.value():e,S=T?t.value():t;return o||(o=new Di),i(_,S,n,r,o)}}return d?(o||(o=new Di),YA(e,t,n,r,i,o)):!1}xl.exports=JA});var Mi=f((Oq,Pl)=>{var e0=wl(),Rl=Qe();function Cl(e,t,n,r,i){return e===t?!0:e==null||t==null||!Rl(e)&&!Rl(t)?e!==e&&t!==t:e0(e,t,n,r,Cl,i)}Pl.exports=Cl});var Nl=f((xq,Ll)=>{var t0=_i(),n0=Mi(),r0=1,i0=2;function o0(e,t,n,r){var i=n.length,o=i,a=!r;if(e==null)return!o;for(e=Object(e);i--;){var s=n[i];if(a&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++i{var a0=We();function s0(e){return e===e&&!a0(e)}Dl.exports=s0});var Fl=f((Rq,Ml)=>{var u0=Fi(),c0=ln();function l0(e){for(var t=c0(e),n=t.length;n--;){var r=t[n],i=e[r];t[n]=[r,i,u0(i)]}return t}Ml.exports=l0});var qi=f((Cq,ql)=>{function f0(e,t){return function(n){return n==null?!1:n[e]===t&&(t!==void 0||e in Object(n))}}ql.exports=f0});var Xl=f((Pq,Gl)=>{var d0=Nl(),p0=Fl(),g0=qi();function h0(e){var t=p0(e);return t.length==1&&t[0][2]?g0(t[0][0],t[0][1]):function(n){return n===e||d0(n,e,t)}}Gl.exports=h0});var fn=f((Lq,Vl)=>{var E0=rt(),y0=Qe(),v0="[object Symbol]";function m0(e){return typeof e=="symbol"||y0(e)&&E0(e)==v0}Vl.exports=m0});var tr=f((Nq,Ul)=>{var _0=Ee(),I0=fn(),T0=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,b0=/^\w*$/;function A0(e,t){if(_0(e))return!1;var n=typeof e;return n=="number"||n=="symbol"||n=="boolean"||e==null||I0(e)?!0:b0.test(e)||!T0.test(e)||t!=null&&e in Object(t)}Ul.exports=A0});var kl=f((Dq,Hl)=>{var Bl=kn(),S0="Expected a function";function Gi(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError(S0);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(Gi.Cache||Bl),n}Gi.Cache=Bl;Hl.exports=Gi});var zl=f((Mq,Wl)=>{var O0=kl(),x0=500;function w0(e){var t=O0(e,function(r){return n.size===x0&&n.clear(),r}),n=t.cache;return t}Wl.exports=w0});var jl=f((Fq,Kl)=>{var R0=zl(),C0=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,P0=/\\(\\)?/g,L0=R0(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(C0,function(n,r,i,o){t.push(i?o.replace(P0,"$1"):r||n)}),t});Kl.exports=L0});var Xi=f((qq,Yl)=>{function N0(e,t){for(var n=-1,r=e==null?0:e.length,i=Array(r);++n{var Ql=bt(),D0=Xi(),M0=Ee(),F0=fn(),q0=1/0,$l=Ql?Ql.prototype:void 0,Zl=$l?$l.toString:void 0;function Jl(e){if(typeof e=="string")return e;if(M0(e))return D0(e,Jl)+"";if(F0(e))return Zl?Zl.call(e):"";var t=e+"";return t=="0"&&1/e==-q0?"-0":t}ef.exports=Jl});var rf=f((Xq,nf)=>{var G0=tf();function X0(e){return e==null?"":G0(e)}nf.exports=X0});var dn=f((Vq,of)=>{var V0=Ee(),U0=tr(),B0=jl(),H0=rf();function k0(e,t){return V0(e)?e:U0(e,t)?[e]:B0(H0(e))}of.exports=k0});var Dt=f((Uq,af)=>{var W0=fn(),z0=1/0;function K0(e){if(typeof e=="string"||W0(e))return e;var t=e+"";return t=="0"&&1/e==-z0?"-0":t}af.exports=K0});var nr=f((Bq,sf)=>{var j0=dn(),Y0=Dt();function Q0(e,t){t=j0(t,e);for(var n=0,r=t.length;e!=null&&n{var $0=nr();function Z0(e,t,n){var r=e==null?void 0:$0(e,t);return r===void 0?n:r}uf.exports=Z0});var lf=f((kq,cf)=>{function J0(e,t){return e!=null&&t in Object(e)}cf.exports=J0});var df=f((Wq,ff)=>{var eS=dn(),tS=an(),nS=Ee(),rS=jn(),iS=Yn(),oS=Dt();function aS(e,t,n){t=eS(t,e);for(var r=-1,i=t.length,o=!1;++r{var sS=lf(),uS=df();function cS(e,t){return e!=null&&uS(e,t,sS)}pf.exports=cS});var Ef=f((Kq,hf)=>{var lS=Mi(),fS=rr(),dS=gf(),pS=tr(),gS=Fi(),hS=qi(),ES=Dt(),yS=1,vS=2;function mS(e,t){return pS(e)&&gS(t)?hS(ES(e),t):function(n){var r=fS(n,e);return r===void 0&&r===t?dS(n,e):lS(t,r,yS|vS)}}hf.exports=mS});var ir=f((jq,yf)=>{function _S(e){return e}yf.exports=_S});var Vi=f((Yq,vf)=>{function IS(e){return function(t){return t?.[e]}}vf.exports=IS});var _f=f((Qq,mf)=>{var TS=nr();function bS(e){return function(t){return TS(t,e)}}mf.exports=bS});var Tf=f(($q,If)=>{var AS=Vi(),SS=_f(),OS=tr(),xS=Dt();function wS(e){return OS(e)?AS(xS(e)):SS(e)}If.exports=wS});var ot=f((Zq,bf)=>{var RS=Xl(),CS=Ef(),PS=ir(),LS=Ee(),NS=Tf();function DS(e){return typeof e=="function"?e:e==null?PS:typeof e=="object"?LS(e)?CS(e[0],e[1]):RS(e):NS(e)}bf.exports=DS});var Ui=f((Jq,Af)=>{var MS=ot(),FS=pt(),qS=ln();function GS(e){return function(t,n,r){var i=Object(t);if(!FS(t)){var o=MS(n,3);t=qS(t),n=function(s){return o(i[s],s,i)}}var a=e(t,n,r);return a>-1?i[o?t[a]:a]:void 0}}Af.exports=GS});var Bi=f((e1,Sf)=>{function XS(e,t,n,r){for(var i=e.length,o=n+(r?1:-1);r?o--:++o{var VS=/\s/;function US(e){for(var t=e.length;t--&&VS.test(e.charAt(t)););return t}Of.exports=US});var Rf=f((n1,wf)=>{var BS=xf(),HS=/^\s+/;function kS(e){return e&&e.slice(0,BS(e)+1).replace(HS,"")}wf.exports=kS});var or=f((r1,Lf)=>{var WS=Rf(),Cf=We(),zS=fn(),Pf=0/0,KS=/^[-+]0x[0-9a-f]+$/i,jS=/^0b[01]+$/i,YS=/^0o[0-7]+$/i,QS=parseInt;function $S(e){if(typeof e=="number")return e;if(zS(e))return Pf;if(Cf(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=Cf(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=WS(e);var n=jS.test(e);return n||YS.test(e)?QS(e.slice(2),n?2:8):KS.test(e)?Pf:+e}Lf.exports=$S});var Mf=f((i1,Df)=>{var ZS=or(),Nf=1/0,JS=17976931348623157e292;function eO(e){if(!e)return e===0?e:0;if(e=ZS(e),e===Nf||e===-Nf){var t=e<0?-1:1;return t*JS}return e===e?e:0}Df.exports=eO});var Hi=f((o1,Ff)=>{var tO=Mf();function nO(e){var t=tO(e),n=t%1;return t===t?n?t-n:t:0}Ff.exports=nO});var Gf=f((a1,qf)=>{var rO=Bi(),iO=ot(),oO=Hi(),aO=Math.max;function sO(e,t,n){var r=e==null?0:e.length;if(!r)return-1;var i=n==null?0:oO(n);return i<0&&(i=aO(r+i,0)),rO(e,iO(t,3),i)}qf.exports=sO});var ki=f((s1,Xf)=>{var uO=Ui(),cO=Gf(),lO=uO(cO);Xf.exports=lO});var Bf={};Oe(Bf,{ELEMENT_MATCHES:()=>fO,FLEX_PREFIXED:()=>Wi,IS_BROWSER_ENV:()=>qe,TRANSFORM_PREFIXED:()=>at,TRANSFORM_STYLE_PREFIXED:()=>sr,withBrowser:()=>ar});var Uf,qe,ar,fO,Wi,at,Vf,sr,ur=se(()=>{"use strict";Uf=ee(ki()),qe=typeof window<"u",ar=(e,t)=>qe?e():t,fO=ar(()=>(0,Uf.default)(["matches","matchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","webkitMatchesSelector"],e=>e in Element.prototype)),Wi=ar(()=>{let e=document.createElement("i"),t=["flex","-webkit-flex","-ms-flexbox","-moz-box","-webkit-box"],n="";try{let{length:r}=t;for(let i=0;i{let e=document.createElement("i");if(e.style.transform==null){let t=["Webkit","Moz","ms"],n="Transform",{length:r}=t;for(let i=0;i{var dO=4,pO=.001,gO=1e-7,hO=10,pn=11,cr=1/(pn-1),EO=typeof Float32Array=="function";function Hf(e,t){return 1-3*t+3*e}function kf(e,t){return 3*t-6*e}function Wf(e){return 3*e}function lr(e,t,n){return((Hf(t,n)*e+kf(t,n))*e+Wf(t))*e}function zf(e,t,n){return 3*Hf(t,n)*e*e+2*kf(t,n)*e+Wf(t)}function yO(e,t,n,r,i){var o,a,s=0;do a=t+(n-t)/2,o=lr(a,r,i)-e,o>0?n=a:t=a;while(Math.abs(o)>gO&&++s=pO?vO(u,h,t,r):T===0?h:yO(u,l,l+cr,t,r)}return function(l){return t===n&&r===i?l:l===0?0:l===1?1:lr(s(l),n,i)}}});var hn={};Oe(hn,{bounce:()=>ex,bouncePast:()=>tx,ease:()=>mO,easeIn:()=>_O,easeInOut:()=>TO,easeOut:()=>IO,inBack:()=>WO,inCirc:()=>UO,inCubic:()=>OO,inElastic:()=>jO,inExpo:()=>GO,inOutBack:()=>KO,inOutCirc:()=>HO,inOutCubic:()=>wO,inOutElastic:()=>QO,inOutExpo:()=>VO,inOutQuad:()=>SO,inOutQuart:()=>PO,inOutQuint:()=>DO,inOutSine:()=>qO,inQuad:()=>bO,inQuart:()=>RO,inQuint:()=>LO,inSine:()=>MO,outBack:()=>zO,outBounce:()=>kO,outCirc:()=>BO,outCubic:()=>xO,outElastic:()=>YO,outExpo:()=>XO,outQuad:()=>AO,outQuart:()=>CO,outQuint:()=>NO,outSine:()=>FO,swingFrom:()=>ZO,swingFromTo:()=>$O,swingTo:()=>JO});function bO(e){return Math.pow(e,2)}function AO(e){return-(Math.pow(e-1,2)-1)}function SO(e){return(e/=.5)<1?.5*Math.pow(e,2):-.5*((e-=2)*e-2)}function OO(e){return Math.pow(e,3)}function xO(e){return Math.pow(e-1,3)+1}function wO(e){return(e/=.5)<1?.5*Math.pow(e,3):.5*(Math.pow(e-2,3)+2)}function RO(e){return Math.pow(e,4)}function CO(e){return-(Math.pow(e-1,4)-1)}function PO(e){return(e/=.5)<1?.5*Math.pow(e,4):-.5*((e-=2)*Math.pow(e,3)-2)}function LO(e){return Math.pow(e,5)}function NO(e){return Math.pow(e-1,5)+1}function DO(e){return(e/=.5)<1?.5*Math.pow(e,5):.5*(Math.pow(e-2,5)+2)}function MO(e){return-Math.cos(e*(Math.PI/2))+1}function FO(e){return Math.sin(e*(Math.PI/2))}function qO(e){return-.5*(Math.cos(Math.PI*e)-1)}function GO(e){return e===0?0:Math.pow(2,10*(e-1))}function XO(e){return e===1?1:-Math.pow(2,-10*e)+1}function VO(e){return e===0?0:e===1?1:(e/=.5)<1?.5*Math.pow(2,10*(e-1)):.5*(-Math.pow(2,-10*--e)+2)}function UO(e){return-(Math.sqrt(1-e*e)-1)}function BO(e){return Math.sqrt(1-Math.pow(e-1,2))}function HO(e){return(e/=.5)<1?-.5*(Math.sqrt(1-e*e)-1):.5*(Math.sqrt(1-(e-=2)*e)+1)}function kO(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375}function WO(e){let t=$e;return e*e*((t+1)*e-t)}function zO(e){let t=$e;return(e-=1)*e*((t+1)*e+t)+1}function KO(e){let t=$e;return(e/=.5)<1?.5*(e*e*(((t*=1.525)+1)*e-t)):.5*((e-=2)*e*(((t*=1.525)+1)*e+t)+2)}function jO(e){let t=$e,n=0,r=1;return e===0?0:e===1?1:(n||(n=.3),r<1?(r=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/r),-(r*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)))}function YO(e){let t=$e,n=0,r=1;return e===0?0:e===1?1:(n||(n=.3),r<1?(r=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/r),r*Math.pow(2,-10*e)*Math.sin((e-t)*(2*Math.PI)/n)+1)}function QO(e){let t=$e,n=0,r=1;return e===0?0:(e/=1/2)===2?1:(n||(n=.3*1.5),r<1?(r=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/r),e<1?-.5*(r*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)):r*Math.pow(2,-10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)*.5+1)}function $O(e){let t=$e;return(e/=.5)<1?.5*(e*e*(((t*=1.525)+1)*e-t)):.5*((e-=2)*e*(((t*=1.525)+1)*e+t)+2)}function ZO(e){let t=$e;return e*e*((t+1)*e-t)}function JO(e){let t=$e;return(e-=1)*e*((t+1)*e+t)+1}function ex(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375}function tx(e){return e<1/2.75?7.5625*e*e:e<2/2.75?2-(7.5625*(e-=1.5/2.75)*e+.75):e<2.5/2.75?2-(7.5625*(e-=2.25/2.75)*e+.9375):2-(7.5625*(e-=2.625/2.75)*e+.984375)}var gn,$e,mO,_O,IO,TO,Ki=se(()=>{"use strict";gn=ee(zi()),$e=1.70158,mO=(0,gn.default)(.25,.1,.25,1),_O=(0,gn.default)(.42,0,1,1),IO=(0,gn.default)(0,0,.58,1),TO=(0,gn.default)(.42,0,.58,1)});var Yf={};Oe(Yf,{applyEasing:()=>rx,createBezierEasing:()=>nx,optimizeFloat:()=>En});function En(e,t=5,n=10){let r=Math.pow(n,t),i=Number(Math.round(e*r)/r);return Math.abs(i)>1e-4?i:0}function nx(e){return(0,jf.default)(...e)}function rx(e,t,n){return t===0?0:t===1?1:En(n?t>0?n(t):t:t>0&&e&&hn[e]?hn[e](t):t)}var jf,ji=se(()=>{"use strict";Ki();jf=ee(zi())});var Zf={};Oe(Zf,{createElementState:()=>$f,ixElements:()=>yx,mergeActionState:()=>Yi});function $f(e,t,n,r,i){let o=n===ix?(0,Mt.getIn)(i,["config","target","objectId"]):null;return(0,Mt.mergeIn)(e,[r],{id:r,ref:t,refId:o,refType:n})}function Yi(e,t,n,r,i){let o=mx(i);return(0,Mt.mergeIn)(e,[t,Ex,n],r,o)}function mx(e){let{config:t}=e;return vx.reduce((n,r)=>{let i=r[0],o=r[1],a=t[i],s=t[o];return a!=null&&s!=null&&(n[o]=s),n},{})}var Mt,l1,ix,f1,ox,ax,sx,ux,cx,lx,fx,dx,px,gx,hx,Qf,Ex,yx,vx,Jf=se(()=>{"use strict";Mt=ee(Ot());xe();({HTML_ELEMENT:l1,PLAIN_OBJECT:ix,ABSTRACT_NODE:f1,CONFIG_X_VALUE:ox,CONFIG_Y_VALUE:ax,CONFIG_Z_VALUE:sx,CONFIG_VALUE:ux,CONFIG_X_UNIT:cx,CONFIG_Y_UNIT:lx,CONFIG_Z_UNIT:fx,CONFIG_UNIT:dx}=me),{IX2_SESSION_STOPPED:px,IX2_INSTANCE_ADDED:gx,IX2_ELEMENT_STATE_CHANGED:hx}=pe,Qf={},Ex="refState",yx=(e=Qf,t={})=>{switch(t.type){case px:return Qf;case gx:{let{elementId:n,element:r,origin:i,actionItem:o,refType:a}=t.payload,{actionTypeId:s}=o,u=e;return(0,Mt.getIn)(u,[n,r])!==r&&(u=$f(u,r,a,n,o)),Yi(u,n,s,i,o)}case hx:{let{elementId:n,actionTypeId:r,current:i,actionItem:o}=t.payload;return Yi(e,n,r,i,o)}default:return e}};vx=[[ox,cx],[ax,lx],[sx,fx],[ux,dx]]});var ed=f(Qi=>{"use strict";Object.defineProperty(Qi,"__esModule",{value:!0});function _x(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}_x(Qi,{clearPlugin:function(){return xx},createPluginInstance:function(){return Sx},getPluginConfig:function(){return Ix},getPluginDestination:function(){return Ax},getPluginDuration:function(){return Tx},getPluginOrigin:function(){return bx},renderPlugin:function(){return Ox}});var Ix=e=>e.value,Tx=(e,t)=>{if(t.config.duration!=="auto")return null;let n=parseFloat(e.getAttribute("data-duration"));return n>0?n*1e3:parseFloat(e.getAttribute("data-default-duration"))*1e3},bx=e=>e||{value:0},Ax=e=>({value:e.value}),Sx=e=>{let t=window.Webflow.require("lottie").createInstance(e);return t.stop(),t.setSubframe(!0),t},Ox=(e,t,n)=>{if(!e)return;let r=t[n.actionTypeId].value/100;e.goToFrame(e.frames*r)},xx=e=>{window.Webflow.require("lottie").createInstance(e).stop()}});var nd=f($i=>{"use strict";Object.defineProperty($i,"__esModule",{value:!0});function wx(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}wx($i,{clearPlugin:function(){return Gx},createPluginInstance:function(){return Fx},getPluginConfig:function(){return Lx},getPluginDestination:function(){return Mx},getPluginDuration:function(){return Nx},getPluginOrigin:function(){return Dx},renderPlugin:function(){return qx}});var Rx=e=>document.querySelector(`[data-w-id="${e}"]`),Cx=()=>window.Webflow.require("spline"),Px=(e,t)=>e.filter(n=>!t.includes(n)),Lx=(e,t)=>e.value[t],Nx=()=>null,td=Object.freeze({positionX:0,positionY:0,positionZ:0,rotationX:0,rotationY:0,rotationZ:0,scaleX:1,scaleY:1,scaleZ:1}),Dx=(e,t)=>{let n=t.config.value,r=Object.keys(n);if(e){let o=Object.keys(e),a=Px(r,o);return a.length?a.reduce((u,l)=>(u[l]=td[l],u),e):e}return r.reduce((o,a)=>(o[a]=td[a],o),{})},Mx=e=>e.value,Fx=(e,t)=>{let n=t?.config?.target?.pluginElement;return n?Rx(n):null},qx=(e,t,n)=>{let r=Cx(),i=r.getInstance(e),o=n.config.target.objectId,a=s=>{if(!s)throw new Error("Invalid spline app passed to renderSpline");let u=o&&s.findObjectById(o);if(!u)return;let{PLUGIN_SPLINE:l}=t;l.positionX!=null&&(u.position.x=l.positionX),l.positionY!=null&&(u.position.y=l.positionY),l.positionZ!=null&&(u.position.z=l.positionZ),l.rotationX!=null&&(u.rotation.x=l.rotationX),l.rotationY!=null&&(u.rotation.y=l.rotationY),l.rotationZ!=null&&(u.rotation.z=l.rotationZ),l.scaleX!=null&&(u.scale.x=l.scaleX),l.scaleY!=null&&(u.scale.y=l.scaleY),l.scaleZ!=null&&(u.scale.z=l.scaleZ)};i?a(i.spline):r.setLoadHandler(e,a)},Gx=()=>null});var rd=f(eo=>{"use strict";Object.defineProperty(eo,"__esModule",{value:!0});function Xx(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}Xx(eo,{clearPlugin:function(){return jx},createPluginInstance:function(){return zx},getPluginConfig:function(){return Bx},getPluginDestination:function(){return Wx},getPluginDuration:function(){return Hx},getPluginOrigin:function(){return kx},renderPlugin:function(){return Kx}});var Zi="--wf-rive-fit",Ji="--wf-rive-alignment",Vx=e=>document.querySelector(`[data-w-id="${e}"]`),Ux=()=>window.Webflow.require("rive"),Bx=(e,t)=>e.value.inputs[t],Hx=()=>null,kx=(e,t)=>{if(e)return e;let n={},{inputs:r={}}=t.config.value;for(let i in r)r[i]==null&&(n[i]=0);return n},Wx=e=>e.value.inputs??{},zx=(e,t)=>{if((t.config?.target?.selectorGuids||[]).length>0)return e;let r=t?.config?.target?.pluginElement;return r?Vx(r):null},Kx=(e,{PLUGIN_RIVE:t},n)=>{let r=Ux(),i=r.getInstance(e),o=r.rive.StateMachineInputType,{name:a,inputs:s={}}=n.config.value||{};function u(l){if(l.loaded)y();else{let g=()=>{y(),l?.off("load",g)};l?.on("load",g)}function y(){let g=l.stateMachineInputs(a);if(g!=null){if(l.isPlaying||l.play(a,!1),Zi in s||Ji in s){let d=l.layout,h=s[Zi]??d.fit,T=s[Ji]??d.alignment;(h!==d.fit||T!==d.alignment)&&(l.layout=d.copyWith({fit:h,alignment:T}))}for(let d in s){if(d===Zi||d===Ji)continue;let h=g.find(T=>T.name===d);if(h!=null)switch(h.type){case o.Boolean:{if(s[d]!=null){let T=!!s[d];h.value=T}break}case o.Number:{let T=t[d];T!=null&&(h.value=T);break}case o.Trigger:{s[d]&&h.fire();break}}}}}}i?.rive?u(i.rive):r.setLoadHandler(e,u)},jx=(e,t)=>null});var no=f(to=>{"use strict";Object.defineProperty(to,"__esModule",{value:!0});Object.defineProperty(to,"normalizeColor",{enumerable:!0,get:function(){return Yx}});var id={aliceblue:"#F0F8FF",antiquewhite:"#FAEBD7",aqua:"#00FFFF",aquamarine:"#7FFFD4",azure:"#F0FFFF",beige:"#F5F5DC",bisque:"#FFE4C4",black:"#000000",blanchedalmond:"#FFEBCD",blue:"#0000FF",blueviolet:"#8A2BE2",brown:"#A52A2A",burlywood:"#DEB887",cadetblue:"#5F9EA0",chartreuse:"#7FFF00",chocolate:"#D2691E",coral:"#FF7F50",cornflowerblue:"#6495ED",cornsilk:"#FFF8DC",crimson:"#DC143C",cyan:"#00FFFF",darkblue:"#00008B",darkcyan:"#008B8B",darkgoldenrod:"#B8860B",darkgray:"#A9A9A9",darkgreen:"#006400",darkgrey:"#A9A9A9",darkkhaki:"#BDB76B",darkmagenta:"#8B008B",darkolivegreen:"#556B2F",darkorange:"#FF8C00",darkorchid:"#9932CC",darkred:"#8B0000",darksalmon:"#E9967A",darkseagreen:"#8FBC8F",darkslateblue:"#483D8B",darkslategray:"#2F4F4F",darkslategrey:"#2F4F4F",darkturquoise:"#00CED1",darkviolet:"#9400D3",deeppink:"#FF1493",deepskyblue:"#00BFFF",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1E90FF",firebrick:"#B22222",floralwhite:"#FFFAF0",forestgreen:"#228B22",fuchsia:"#FF00FF",gainsboro:"#DCDCDC",ghostwhite:"#F8F8FF",gold:"#FFD700",goldenrod:"#DAA520",gray:"#808080",green:"#008000",greenyellow:"#ADFF2F",grey:"#808080",honeydew:"#F0FFF0",hotpink:"#FF69B4",indianred:"#CD5C5C",indigo:"#4B0082",ivory:"#FFFFF0",khaki:"#F0E68C",lavender:"#E6E6FA",lavenderblush:"#FFF0F5",lawngreen:"#7CFC00",lemonchiffon:"#FFFACD",lightblue:"#ADD8E6",lightcoral:"#F08080",lightcyan:"#E0FFFF",lightgoldenrodyellow:"#FAFAD2",lightgray:"#D3D3D3",lightgreen:"#90EE90",lightgrey:"#D3D3D3",lightpink:"#FFB6C1",lightsalmon:"#FFA07A",lightseagreen:"#20B2AA",lightskyblue:"#87CEFA",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#B0C4DE",lightyellow:"#FFFFE0",lime:"#00FF00",limegreen:"#32CD32",linen:"#FAF0E6",magenta:"#FF00FF",maroon:"#800000",mediumaquamarine:"#66CDAA",mediumblue:"#0000CD",mediumorchid:"#BA55D3",mediumpurple:"#9370DB",mediumseagreen:"#3CB371",mediumslateblue:"#7B68EE",mediumspringgreen:"#00FA9A",mediumturquoise:"#48D1CC",mediumvioletred:"#C71585",midnightblue:"#191970",mintcream:"#F5FFFA",mistyrose:"#FFE4E1",moccasin:"#FFE4B5",navajowhite:"#FFDEAD",navy:"#000080",oldlace:"#FDF5E6",olive:"#808000",olivedrab:"#6B8E23",orange:"#FFA500",orangered:"#FF4500",orchid:"#DA70D6",palegoldenrod:"#EEE8AA",palegreen:"#98FB98",paleturquoise:"#AFEEEE",palevioletred:"#DB7093",papayawhip:"#FFEFD5",peachpuff:"#FFDAB9",peru:"#CD853F",pink:"#FFC0CB",plum:"#DDA0DD",powderblue:"#B0E0E6",purple:"#800080",rebeccapurple:"#663399",red:"#FF0000",rosybrown:"#BC8F8F",royalblue:"#4169E1",saddlebrown:"#8B4513",salmon:"#FA8072",sandybrown:"#F4A460",seagreen:"#2E8B57",seashell:"#FFF5EE",sienna:"#A0522D",silver:"#C0C0C0",skyblue:"#87CEEB",slateblue:"#6A5ACD",slategray:"#708090",slategrey:"#708090",snow:"#FFFAFA",springgreen:"#00FF7F",steelblue:"#4682B4",tan:"#D2B48C",teal:"#008080",thistle:"#D8BFD8",tomato:"#FF6347",turquoise:"#40E0D0",violet:"#EE82EE",wheat:"#F5DEB3",white:"#FFFFFF",whitesmoke:"#F5F5F5",yellow:"#FFFF00",yellowgreen:"#9ACD32"};function Yx(e){let t,n,r,i=1,o=e.replace(/\s/g,"").toLowerCase(),s=(typeof id[o]=="string"?id[o].toLowerCase():null)||o;if(s.startsWith("#")){let u=s.substring(1);u.length===3||u.length===4?(t=parseInt(u[0]+u[0],16),n=parseInt(u[1]+u[1],16),r=parseInt(u[2]+u[2],16),u.length===4&&(i=parseInt(u[3]+u[3],16)/255)):(u.length===6||u.length===8)&&(t=parseInt(u.substring(0,2),16),n=parseInt(u.substring(2,4),16),r=parseInt(u.substring(4,6),16),u.length===8&&(i=parseInt(u.substring(6,8),16)/255))}else if(s.startsWith("rgba")){let u=s.match(/rgba\(([^)]+)\)/)[1].split(",");t=parseInt(u[0],10),n=parseInt(u[1],10),r=parseInt(u[2],10),i=parseFloat(u[3])}else if(s.startsWith("rgb")){let u=s.match(/rgb\(([^)]+)\)/)[1].split(",");t=parseInt(u[0],10),n=parseInt(u[1],10),r=parseInt(u[2],10)}else if(s.startsWith("hsla")){let u=s.match(/hsla\(([^)]+)\)/)[1].split(","),l=parseFloat(u[0]),y=parseFloat(u[1].replace("%",""))/100,g=parseFloat(u[2].replace("%",""))/100;i=parseFloat(u[3]);let d=(1-Math.abs(2*g-1))*y,h=d*(1-Math.abs(l/60%2-1)),T=g-d/2,_,S,m;l>=0&&l<60?(_=d,S=h,m=0):l>=60&&l<120?(_=h,S=d,m=0):l>=120&&l<180?(_=0,S=d,m=h):l>=180&&l<240?(_=0,S=h,m=d):l>=240&&l<300?(_=h,S=0,m=d):(_=d,S=0,m=h),t=Math.round((_+T)*255),n=Math.round((S+T)*255),r=Math.round((m+T)*255)}else if(s.startsWith("hsl")){let u=s.match(/hsl\(([^)]+)\)/)[1].split(","),l=parseFloat(u[0]),y=parseFloat(u[1].replace("%",""))/100,g=parseFloat(u[2].replace("%",""))/100,d=(1-Math.abs(2*g-1))*y,h=d*(1-Math.abs(l/60%2-1)),T=g-d/2,_,S,m;l>=0&&l<60?(_=d,S=h,m=0):l>=60&&l<120?(_=h,S=d,m=0):l>=120&&l<180?(_=0,S=d,m=h):l>=180&&l<240?(_=0,S=h,m=d):l>=240&&l<300?(_=h,S=0,m=d):(_=d,S=0,m=h),t=Math.round((_+T)*255),n=Math.round((S+T)*255),r=Math.round((m+T)*255)}if(Number.isNaN(t)||Number.isNaN(n)||Number.isNaN(r))throw new Error(`Invalid color in [ix2/shared/utils/normalizeColor.js] '${e}'`);return{red:t,green:n,blue:r,alpha:i}}});var od=f(ro=>{"use strict";Object.defineProperty(ro,"__esModule",{value:!0});function Qx(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}Qx(ro,{clearPlugin:function(){return iw},createPluginInstance:function(){return nw},getPluginConfig:function(){return Zx},getPluginDestination:function(){return tw},getPluginDuration:function(){return Jx},getPluginOrigin:function(){return ew},renderPlugin:function(){return rw}});var $x=no(),Zx=(e,t)=>e.value[t],Jx=()=>null,ew=(e,t)=>{if(e)return e;let n=t.config.value,r=t.config.target.objectId,i=getComputedStyle(document.documentElement).getPropertyValue(r);if(n.size!=null)return{size:parseInt(i,10)};if(n.red!=null&&n.green!=null&&n.blue!=null)return(0,$x.normalizeColor)(i)},tw=e=>e.value,nw=()=>null,rw=(e,t,n)=>{let r=n.config.target.objectId,i=n.config.value.unit,{PLUGIN_VARIABLE:o}=t,{size:a,red:s,green:u,blue:l,alpha:y}=o,g;a!=null&&(g=a+i),s!=null&&l!=null&&u!=null&&y!=null&&(g=`rgba(${s}, ${u}, ${l}, ${y})`),g!=null&&document.documentElement.style.setProperty(r,g)},iw=(e,t)=>{let n=t.config.target.objectId;document.documentElement.style.removeProperty(n)}});var sd=f(io=>{"use strict";Object.defineProperty(io,"__esModule",{value:!0});Object.defineProperty(io,"pluginMethodMap",{enumerable:!0,get:function(){return cw}});var fr=(xe(),Ue(ls)),ow=dr(ed()),aw=dr(nd()),sw=dr(rd()),uw=dr(od());function ad(e){if(typeof WeakMap!="function")return null;var t=new WeakMap,n=new WeakMap;return(ad=function(r){return r?n:t})(e)}function dr(e,t){if(!t&&e&&e.__esModule)return e;if(e===null||typeof e!="object"&&typeof e!="function")return{default:e};var n=ad(t);if(n&&n.has(e))return n.get(e);var r={__proto__:null},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if(o!=="default"&&Object.prototype.hasOwnProperty.call(e,o)){var a=i?Object.getOwnPropertyDescriptor(e,o):null;a&&(a.get||a.set)?Object.defineProperty(r,o,a):r[o]=e[o]}return r.default=e,n&&n.set(e,r),r}var cw=new Map([[fr.ActionTypeConsts.PLUGIN_LOTTIE,{...ow}],[fr.ActionTypeConsts.PLUGIN_SPLINE,{...aw}],[fr.ActionTypeConsts.PLUGIN_RIVE,{...sw}],[fr.ActionTypeConsts.PLUGIN_VARIABLE,{...uw}]])});var ud={};Oe(ud,{clearPlugin:()=>lo,createPluginInstance:()=>fw,getPluginConfig:()=>ao,getPluginDestination:()=>uo,getPluginDuration:()=>lw,getPluginOrigin:()=>so,isPluginType:()=>ht,renderPlugin:()=>co});function ht(e){return oo.pluginMethodMap.has(e)}var oo,Et,ao,so,lw,uo,fw,co,lo,fo=se(()=>{"use strict";ur();oo=ee(sd());Et=e=>t=>{if(!qe)return()=>null;let n=oo.pluginMethodMap.get(t);if(!n)throw new Error(`IX2 no plugin configured for: ${t}`);let r=n[e];if(!r)throw new Error(`IX2 invalid plugin method: ${e}`);return r},ao=Et("getPluginConfig"),so=Et("getPluginOrigin"),lw=Et("getPluginDuration"),uo=Et("getPluginDestination"),fw=Et("createPluginInstance"),co=Et("renderPlugin"),lo=Et("clearPlugin")});var ld=f((m1,cd)=>{function dw(e,t){return e==null||e!==e?t:e}cd.exports=dw});var dd=f((_1,fd)=>{function pw(e,t,n,r){var i=-1,o=e==null?0:e.length;for(r&&o&&(n=e[++i]);++i{function gw(e){return function(t,n,r){for(var i=-1,o=Object(t),a=r(t),s=a.length;s--;){var u=a[e?s:++i];if(n(o[u],u,o)===!1)break}return t}}pd.exports=gw});var Ed=f((T1,hd)=>{var hw=gd(),Ew=hw();hd.exports=Ew});var po=f((b1,yd)=>{var yw=Ed(),vw=ln();function mw(e,t){return e&&yw(e,t,vw)}yd.exports=mw});var md=f((A1,vd)=>{var _w=pt();function Iw(e,t){return function(n,r){if(n==null)return n;if(!_w(n))return e(n,r);for(var i=n.length,o=t?i:-1,a=Object(n);(t?o--:++o{var Tw=po(),bw=md(),Aw=bw(Tw);_d.exports=Aw});var Td=f((O1,Id)=>{function Sw(e,t,n,r,i){return i(e,function(o,a,s){n=r?(r=!1,o):t(n,o,a,s)}),n}Id.exports=Sw});var Ad=f((x1,bd)=>{var Ow=dd(),xw=go(),ww=ot(),Rw=Td(),Cw=Ee();function Pw(e,t,n){var r=Cw(e)?Ow:Rw,i=arguments.length<3;return r(e,ww(t,4),n,i,xw)}bd.exports=Pw});var Od=f((w1,Sd)=>{var Lw=Bi(),Nw=ot(),Dw=Hi(),Mw=Math.max,Fw=Math.min;function qw(e,t,n){var r=e==null?0:e.length;if(!r)return-1;var i=r-1;return n!==void 0&&(i=Dw(n),i=n<0?Mw(r+i,0):Fw(i,r-1)),Lw(e,Nw(t,3),i,!0)}Sd.exports=qw});var wd=f((R1,xd)=>{var Gw=Ui(),Xw=Od(),Vw=Gw(Xw);xd.exports=Vw});function Rd(e,t){return e===t?e!==0||t!==0||1/e===1/t:e!==e&&t!==t}function Uw(e,t){if(Rd(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;let n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(let i=0;i{"use strict";ho=Uw});var jd={};Oe(jd,{cleanupHTMLElement:()=>GR,clearAllStyles:()=>qR,clearObjectCache:()=>iR,getActionListProgress:()=>VR,getAffectedElements:()=>_o,getComputedStyle:()=>dR,getDestinationValues:()=>mR,getElementId:()=>uR,getInstanceId:()=>aR,getInstanceOrigin:()=>hR,getItemConfigByKey:()=>vR,getMaxDurationItemIndex:()=>Kd,getNamespacedParameterId:()=>HR,getRenderType:()=>kd,getStyleProp:()=>_R,mediaQueriesEqual:()=>WR,observeStore:()=>fR,reduceListToGroup:()=>UR,reifyState:()=>cR,renderHTMLElement:()=>IR,shallowEqual:()=>ho,shouldAllowMediaQuery:()=>kR,shouldNamespaceEventParameter:()=>BR,stringifyTarget:()=>zR});function iR(){pr.clear()}function aR(){return"i"+oR++}function uR(e,t){for(let n in e){let r=e[n];if(r&&r.ref===t)return r.id}return"e"+sR++}function cR({events:e,actionLists:t,site:n}={}){let r=(0,yr.default)(e,(a,s)=>{let{eventTypeId:u}=s;return a[u]||(a[u]={}),a[u][s.id]=s,a},{}),i=n&&n.mediaQueries,o=[];return i?o=i.map(a=>a.key):(i=[],console.warn("IX2 missing mediaQueries in site data")),{ixData:{events:e,actionLists:t,eventTypeMap:r,mediaQueries:i,mediaQueryKeys:o}}}function fR({store:e,select:t,onChange:n,comparator:r=lR}){let{getState:i,subscribe:o}=e,a=o(u),s=t(i());function u(){let l=t(i());if(l==null){a();return}r(l,s)||(s=l,n(s,e))}return a}function Nd(e){let t=typeof e;if(t==="string")return{id:e};if(e!=null&&t==="object"){let{id:n,objectId:r,selector:i,selectorGuids:o,appliesTo:a,useEventTarget:s}=e;return{id:n,objectId:r,selector:i,selectorGuids:o,appliesTo:a,useEventTarget:s}}return{}}function _o({config:e,event:t,eventTarget:n,elementRoot:r,elementApi:i}){if(!i)throw new Error("IX2 missing elementApi");let{targets:o}=e;if(Array.isArray(o)&&o.length>0)return o.reduce((P,I)=>P.concat(_o({config:{target:I},event:t,eventTarget:n,elementRoot:r,elementApi:i})),[]);let{getValidDocument:a,getQuerySelector:s,queryDocument:u,getChildElements:l,getSiblingElements:y,matchSelector:g,elementContains:d,isSiblingNode:h}=i,{target:T}=e;if(!T)return[];let{id:_,objectId:S,selector:m,selectorGuids:x,appliesTo:A,useEventTarget:L}=Nd(T);if(S)return[pr.has(S)?pr.get(S):pr.set(S,{}).get(S)];if(A===pi.PAGE){let P=a(_);return P?[P]:[]}let R=(t?.action?.config?.affectedElements??{})[_||m]||{},G=!!(R.id||R.selector),X,U,k,z=t&&s(Nd(t.target));if(G?(X=R.limitAffectedElements,U=z,k=s(R)):U=k=s({id:_,selector:m,selectorGuids:x}),t&&L){let P=n&&(k||L===!0)?[n]:u(z);if(k){if(L===tR)return u(k).filter(I=>P.some(C=>d(I,C)));if(L===Pd)return u(k).filter(I=>P.some(C=>d(C,I)));if(L===Ld)return u(k).filter(I=>P.some(C=>h(C,I)))}return P}return U==null||k==null?[]:qe&&r?u(k).filter(P=>r.contains(P)):X===Pd?u(U,k):X===eR?l(u(U)).filter(g(k)):X===Ld?y(u(U)).filter(g(k)):u(k)}function dR({element:e,actionItem:t}){if(!qe)return{};let{actionTypeId:n}=t;switch(n){case Vt:case Ut:case Bt:case Ht:case mr:return window.getComputedStyle(e);default:return{}}}function hR(e,t={},n={},r,i){let{getStyle:o}=i,{actionTypeId:a}=r;if(ht(a))return so(a)(t[a],r);switch(r.actionTypeId){case qt:case Gt:case Xt:case _n:return t[r.actionTypeId]||Io[r.actionTypeId];case In:return pR(t[r.actionTypeId],r.config.filters);case Tn:return gR(t[r.actionTypeId],r.config.fontVariations);case Ud:return{value:(0,Ze.default)(parseFloat(o(e,hr)),1)};case Vt:{let s=o(e,ze),u=o(e,Ke),l,y;return r.config.widthUnit===st?l=Dd.test(s)?parseFloat(s):parseFloat(n.width):l=(0,Ze.default)(parseFloat(s),parseFloat(n.width)),r.config.heightUnit===st?y=Dd.test(u)?parseFloat(u):parseFloat(n.height):y=(0,Ze.default)(parseFloat(u),parseFloat(n.height)),{widthValue:l,heightValue:y}}case Ut:case Bt:case Ht:return DR({element:e,actionTypeId:r.actionTypeId,computedStyle:n,getStyle:o});case mr:return{value:(0,Ze.default)(o(e,Er),n.display)};case rR:return t[r.actionTypeId]||{value:0};default:return}}function mR({element:e,actionItem:t,elementApi:n}){if(ht(t.actionTypeId))return uo(t.actionTypeId)(t.config);switch(t.actionTypeId){case qt:case Gt:case Xt:case _n:{let{xValue:r,yValue:i,zValue:o}=t.config;return{xValue:r,yValue:i,zValue:o}}case Vt:{let{getStyle:r,setStyle:i,getProperty:o}=n,{widthUnit:a,heightUnit:s}=t.config,{widthValue:u,heightValue:l}=t.config;if(!qe)return{widthValue:u,heightValue:l};if(a===st){let y=r(e,ze);i(e,ze,""),u=o(e,"offsetWidth"),i(e,ze,y)}if(s===st){let y=r(e,Ke);i(e,Ke,""),l=o(e,"offsetHeight"),i(e,Ke,y)}return{widthValue:u,heightValue:l}}case Ut:case Bt:case Ht:{let{rValue:r,gValue:i,bValue:o,aValue:a,globalSwatchId:s}=t.config;if(s&&s.startsWith("--")){let{getStyle:u}=n,l=u(e,s),y=(0,qd.normalizeColor)(l);return{rValue:y.red,gValue:y.green,bValue:y.blue,aValue:y.alpha}}return{rValue:r,gValue:i,bValue:o,aValue:a}}case In:return t.config.filters.reduce(ER,{});case Tn:return t.config.fontVariations.reduce(yR,{});default:{let{value:r}=t.config;return{value:r}}}}function kd(e){if(/^TRANSFORM_/.test(e))return Xd;if(/^STYLE_/.test(e))return vo;if(/^GENERAL_/.test(e))return yo;if(/^PLUGIN_/.test(e))return Vd}function _R(e,t){return e===vo?t.replace("STYLE_","").toLowerCase():null}function IR(e,t,n,r,i,o,a,s,u){switch(s){case Xd:return OR(e,t,n,i,a);case vo:return MR(e,t,n,i,o,a);case yo:return FR(e,i,a);case Vd:{let{actionTypeId:l}=i;if(ht(l))return co(l)(u,t,i)}}}function OR(e,t,n,r,i){let o=SR.map(s=>{let u=Io[s],{xValue:l=u.xValue,yValue:y=u.yValue,zValue:g=u.zValue,xUnit:d="",yUnit:h="",zUnit:T=""}=t[s]||{};switch(s){case qt:return`${kw}(${l}${d}, ${y}${h}, ${g}${T})`;case Gt:return`${Ww}(${l}${d}, ${y}${h}, ${g}${T})`;case Xt:return`${zw}(${l}${d}) ${Kw}(${y}${h}) ${jw}(${g}${T})`;case _n:return`${Yw}(${l}${d}, ${y}${h})`;default:return""}}).join(" "),{setStyle:a}=i;yt(e,at,i),a(e,at,o),RR(r,n)&&a(e,sr,Qw)}function xR(e,t,n,r){let i=(0,yr.default)(t,(a,s,u)=>`${a} ${u}(${s}${AR(u,n)})`,""),{setStyle:o}=r;yt(e,yn,r),o(e,yn,i)}function wR(e,t,n,r){let i=(0,yr.default)(t,(a,s,u)=>(a.push(`"${u}" ${s}`),a),[]).join(", "),{setStyle:o}=r;yt(e,vn,r),o(e,vn,i)}function RR({actionTypeId:e},{xValue:t,yValue:n,zValue:r}){return e===qt&&r!==void 0||e===Gt&&r!==void 0||e===Xt&&(t!==void 0||n!==void 0)}function NR(e,t){let n=e.exec(t);return n?n[1]:""}function DR({element:e,actionTypeId:t,computedStyle:n,getStyle:r}){let i=mo[t],o=r(e,i),a=PR.test(o)?o:n[i],s=NR(LR,a).split(mn);return{rValue:(0,Ze.default)(parseInt(s[0],10),255),gValue:(0,Ze.default)(parseInt(s[1],10),255),bValue:(0,Ze.default)(parseInt(s[2],10),255),aValue:(0,Ze.default)(parseFloat(s[3]),1)}}function MR(e,t,n,r,i,o){let{setStyle:a}=o;switch(r.actionTypeId){case Vt:{let{widthUnit:s="",heightUnit:u=""}=r.config,{widthValue:l,heightValue:y}=n;l!==void 0&&(s===st&&(s="px"),yt(e,ze,o),a(e,ze,l+s)),y!==void 0&&(u===st&&(u="px"),yt(e,Ke,o),a(e,Ke,y+u));break}case In:{xR(e,n,r.config,o);break}case Tn:{wR(e,n,r.config,o);break}case Ut:case Bt:case Ht:{let s=mo[r.actionTypeId],u=Math.round(n.rValue),l=Math.round(n.gValue),y=Math.round(n.bValue),g=n.aValue;yt(e,s,o),a(e,s,g>=1?`rgb(${u},${l},${y})`:`rgba(${u},${l},${y},${g})`);break}default:{let{unit:s=""}=r.config;yt(e,i,o),a(e,i,n.value+s);break}}}function FR(e,t,n){let{setStyle:r}=n;switch(t.actionTypeId){case mr:{let{value:i}=t.config;i===$w&&qe?r(e,Er,Wi):r(e,Er,i);return}}}function yt(e,t,n){if(!qe)return;let r=Hd[t];if(!r)return;let{getStyle:i,setStyle:o}=n,a=i(e,Ft);if(!a){o(e,Ft,r);return}let s=a.split(mn).map(Bd);s.indexOf(r)===-1&&o(e,Ft,s.concat(r).join(mn))}function Wd(e,t,n){if(!qe)return;let r=Hd[t];if(!r)return;let{getStyle:i,setStyle:o}=n,a=i(e,Ft);!a||a.indexOf(r)===-1||o(e,Ft,a.split(mn).map(Bd).filter(s=>s!==r).join(mn))}function qR({store:e,elementApi:t}){let{ixData:n}=e.getState(),{events:r={},actionLists:i={}}=n;Object.keys(r).forEach(o=>{let a=r[o],{config:s}=a.action,{actionListId:u}=s,l=i[u];l&&Md({actionList:l,event:a,elementApi:t})}),Object.keys(i).forEach(o=>{Md({actionList:i[o],elementApi:t})})}function Md({actionList:e={},event:t,elementApi:n}){let{actionItemGroups:r,continuousParameterGroups:i}=e;r&&r.forEach(o=>{Fd({actionGroup:o,event:t,elementApi:n})}),i&&i.forEach(o=>{let{continuousActionGroups:a}=o;a.forEach(s=>{Fd({actionGroup:s,event:t,elementApi:n})})})}function Fd({actionGroup:e,event:t,elementApi:n}){let{actionItems:r}=e;r.forEach(i=>{let{actionTypeId:o,config:a}=i,s;ht(o)?s=u=>lo(o)(u,i):s=zd({effect:XR,actionTypeId:o,elementApi:n}),_o({config:a,event:t,elementApi:n}).forEach(s)})}function GR(e,t,n){let{setStyle:r,getStyle:i}=n,{actionTypeId:o}=t;if(o===Vt){let{config:a}=t;a.widthUnit===st&&r(e,ze,""),a.heightUnit===st&&r(e,Ke,"")}i(e,Ft)&&zd({effect:Wd,actionTypeId:o,elementApi:n})(e)}function XR(e,t,n){let{setStyle:r}=n;Wd(e,t,n),r(e,t,""),t===at&&r(e,sr,"")}function Kd(e){let t=0,n=0;return e.forEach((r,i)=>{let{config:o}=r,a=o.delay+o.duration;a>=t&&(t=a,n=i)}),n}function VR(e,t){let{actionItemGroups:n,useFirstGroupAsInitialState:r}=e,{actionItem:i,verboseTimeElapsed:o=0}=t,a=0,s=0;return n.forEach((u,l)=>{if(r&&l===0)return;let{actionItems:y}=u,g=y[Kd(y)],{config:d,actionTypeId:h}=g;i.id===g.id&&(s=a+o);let T=kd(h)===yo?0:d.duration;a+=d.delay+T}),a>0?En(s/a):0}function UR({actionList:e,actionItemId:t,rawData:n}){let{actionItemGroups:r,continuousParameterGroups:i}=e,o=[],a=s=>(o.push((0,vr.mergeIn)(s,["config"],{delay:0,duration:0})),s.id===t);return r&&r.some(({actionItems:s})=>s.some(a)),i&&i.some(s=>{let{continuousActionGroups:u}=s;return u.some(({actionItems:l})=>l.some(a))}),(0,vr.setIn)(n,["actionLists"],{[e.id]:{id:e.id,actionItemGroups:[{actionItems:o}]}})}function BR(e,{basedOn:t}){return e===Fe.SCROLLING_IN_VIEW&&(t===ke.ELEMENT||t==null)||e===Fe.MOUSE_MOVE&&t===ke.ELEMENT}function HR(e,t){return e+nR+t}function kR(e,t){return t==null?!0:e.indexOf(t)!==-1}function WR(e,t){return ho(e&&e.sort(),t&&t.sort())}function zR(e){if(typeof e=="string")return e;if(e.pluginElement&&e.objectId)return e.pluginElement+Eo+e.objectId;if(e.objectId)return e.objectId;let{id:t="",selector:n="",useEventTarget:r=""}=e;return t+Eo+n+Eo+r}var Ze,yr,gr,vr,qd,Bw,Hw,kw,Ww,zw,Kw,jw,Yw,Qw,$w,hr,yn,vn,ze,Ke,Gd,Zw,Jw,Pd,eR,Ld,tR,Er,Ft,st,mn,nR,Eo,Xd,yo,vo,Vd,qt,Gt,Xt,_n,Ud,In,Tn,Vt,Ut,Bt,Ht,mr,rR,Bd,mo,Hd,pr,oR,sR,lR,Dd,pR,gR,ER,yR,vR,Io,TR,bR,AR,SR,CR,PR,LR,zd,Yd=se(()=>{"use strict";Ze=ee(ld()),yr=ee(Ad()),gr=ee(wd()),vr=ee(Ot());xe();Cd();ji();qd=ee(no());fo();ur();({BACKGROUND:Bw,TRANSFORM:Hw,TRANSLATE_3D:kw,SCALE_3D:Ww,ROTATE_X:zw,ROTATE_Y:Kw,ROTATE_Z:jw,SKEW:Yw,PRESERVE_3D:Qw,FLEX:$w,OPACITY:hr,FILTER:yn,FONT_VARIATION_SETTINGS:vn,WIDTH:ze,HEIGHT:Ke,BACKGROUND_COLOR:Gd,BORDER_COLOR:Zw,COLOR:Jw,CHILDREN:Pd,IMMEDIATE_CHILDREN:eR,SIBLINGS:Ld,PARENT:tR,DISPLAY:Er,WILL_CHANGE:Ft,AUTO:st,COMMA_DELIMITER:mn,COLON_DELIMITER:nR,BAR_DELIMITER:Eo,RENDER_TRANSFORM:Xd,RENDER_GENERAL:yo,RENDER_STYLE:vo,RENDER_PLUGIN:Vd}=me),{TRANSFORM_MOVE:qt,TRANSFORM_SCALE:Gt,TRANSFORM_ROTATE:Xt,TRANSFORM_SKEW:_n,STYLE_OPACITY:Ud,STYLE_FILTER:In,STYLE_FONT_VARIATION:Tn,STYLE_SIZE:Vt,STYLE_BACKGROUND_COLOR:Ut,STYLE_BORDER:Bt,STYLE_TEXT_COLOR:Ht,GENERAL_DISPLAY:mr,OBJECT_VALUE:rR}=Te,Bd=e=>e.trim(),mo=Object.freeze({[Ut]:Gd,[Bt]:Zw,[Ht]:Jw}),Hd=Object.freeze({[at]:Hw,[Gd]:Bw,[hr]:hr,[yn]:yn,[ze]:ze,[Ke]:Ke,[vn]:vn}),pr=new Map;oR=1;sR=1;lR=(e,t)=>e===t;Dd=/px/,pR=(e,t)=>t.reduce((n,r)=>(n[r.type]==null&&(n[r.type]=TR[r.type]),n),e||{}),gR=(e,t)=>t.reduce((n,r)=>(n[r.type]==null&&(n[r.type]=bR[r.type]||r.defaultValue||0),n),e||{});ER=(e,t)=>(t&&(e[t.type]=t.value||0),e),yR=(e,t)=>(t&&(e[t.type]=t.value||0),e),vR=(e,t,n)=>{if(ht(e))return ao(e)(n,t);switch(e){case In:{let r=(0,gr.default)(n.filters,({type:i})=>i===t);return r?r.value:0}case Tn:{let r=(0,gr.default)(n.fontVariations,({type:i})=>i===t);return r?r.value:0}default:return n[t]}};Io={[qt]:Object.freeze({xValue:0,yValue:0,zValue:0}),[Gt]:Object.freeze({xValue:1,yValue:1,zValue:1}),[Xt]:Object.freeze({xValue:0,yValue:0,zValue:0}),[_n]:Object.freeze({xValue:0,yValue:0})},TR=Object.freeze({blur:0,"hue-rotate":0,invert:0,grayscale:0,saturate:100,sepia:0,contrast:100,brightness:100}),bR=Object.freeze({wght:0,opsz:0,wdth:0,slnt:0}),AR=(e,t)=>{let n=(0,gr.default)(t.filters,({type:r})=>r===e);if(n&&n.unit)return n.unit;switch(e){case"blur":return"px";case"hue-rotate":return"deg";default:return"%"}},SR=Object.keys(Io);CR="\\(([^)]+)\\)",PR=/^rgb/,LR=RegExp(`rgba?${CR}`);zd=({effect:e,actionTypeId:t,elementApi:n})=>r=>{switch(t){case qt:case Gt:case Xt:case _n:e(r,at,n);break;case In:e(r,yn,n);break;case Tn:e(r,vn,n);break;case Ud:e(r,hr,n);break;case Vt:e(r,ze,n),e(r,Ke,n);break;case Ut:case Bt:case Ht:e(r,mo[t],n);break;case mr:e(r,Er,n);break}}});var vt=f(To=>{"use strict";Object.defineProperty(To,"__esModule",{value:!0});function KR(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}KR(To,{IX2BrowserSupport:function(){return jR},IX2EasingUtils:function(){return QR},IX2Easings:function(){return YR},IX2ElementsReducer:function(){return $R},IX2VanillaPlugins:function(){return ZR},IX2VanillaUtils:function(){return JR}});var jR=kt((ur(),Ue(Bf))),YR=kt((Ki(),Ue(hn))),QR=kt((ji(),Ue(Yf))),$R=kt((Jf(),Ue(Zf))),ZR=kt((fo(),Ue(ud))),JR=kt((Yd(),Ue(jd)));function Qd(e){if(typeof WeakMap!="function")return null;var t=new WeakMap,n=new WeakMap;return(Qd=function(r){return r?n:t})(e)}function kt(e,t){if(!t&&e&&e.__esModule)return e;if(e===null||typeof e!="object"&&typeof e!="function")return{default:e};var n=Qd(t);if(n&&n.has(e))return n.get(e);var r={__proto__:null},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if(o!=="default"&&Object.prototype.hasOwnProperty.call(e,o)){var a=i?Object.getOwnPropertyDescriptor(e,o):null;a&&(a.get||a.set)?Object.defineProperty(r,o,a):r[o]=e[o]}return r.default=e,n&&n.set(e,r),r}});var Ir,Je,eC,tC,nC,rC,iC,oC,_r,$d,aC,sC,bo,uC,cC,lC,fC,Zd,Jd=se(()=>{"use strict";xe();Ir=ee(vt()),Je=ee(Ot()),{IX2_RAW_DATA_IMPORTED:eC,IX2_SESSION_STOPPED:tC,IX2_INSTANCE_ADDED:nC,IX2_INSTANCE_STARTED:rC,IX2_INSTANCE_REMOVED:iC,IX2_ANIMATION_FRAME_CHANGED:oC}=pe,{optimizeFloat:_r,applyEasing:$d,createBezierEasing:aC}=Ir.IX2EasingUtils,{RENDER_GENERAL:sC}=me,{getItemConfigByKey:bo,getRenderType:uC,getStyleProp:cC}=Ir.IX2VanillaUtils,lC=(e,t)=>{let{position:n,parameterId:r,actionGroups:i,destinationKeys:o,smoothing:a,restingValue:s,actionTypeId:u,customEasingFn:l,skipMotion:y,skipToValue:g}=e,{parameters:d}=t.payload,h=Math.max(1-a,.01),T=d[r];T==null&&(h=1,T=s);let _=Math.max(T,0)||0,S=_r(_-n),m=y?g:_r(n+S*h),x=m*100;if(m===n&&e.current)return e;let A,L,N,R;for(let X=0,{length:U}=i;X=k){A=z[0];let P=i[X+1],I=P&&x!==k;L=I?P.actionItems[0]:null,I&&(N=k/100,R=(P.keyframe-k)/100)}}let G={};if(A&&!L)for(let X=0,{length:U}=o;X{let{active:n,origin:r,start:i,immediate:o,renderType:a,verbose:s,actionItem:u,destination:l,destinationKeys:y,pluginDuration:g,instanceDelay:d,customEasingFn:h,skipMotion:T}=e,_=u.config.easing,{duration:S,delay:m}=u.config;g!=null&&(S=g),m=d??m,a===sC?S=0:(o||T)&&(S=m=0);let{now:x}=t.payload;if(n&&r){let A=x-(i+m);if(s){let X=x-i,U=S+m,k=_r(Math.min(Math.max(0,X/U),1));e=(0,Je.set)(e,"verboseTimeElapsed",U*k)}if(A<0)return e;let L=_r(Math.min(Math.max(0,A/S),1)),N=$d(_,L,h),R={},G=null;return y.length&&(G=y.reduce((X,U)=>{let k=l[U],z=parseFloat(r[U])||0,I=(parseFloat(k)-z)*N+z;return X[U]=I,X},{})),R.current=G,R.position=L,L===1&&(R.active=!1,R.complete=!0),(0,Je.merge)(e,R)}return e},Zd=(e=Object.freeze({}),t)=>{switch(t.type){case eC:return t.payload.ixInstances||Object.freeze({});case tC:return Object.freeze({});case nC:{let{instanceId:n,elementId:r,actionItem:i,eventId:o,eventTarget:a,eventStateKey:s,actionListId:u,groupIndex:l,isCarrier:y,origin:g,destination:d,immediate:h,verbose:T,continuous:_,parameterId:S,actionGroups:m,smoothing:x,restingValue:A,pluginInstance:L,pluginDuration:N,instanceDelay:R,skipMotion:G,skipToValue:X}=t.payload,{actionTypeId:U}=i,k=uC(U),z=cC(k,U),P=Object.keys(d).filter(C=>d[C]!=null&&typeof d[C]!="string"),{easing:I}=i.config;return(0,Je.set)(e,n,{id:n,elementId:r,active:!1,position:0,start:0,origin:g,destination:d,destinationKeys:P,immediate:h,verbose:T,current:null,actionItem:i,actionTypeId:U,eventId:o,eventTarget:a,eventStateKey:s,actionListId:u,groupIndex:l,renderType:k,isCarrier:y,styleProp:z,continuous:_,parameterId:S,actionGroups:m,smoothing:x,restingValue:A,pluginInstance:L,pluginDuration:N,instanceDelay:R,skipMotion:G,skipToValue:X,customEasingFn:Array.isArray(I)&&I.length===4?aC(I):void 0})}case rC:{let{instanceId:n,time:r}=t.payload;return(0,Je.mergeIn)(e,[n],{active:!0,complete:!1,start:r})}case iC:{let{instanceId:n}=t.payload;if(!e[n])return e;let r={},i=Object.keys(e),{length:o}=i;for(let a=0;a{"use strict";xe();({IX2_RAW_DATA_IMPORTED:dC,IX2_SESSION_STOPPED:pC,IX2_PARAMETER_CHANGED:gC}=pe),ep=(e={},t)=>{switch(t.type){case dC:return t.payload.ixParameters||{};case pC:return{};case gC:{let{key:n,value:r}=t.payload;return e[n]=r,e}default:return e}}});var ip={};Oe(ip,{default:()=>EC});var np,rp,hC,EC,op=se(()=>{"use strict";np=ee(di());ds();Ns();Fs();rp=ee(vt());Jd();tp();({ixElements:hC}=rp.IX2ElementsReducer),EC=(0,np.combineReducers)({ixData:fs,ixRequest:Ls,ixSession:Ms,ixElements:hC,ixInstances:Zd,ixParameters:ep})});var sp=f((K1,ap)=>{var yC=rt(),vC=Ee(),mC=Qe(),_C="[object String]";function IC(e){return typeof e=="string"||!vC(e)&&mC(e)&&yC(e)==_C}ap.exports=IC});var cp=f((j1,up)=>{var TC=Vi(),bC=TC("length");up.exports=bC});var fp=f((Y1,lp)=>{var AC="\\ud800-\\udfff",SC="\\u0300-\\u036f",OC="\\ufe20-\\ufe2f",xC="\\u20d0-\\u20ff",wC=SC+OC+xC,RC="\\ufe0e\\ufe0f",CC="\\u200d",PC=RegExp("["+CC+AC+wC+RC+"]");function LC(e){return PC.test(e)}lp.exports=LC});var _p=f((Q1,mp)=>{var pp="\\ud800-\\udfff",NC="\\u0300-\\u036f",DC="\\ufe20-\\ufe2f",MC="\\u20d0-\\u20ff",FC=NC+DC+MC,qC="\\ufe0e\\ufe0f",GC="["+pp+"]",Ao="["+FC+"]",So="\\ud83c[\\udffb-\\udfff]",XC="(?:"+Ao+"|"+So+")",gp="[^"+pp+"]",hp="(?:\\ud83c[\\udde6-\\uddff]){2}",Ep="[\\ud800-\\udbff][\\udc00-\\udfff]",VC="\\u200d",yp=XC+"?",vp="["+qC+"]?",UC="(?:"+VC+"(?:"+[gp,hp,Ep].join("|")+")"+vp+yp+")*",BC=vp+yp+UC,HC="(?:"+[gp+Ao+"?",Ao,hp,Ep,GC].join("|")+")",dp=RegExp(So+"(?="+So+")|"+HC+BC,"g");function kC(e){for(var t=dp.lastIndex=0;dp.test(e);)++t;return t}mp.exports=kC});var Tp=f(($1,Ip)=>{var WC=cp(),zC=fp(),KC=_p();function jC(e){return zC(e)?KC(e):WC(e)}Ip.exports=jC});var Ap=f((Z1,bp)=>{var YC=Zn(),QC=Jn(),$C=pt(),ZC=sp(),JC=Tp(),eP="[object Map]",tP="[object Set]";function nP(e){if(e==null)return 0;if($C(e))return ZC(e)?JC(e):e.length;var t=QC(e);return t==eP||t==tP?e.size:YC(e).length}bp.exports=nP});var Op=f((J1,Sp)=>{var rP="Expected a function";function iP(e){if(typeof e!="function")throw new TypeError(rP);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Sp.exports=iP});var Oo=f((eG,xp)=>{var oP=it(),aP=function(){try{var e=oP(Object,"defineProperty");return e({},"",{}),e}catch{}}();xp.exports=aP});var xo=f((tG,Rp)=>{var wp=Oo();function sP(e,t,n){t=="__proto__"&&wp?wp(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}Rp.exports=sP});var Pp=f((nG,Cp)=>{var uP=xo(),cP=Bn(),lP=Object.prototype,fP=lP.hasOwnProperty;function dP(e,t,n){var r=e[t];(!(fP.call(e,t)&&cP(r,n))||n===void 0&&!(t in e))&&uP(e,t,n)}Cp.exports=dP});var Dp=f((rG,Np)=>{var pP=Pp(),gP=dn(),hP=jn(),Lp=We(),EP=Dt();function yP(e,t,n,r){if(!Lp(e))return e;t=gP(t,e);for(var i=-1,o=t.length,a=o-1,s=e;s!=null&&++i{var vP=nr(),mP=Dp(),_P=dn();function IP(e,t,n){for(var r=-1,i=t.length,o={};++r{var TP=zn(),bP=Jr(),AP=Si(),SP=Ai(),OP=Object.getOwnPropertySymbols,xP=OP?function(e){for(var t=[];e;)TP(t,AP(e)),e=bP(e);return t}:SP;qp.exports=xP});var Vp=f((aG,Xp)=>{function wP(e){var t=[];if(e!=null)for(var n in Object(e))t.push(n);return t}Xp.exports=wP});var Bp=f((sG,Up)=>{var RP=We(),CP=$n(),PP=Vp(),LP=Object.prototype,NP=LP.hasOwnProperty;function DP(e){if(!RP(e))return PP(e);var t=CP(e),n=[];for(var r in e)r=="constructor"&&(t||!NP.call(e,r))||n.push(r);return n}Up.exports=DP});var kp=f((uG,Hp)=>{var MP=xi(),FP=Bp(),qP=pt();function GP(e){return qP(e)?MP(e,!0):FP(e)}Hp.exports=GP});var zp=f((cG,Wp)=>{var XP=bi(),VP=Gp(),UP=kp();function BP(e){return XP(e,UP,VP)}Wp.exports=BP});var jp=f((lG,Kp)=>{var HP=Xi(),kP=ot(),WP=Fp(),zP=zp();function KP(e,t){if(e==null)return{};var n=HP(zP(e),function(r){return[r]});return t=kP(t),WP(e,n,function(r,i){return t(r,i[0])})}Kp.exports=KP});var Qp=f((fG,Yp)=>{var jP=ot(),YP=Op(),QP=jp();function $P(e,t){return QP(e,YP(jP(t)))}Yp.exports=$P});var Zp=f((dG,$p)=>{var ZP=Zn(),JP=Jn(),eL=an(),tL=Ee(),nL=pt(),rL=Kn(),iL=$n(),oL=Qn(),aL="[object Map]",sL="[object Set]",uL=Object.prototype,cL=uL.hasOwnProperty;function lL(e){if(e==null)return!0;if(nL(e)&&(tL(e)||typeof e=="string"||typeof e.splice=="function"||rL(e)||oL(e)||eL(e)))return!e.length;var t=JP(e);if(t==aL||t==sL)return!e.size;if(iL(e))return!ZP(e).length;for(var n in e)if(cL.call(e,n))return!1;return!0}$p.exports=lL});var eg=f((pG,Jp)=>{var fL=xo(),dL=po(),pL=ot();function gL(e,t){var n={};return t=pL(t,3),dL(e,function(r,i,o){fL(n,i,t(r,i,o))}),n}Jp.exports=gL});var ng=f((gG,tg)=>{function hL(e,t){for(var n=-1,r=e==null?0:e.length;++n{var EL=ir();function yL(e){return typeof e=="function"?e:EL}rg.exports=yL});var ag=f((EG,og)=>{var vL=ng(),mL=go(),_L=ig(),IL=Ee();function TL(e,t){var n=IL(e)?vL:mL;return n(e,_L(t))}og.exports=TL});var ug=f((yG,sg)=>{var bL=Me(),AL=function(){return bL.Date.now()};sg.exports=AL});var fg=f((vG,lg)=>{var SL=We(),wo=ug(),cg=or(),OL="Expected a function",xL=Math.max,wL=Math.min;function RL(e,t,n){var r,i,o,a,s,u,l=0,y=!1,g=!1,d=!0;if(typeof e!="function")throw new TypeError(OL);t=cg(t)||0,SL(n)&&(y=!!n.leading,g="maxWait"in n,o=g?xL(cg(n.maxWait)||0,t):o,d="trailing"in n?!!n.trailing:d);function h(R){var G=r,X=i;return r=i=void 0,l=R,a=e.apply(X,G),a}function T(R){return l=R,s=setTimeout(m,t),y?h(R):a}function _(R){var G=R-u,X=R-l,U=t-G;return g?wL(U,o-X):U}function S(R){var G=R-u,X=R-l;return u===void 0||G>=t||G<0||g&&X>=o}function m(){var R=wo();if(S(R))return x(R);s=setTimeout(m,_(R))}function x(R){return s=void 0,d&&r?h(R):(r=i=void 0,a)}function A(){s!==void 0&&clearTimeout(s),l=0,r=u=i=s=void 0}function L(){return s===void 0?a:x(wo())}function N(){var R=wo(),G=S(R);if(r=arguments,i=this,u=R,G){if(s===void 0)return T(u);if(g)return clearTimeout(s),s=setTimeout(m,t),h(u)}return s===void 0&&(s=setTimeout(m,t)),a}return N.cancel=A,N.flush=L,N}lg.exports=RL});var pg=f((mG,dg)=>{var CL=fg(),PL=We(),LL="Expected a function";function NL(e,t,n){var r=!0,i=!0;if(typeof e!="function")throw new TypeError(LL);return PL(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),CL(e,t,{leading:r,maxWait:t,trailing:i})}dg.exports=NL});var hg={};Oe(hg,{actionListPlaybackChanged:()=>zt,animationFrameChanged:()=>br,clearRequested:()=>iN,elementStateChanged:()=>Fo,eventListenerAdded:()=>Tr,eventStateChanged:()=>No,instanceAdded:()=>Do,instanceRemoved:()=>Mo,instanceStarted:()=>Ar,mediaQueriesDefined:()=>Go,parameterChanged:()=>Wt,playbackRequested:()=>nN,previewRequested:()=>tN,rawDataImported:()=>Ro,sessionInitialized:()=>Co,sessionStarted:()=>Po,sessionStopped:()=>Lo,stopRequested:()=>rN,testFrameRendered:()=>oN,viewportWidthChanged:()=>qo});var gg,DL,ML,FL,qL,GL,XL,VL,UL,BL,HL,kL,WL,zL,KL,jL,YL,QL,$L,ZL,JL,eN,Ro,Co,Po,Lo,tN,nN,rN,iN,Tr,oN,No,br,Wt,Do,Ar,Mo,Fo,zt,qo,Go,Sr=se(()=>{"use strict";xe();gg=ee(vt()),{IX2_RAW_DATA_IMPORTED:DL,IX2_SESSION_INITIALIZED:ML,IX2_SESSION_STARTED:FL,IX2_SESSION_STOPPED:qL,IX2_PREVIEW_REQUESTED:GL,IX2_PLAYBACK_REQUESTED:XL,IX2_STOP_REQUESTED:VL,IX2_CLEAR_REQUESTED:UL,IX2_EVENT_LISTENER_ADDED:BL,IX2_TEST_FRAME_RENDERED:HL,IX2_EVENT_STATE_CHANGED:kL,IX2_ANIMATION_FRAME_CHANGED:WL,IX2_PARAMETER_CHANGED:zL,IX2_INSTANCE_ADDED:KL,IX2_INSTANCE_STARTED:jL,IX2_INSTANCE_REMOVED:YL,IX2_ELEMENT_STATE_CHANGED:QL,IX2_ACTION_LIST_PLAYBACK_CHANGED:$L,IX2_VIEWPORT_WIDTH_CHANGED:ZL,IX2_MEDIA_QUERIES_DEFINED:JL}=pe,{reifyState:eN}=gg.IX2VanillaUtils,Ro=e=>({type:DL,payload:{...eN(e)}}),Co=({hasBoundaryNodes:e,reducedMotion:t})=>({type:ML,payload:{hasBoundaryNodes:e,reducedMotion:t}}),Po=()=>({type:FL}),Lo=()=>({type:qL}),tN=({rawData:e,defer:t})=>({type:GL,payload:{defer:t,rawData:e}}),nN=({actionTypeId:e=Te.GENERAL_START_ACTION,actionListId:t,actionItemId:n,eventId:r,allowEvents:i,immediate:o,testManual:a,verbose:s,rawData:u})=>({type:XL,payload:{actionTypeId:e,actionListId:t,actionItemId:n,testManual:a,eventId:r,allowEvents:i,immediate:o,verbose:s,rawData:u}}),rN=e=>({type:VL,payload:{actionListId:e}}),iN=()=>({type:UL}),Tr=(e,t)=>({type:BL,payload:{target:e,listenerParams:t}}),oN=(e=1)=>({type:HL,payload:{step:e}}),No=(e,t)=>({type:kL,payload:{stateKey:e,newState:t}}),br=(e,t)=>({type:WL,payload:{now:e,parameters:t}}),Wt=(e,t)=>({type:zL,payload:{key:e,value:t}}),Do=e=>({type:KL,payload:{...e}}),Ar=(e,t)=>({type:jL,payload:{instanceId:e,time:t}}),Mo=e=>({type:YL,payload:{instanceId:e}}),Fo=(e,t,n,r)=>({type:QL,payload:{elementId:e,actionTypeId:t,current:n,actionItem:r}}),zt=({actionListId:e,isPlaying:t})=>({type:$L,payload:{actionListId:e,isPlaying:t}}),qo=({width:e,mediaQueries:t})=>({type:ZL,payload:{width:e,mediaQueries:t}}),Go=()=>({type:JL})});var Ae={};Oe(Ae,{elementContains:()=>Uo,getChildElements:()=>hN,getClosestElement:()=>bn,getProperty:()=>lN,getQuerySelector:()=>Vo,getRefType:()=>Bo,getSiblingElements:()=>EN,getStyle:()=>cN,getValidDocument:()=>dN,isSiblingNode:()=>gN,matchSelector:()=>fN,queryDocument:()=>pN,setStyle:()=>uN});function uN(e,t,n){e.style[t]=n}function cN(e,t){return t.startsWith("--")?window.getComputedStyle(document.documentElement).getPropertyValue(t):e.style[t]}function lN(e,t){return e[t]}function fN(e){return t=>t[Xo](e)}function Vo({id:e,selector:t}){if(e){let n=e;if(e.indexOf(Eg)!==-1){let r=e.split(Eg),i=r[0];if(n=r[1],i!==document.documentElement.getAttribute(vg))return null}return`[data-w-id="${n}"], [data-w-id^="${n}_instance"]`}return t}function dN(e){return e==null||e===document.documentElement.getAttribute(vg)?document:null}function pN(e,t){return Array.prototype.slice.call(document.querySelectorAll(t?e+" "+t:e))}function Uo(e,t){return e.contains(t)}function gN(e,t){return e!==t&&e.parentNode===t.parentNode}function hN(e){let t=[];for(let n=0,{length:r}=e||[];n{"use strict";yg=ee(vt());xe();({ELEMENT_MATCHES:Xo}=yg.IX2BrowserSupport),{IX2_ID_DELIMITER:Eg,HTML_ELEMENT:aN,PLAIN_OBJECT:sN,WF_PAGE:vg}=me;bn=Element.prototype.closest?(e,t)=>document.documentElement.contains(e)?e.closest(t):null:(e,t)=>{if(!document.documentElement.contains(e))return null;let n=e;do{if(n[Xo]&&n[Xo](t))return n;n=n.parentNode}while(n!=null);return null}});var Ho=f((TG,Ig)=>{var yN=We(),_g=Object.create,vN=function(){function e(){}return function(t){if(!yN(t))return{};if(_g)return _g(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();Ig.exports=vN});var Or=f((bG,Tg)=>{function mN(){}Tg.exports=mN});var wr=f((AG,bg)=>{var _N=Ho(),IN=Or();function xr(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}xr.prototype=_N(IN.prototype);xr.prototype.constructor=xr;bg.exports=xr});var xg=f((SG,Og)=>{var Ag=bt(),TN=an(),bN=Ee(),Sg=Ag?Ag.isConcatSpreadable:void 0;function AN(e){return bN(e)||TN(e)||!!(Sg&&e&&e[Sg])}Og.exports=AN});var Cg=f((OG,Rg)=>{var SN=zn(),ON=xg();function wg(e,t,n,r,i){var o=-1,a=e.length;for(n||(n=ON),i||(i=[]);++o0&&n(s)?t>1?wg(s,t-1,n,r,i):SN(i,s):r||(i[i.length]=s)}return i}Rg.exports=wg});var Lg=f((xG,Pg)=>{var xN=Cg();function wN(e){var t=e==null?0:e.length;return t?xN(e,1):[]}Pg.exports=wN});var Dg=f((wG,Ng)=>{function RN(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}Ng.exports=RN});var qg=f((RG,Fg)=>{var CN=Dg(),Mg=Math.max;function PN(e,t,n){return t=Mg(t===void 0?e.length-1:t,0),function(){for(var r=arguments,i=-1,o=Mg(r.length-t,0),a=Array(o);++i{function LN(e){return function(){return e}}Gg.exports=LN});var Bg=f((PG,Ug)=>{var NN=Xg(),Vg=Oo(),DN=ir(),MN=Vg?function(e,t){return Vg(e,"toString",{configurable:!0,enumerable:!1,value:NN(t),writable:!0})}:DN;Ug.exports=MN});var kg=f((LG,Hg)=>{var FN=800,qN=16,GN=Date.now;function XN(e){var t=0,n=0;return function(){var r=GN(),i=qN-(r-n);if(n=r,i>0){if(++t>=FN)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}Hg.exports=XN});var zg=f((NG,Wg)=>{var VN=Bg(),UN=kg(),BN=UN(VN);Wg.exports=BN});var jg=f((DG,Kg)=>{var HN=Lg(),kN=qg(),WN=zg();function zN(e){return WN(kN(e,void 0,HN),e+"")}Kg.exports=zN});var $g=f((MG,Qg)=>{var Yg=wi(),KN=Yg&&new Yg;Qg.exports=KN});var Jg=f((FG,Zg)=>{function jN(){}Zg.exports=jN});var ko=f((qG,th)=>{var eh=$g(),YN=Jg(),QN=eh?function(e){return eh.get(e)}:YN;th.exports=QN});var rh=f((GG,nh)=>{var $N={};nh.exports=$N});var Wo=f((XG,oh)=>{var ih=rh(),ZN=Object.prototype,JN=ZN.hasOwnProperty;function eD(e){for(var t=e.name+"",n=ih[t],r=JN.call(ih,t)?n.length:0;r--;){var i=n[r],o=i.func;if(o==null||o==e)return i.name}return t}oh.exports=eD});var Cr=f((VG,ah)=>{var tD=Ho(),nD=Or(),rD=4294967295;function Rr(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=rD,this.__views__=[]}Rr.prototype=tD(nD.prototype);Rr.prototype.constructor=Rr;ah.exports=Rr});var uh=f((UG,sh)=>{function iD(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n{var oD=Cr(),aD=wr(),sD=uh();function uD(e){if(e instanceof oD)return e.clone();var t=new aD(e.__wrapped__,e.__chain__);return t.__actions__=sD(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}ch.exports=uD});var ph=f((HG,dh)=>{var cD=Cr(),fh=wr(),lD=Or(),fD=Ee(),dD=Qe(),pD=lh(),gD=Object.prototype,hD=gD.hasOwnProperty;function Pr(e){if(dD(e)&&!fD(e)&&!(e instanceof cD)){if(e instanceof fh)return e;if(hD.call(e,"__wrapped__"))return pD(e)}return new fh(e)}Pr.prototype=lD.prototype;Pr.prototype.constructor=Pr;dh.exports=Pr});var hh=f((kG,gh)=>{var ED=Cr(),yD=ko(),vD=Wo(),mD=ph();function _D(e){var t=vD(e),n=mD[t];if(typeof n!="function"||!(t in ED.prototype))return!1;if(e===n)return!0;var r=yD(n);return!!r&&e===r[0]}gh.exports=_D});var mh=f((WG,vh)=>{var Eh=wr(),ID=jg(),TD=ko(),zo=Wo(),bD=Ee(),yh=hh(),AD="Expected a function",SD=8,OD=32,xD=128,wD=256;function RD(e){return ID(function(t){var n=t.length,r=n,i=Eh.prototype.thru;for(e&&t.reverse();r--;){var o=t[r];if(typeof o!="function")throw new TypeError(AD);if(i&&!a&&zo(o)=="wrapper")var a=new Eh([],!0)}for(r=a?r:n;++r{var CD=mh(),PD=CD();_h.exports=PD});var bh=f((KG,Th)=>{function LD(e,t,n){return e===e&&(n!==void 0&&(e=e<=n?e:n),t!==void 0&&(e=e>=t?e:t)),e}Th.exports=LD});var Sh=f((jG,Ah)=>{var ND=bh(),Ko=or();function DD(e,t,n){return n===void 0&&(n=t,t=void 0),n!==void 0&&(n=Ko(n),n=n===n?n:0),t!==void 0&&(t=Ko(t),t=t===t?t:0),ND(Ko(e),t,n)}Ah.exports=DD});var Dh,Mh,Fh,qh,MD,FD,qD,GD,XD,VD,UD,BD,HD,kD,WD,zD,KD,jD,YD,Gh,Xh,QD,$D,ZD,Vh,JD,eM,Uh,tM,jo,Bh,Oh,xh,Hh,Sn,nM,je,kh,rM,Re,Ge,On,Wh,Yo,wh,Qo,iM,An,oM,aM,sM,zh,Rh,uM,Ch,cM,lM,fM,Ph,Lr,Nr,Lh,Nh,Kh,jh=se(()=>{"use strict";Dh=ee(Ih()),Mh=ee(rr()),Fh=ee(Sh());xe();$o();Sr();qh=ee(vt()),{MOUSE_CLICK:MD,MOUSE_SECOND_CLICK:FD,MOUSE_DOWN:qD,MOUSE_UP:GD,MOUSE_OVER:XD,MOUSE_OUT:VD,DROPDOWN_CLOSE:UD,DROPDOWN_OPEN:BD,SLIDER_ACTIVE:HD,SLIDER_INACTIVE:kD,TAB_ACTIVE:WD,TAB_INACTIVE:zD,NAVBAR_CLOSE:KD,NAVBAR_OPEN:jD,MOUSE_MOVE:YD,PAGE_SCROLL_DOWN:Gh,SCROLL_INTO_VIEW:Xh,SCROLL_OUT_OF_VIEW:QD,PAGE_SCROLL_UP:$D,SCROLLING_IN_VIEW:ZD,PAGE_FINISH:Vh,ECOMMERCE_CART_CLOSE:JD,ECOMMERCE_CART_OPEN:eM,PAGE_START:Uh,PAGE_SCROLL:tM}=Fe,jo="COMPONENT_ACTIVE",Bh="COMPONENT_INACTIVE",{COLON_DELIMITER:Oh}=me,{getNamespacedParameterId:xh}=qh.IX2VanillaUtils,Hh=e=>t=>typeof t=="object"&&e(t)?!0:t,Sn=Hh(({element:e,nativeEvent:t})=>e===t.target),nM=Hh(({element:e,nativeEvent:t})=>e.contains(t.target)),je=(0,Dh.default)([Sn,nM]),kh=(e,t)=>{if(t){let{ixData:n}=e.getState(),{events:r}=n,i=r[t];if(i&&!iM[i.eventTypeId])return i}return null},rM=({store:e,event:t})=>{let{action:n}=t,{autoStopEventId:r}=n.config;return!!kh(e,r)},Re=({store:e,event:t,element:n,eventStateKey:r},i)=>{let{action:o,id:a}=t,{actionListId:s,autoStopEventId:u}=o.config,l=kh(e,u);return l&&Kt({store:e,eventId:u,eventTarget:n,eventStateKey:u+Oh+r.split(Oh)[1],actionListId:(0,Mh.default)(l,"action.config.actionListId")}),Kt({store:e,eventId:a,eventTarget:n,eventStateKey:r,actionListId:s}),xn({store:e,eventId:a,eventTarget:n,eventStateKey:r,actionListId:s}),i},Ge=(e,t)=>(n,r)=>e(n,r)===!0?t(n,r):r,On={handler:Ge(je,Re)},Wh={...On,types:[jo,Bh].join(" ")},Yo=[{target:window,types:"resize orientationchange",throttle:!0},{target:document,types:"scroll wheel readystatechange IX2_PAGE_UPDATE",throttle:!0}],wh="mouseover mouseout",Qo={types:Yo},iM={PAGE_START:Uh,PAGE_FINISH:Vh},An=(()=>{let e=window.pageXOffset!==void 0,n=document.compatMode==="CSS1Compat"?document.documentElement:document.body;return()=>({scrollLeft:e?window.pageXOffset:n.scrollLeft,scrollTop:e?window.pageYOffset:n.scrollTop,stiffScrollTop:(0,Fh.default)(e?window.pageYOffset:n.scrollTop,0,n.scrollHeight-window.innerHeight),scrollWidth:n.scrollWidth,scrollHeight:n.scrollHeight,clientWidth:n.clientWidth,clientHeight:n.clientHeight,innerWidth:window.innerWidth,innerHeight:window.innerHeight})})(),oM=(e,t)=>!(e.left>t.right||e.rightt.bottom||e.bottom{let{type:n,target:r,relatedTarget:i}=t,o=e.contains(r);if(n==="mouseover"&&o)return!0;let a=e.contains(i);return!!(n==="mouseout"&&o&&a)},sM=e=>{let{element:t,event:{config:n}}=e,{clientWidth:r,clientHeight:i}=An(),o=n.scrollOffsetValue,u=n.scrollOffsetUnit==="PX"?o:i*(o||0)/100;return oM(t.getBoundingClientRect(),{left:0,top:u,right:r,bottom:i-u})},zh=e=>(t,n)=>{let{type:r}=t.nativeEvent,i=[jo,Bh].indexOf(r)!==-1?r===jo:n.isActive,o={...n,isActive:i};return(!n||o.isActive!==n.isActive)&&e(t,o)||o},Rh=e=>(t,n)=>{let r={elementHovered:aM(t)};return(n?r.elementHovered!==n.elementHovered:r.elementHovered)&&e(t,r)||r},uM=e=>(t,n)=>{let r={...n,elementVisible:sM(t)};return(n?r.elementVisible!==n.elementVisible:r.elementVisible)&&e(t,r)||r},Ch=e=>(t,n={})=>{let{stiffScrollTop:r,scrollHeight:i,innerHeight:o}=An(),{event:{config:a,eventTypeId:s}}=t,{scrollOffsetValue:u,scrollOffsetUnit:l}=a,y=l==="PX",g=i-o,d=Number((r/g).toFixed(2));if(n&&n.percentTop===d)return n;let h=(y?u:o*(u||0)/100)/g,T,_,S=0;n&&(T=d>n.percentTop,_=n.scrollingDown!==T,S=_?d:n.anchorTop);let m=s===Gh?d>=S+h:d<=S-h,x={...n,percentTop:d,inBounds:m,anchorTop:S,scrollingDown:T};return n&&m&&(_||x.inBounds!==n.inBounds)&&e(t,x)||x},cM=(e,t)=>e.left>t.left&&e.leftt.top&&e.top(t,n)=>{let r={finished:document.readyState==="complete"};return r.finished&&!(n&&n.finshed)&&e(t),r},fM=e=>(t,n)=>{let r={started:!0};return n||e(t),r},Ph=e=>(t,n={clickCount:0})=>{let r={clickCount:n.clickCount%2+1};return r.clickCount!==n.clickCount&&e(t,r)||r},Lr=(e=!0)=>({...Wh,handler:Ge(e?je:Sn,zh((t,n)=>n.isActive?On.handler(t,n):n))}),Nr=(e=!0)=>({...Wh,handler:Ge(e?je:Sn,zh((t,n)=>n.isActive?n:On.handler(t,n)))}),Lh={...Qo,handler:uM((e,t)=>{let{elementVisible:n}=t,{event:r,store:i}=e,{ixData:o}=i.getState(),{events:a}=o;return!a[r.action.config.autoStopEventId]&&t.triggered?t:r.eventTypeId===Xh===n?(Re(e),{...t,triggered:!0}):t})},Nh=.05,Kh={[HD]:Lr(),[kD]:Nr(),[BD]:Lr(),[UD]:Nr(),[jD]:Lr(!1),[KD]:Nr(!1),[WD]:Lr(),[zD]:Nr(),[eM]:{types:"ecommerce-cart-open",handler:Ge(je,Re)},[JD]:{types:"ecommerce-cart-close",handler:Ge(je,Re)},[MD]:{types:"click",handler:Ge(je,Ph((e,{clickCount:t})=>{rM(e)?t===1&&Re(e):Re(e)}))},[FD]:{types:"click",handler:Ge(je,Ph((e,{clickCount:t})=>{t===2&&Re(e)}))},[qD]:{...On,types:"mousedown"},[GD]:{...On,types:"mouseup"},[XD]:{types:wh,handler:Ge(je,Rh((e,t)=>{t.elementHovered&&Re(e)}))},[VD]:{types:wh,handler:Ge(je,Rh((e,t)=>{t.elementHovered||Re(e)}))},[YD]:{types:"mousemove mouseout scroll",handler:({store:e,element:t,eventConfig:n,nativeEvent:r,eventStateKey:i},o={clientX:0,clientY:0,pageX:0,pageY:0})=>{let{basedOn:a,selectedAxis:s,continuousParameterGroupId:u,reverse:l,restingState:y=0}=n,{clientX:g=o.clientX,clientY:d=o.clientY,pageX:h=o.pageX,pageY:T=o.pageY}=r,_=s==="X_AXIS",S=r.type==="mouseout",m=y/100,x=u,A=!1;switch(a){case ke.VIEWPORT:{m=_?Math.min(g,window.innerWidth)/window.innerWidth:Math.min(d,window.innerHeight)/window.innerHeight;break}case ke.PAGE:{let{scrollLeft:L,scrollTop:N,scrollWidth:R,scrollHeight:G}=An();m=_?Math.min(L+h,R)/R:Math.min(N+T,G)/G;break}case ke.ELEMENT:default:{x=xh(i,u);let L=r.type.indexOf("mouse")===0;if(L&&je({element:t,nativeEvent:r})!==!0)break;let N=t.getBoundingClientRect(),{left:R,top:G,width:X,height:U}=N;if(!L&&!cM({left:g,top:d},N))break;A=!0,m=_?(g-R)/X:(d-G)/U;break}}return S&&(m>1-Nh||m{let{continuousParameterGroupId:n,reverse:r}=t,{scrollTop:i,scrollHeight:o,clientHeight:a}=An(),s=i/(o-a);s=r?1-s:s,e.dispatch(Wt(n,s))}},[ZD]:{types:Yo,handler:({element:e,store:t,eventConfig:n,eventStateKey:r},i={scrollPercent:0})=>{let{scrollLeft:o,scrollTop:a,scrollWidth:s,scrollHeight:u,clientHeight:l}=An(),{basedOn:y,selectedAxis:g,continuousParameterGroupId:d,startsEntering:h,startsExiting:T,addEndOffset:_,addStartOffset:S,addOffsetValue:m=0,endOffsetValue:x=0}=n,A=g==="X_AXIS";if(y===ke.VIEWPORT){let L=A?o/s:a/u;return L!==i.scrollPercent&&t.dispatch(Wt(d,L)),{scrollPercent:L}}else{let L=xh(r,d),N=e.getBoundingClientRect(),R=(S?m:0)/100,G=(_?x:0)/100;R=h?R:1-R,G=T?G:1-G;let X=N.top+Math.min(N.height*R,l),k=N.top+N.height*G-X,z=Math.min(l+k,u),I=Math.min(Math.max(0,l-X),z)/z;return I!==i.scrollPercent&&t.dispatch(Wt(L,I)),{scrollPercent:I}}}},[Xh]:Lh,[QD]:Lh,[Gh]:{...Qo,handler:Ch((e,t)=>{t.scrollingDown&&Re(e)})},[$D]:{...Qo,handler:Ch((e,t)=>{t.scrollingDown||Re(e)})},[Vh]:{types:"readystatechange IX2_PAGE_UPDATE",handler:Ge(Sn,lM(Re))},[Uh]:{types:"readystatechange IX2_PAGE_UPDATE",handler:Ge(Sn,fM(Re))}}});var fE={};Oe(fE,{observeRequests:()=>PM,startActionGroup:()=>xn,startEngine:()=>Xr,stopActionGroup:()=>Kt,stopAllActionGroups:()=>uE,stopEngine:()=>Vr});function PM(e){mt({store:e,select:({ixRequest:t})=>t.preview,onChange:DM}),mt({store:e,select:({ixRequest:t})=>t.playback,onChange:MM}),mt({store:e,select:({ixRequest:t})=>t.stop,onChange:FM}),mt({store:e,select:({ixRequest:t})=>t.clear,onChange:qM})}function LM(e){mt({store:e,select:({ixSession:t})=>t.mediaQueryKey,onChange:()=>{Vr(e),iE({store:e,elementApi:Ae}),Xr({store:e,allowEvents:!0}),oE()}})}function NM(e,t){let n=mt({store:e,select:({ixSession:r})=>r.tick,onChange:r=>{t(r),n()}})}function DM({rawData:e,defer:t},n){let r=()=>{Xr({store:n,rawData:e,allowEvents:!0}),oE()};t?setTimeout(r,0):r()}function oE(){document.dispatchEvent(new CustomEvent("IX2_PAGE_UPDATE"))}function MM(e,t){let{actionTypeId:n,actionListId:r,actionItemId:i,eventId:o,allowEvents:a,immediate:s,testManual:u,verbose:l=!0}=e,{rawData:y}=e;if(r&&i&&y&&s){let g=y.actionLists[r];g&&(y=_M({actionList:g,actionItemId:i,rawData:y}))}if(Xr({store:t,rawData:y,allowEvents:a,testManual:u}),r&&n===Te.GENERAL_START_ACTION||Zo(n)){Kt({store:t,actionListId:r}),sE({store:t,actionListId:r,eventId:o});let g=xn({store:t,eventId:o,actionListId:r,immediate:s,verbose:l});l&&g&&t.dispatch(zt({actionListId:r,isPlaying:!s}))}}function FM({actionListId:e},t){e?Kt({store:t,actionListId:e}):uE({store:t}),Vr(t)}function qM(e,t){Vr(t),iE({store:t,elementApi:Ae})}function Xr({store:e,rawData:t,allowEvents:n,testManual:r}){let{ixSession:i}=e.getState();t&&e.dispatch(Ro(t)),i.active||(e.dispatch(Co({hasBoundaryNodes:!!document.querySelector(Mr),reducedMotion:document.body.hasAttribute("data-wf-ix-vacation")&&window.matchMedia("(prefers-reduced-motion)").matches})),n&&(HM(e),GM(),e.getState().ixSession.hasDefinedMediaQueries&&LM(e)),e.dispatch(Po()),XM(e,r))}function GM(){let{documentElement:e}=document;e.className.indexOf(Yh)===-1&&(e.className+=` ${Yh}`)}function XM(e,t){let n=r=>{let{ixSession:i,ixParameters:o}=e.getState();i.active&&(e.dispatch(br(r,o)),t?NM(e,n):requestAnimationFrame(n))};n(window.performance.now())}function Vr(e){let{ixSession:t}=e.getState();if(t.active){let{eventListeners:n}=t;n.forEach(VM),AM(),e.dispatch(Lo())}}function VM({target:e,listenerParams:t}){e.removeEventListener.apply(e,t)}function UM({store:e,eventStateKey:t,eventTarget:n,eventId:r,eventConfig:i,actionListId:o,parameterGroup:a,smoothing:s,restingValue:u}){let{ixData:l,ixSession:y}=e.getState(),{events:g}=l,d=g[r],{eventTypeId:h}=d,T={},_={},S=[],{continuousActionGroups:m}=a,{id:x}=a;IM(h,i)&&(x=TM(t,x));let A=y.hasBoundaryNodes&&n?bn(n,Mr):null;m.forEach(L=>{let{keyframe:N,actionItems:R}=L;R.forEach(G=>{let{actionTypeId:X}=G,{target:U}=G.config;if(!U)return;let k=U.boundaryMode?A:null,z=SM(U)+Jo+X;if(_[z]=BM(_[z],N,G),!T[z]){T[z]=!0;let{config:P}=G;Fr({config:P,event:d,eventTarget:n,elementRoot:k,elementApi:Ae}).forEach(I=>{S.push({element:I,key:z})})}})}),S.forEach(({element:L,key:N})=>{let R=_[N],G=(0,et.default)(R,"[0].actionItems[0]",{}),{actionTypeId:X}=G,k=(X===Te.PLUGIN_RIVE?(G.config?.target?.selectorGuids||[]).length===0:Gr(X))?ta(X)(L,G):null,z=ea({element:L,actionItem:G,elementApi:Ae},k);na({store:e,element:L,eventId:r,actionListId:o,actionItem:G,destination:z,continuous:!0,parameterId:x,actionGroups:R,smoothing:s,restingValue:u,pluginInstance:k})})}function BM(e=[],t,n){let r=[...e],i;return r.some((o,a)=>o.keyframe===t?(i=a,!0):!1),i==null&&(i=r.length,r.push({keyframe:t,actionItems:[]})),r[i].actionItems.push(n),r}function HM(e){let{ixData:t}=e.getState(),{eventTypeMap:n}=t;aE(e),(0,jt.default)(n,(i,o)=>{let a=Kh[o];if(!a){console.warn(`IX2 event type not configured: ${o}`);return}YM({logic:a,store:e,events:i})});let{ixSession:r}=e.getState();r.eventListeners.length&&WM(e)}function WM(e){let t=()=>{aE(e)};kM.forEach(n=>{window.addEventListener(n,t),e.dispatch(Tr(window,[n,t]))}),t()}function aE(e){let{ixSession:t,ixData:n}=e.getState(),r=window.innerWidth;if(r!==t.viewportWidth){let{mediaQueries:i}=n;e.dispatch(qo({width:r,mediaQueries:i}))}}function YM({logic:e,store:t,events:n}){QM(n);let{types:r,handler:i}=e,{ixData:o}=t.getState(),{actionLists:a}=o,s=zM(n,jM);if(!(0,Zh.default)(s))return;(0,jt.default)(s,(g,d)=>{let h=n[d],{action:T,id:_,mediaQueries:S=o.mediaQueryKeys}=h,{actionListId:m}=T.config;OM(S,o.mediaQueryKeys)||t.dispatch(Go()),T.actionTypeId===Te.GENERAL_CONTINUOUS_ACTION&&(Array.isArray(h.config)?h.config:[h.config]).forEach(A=>{let{continuousParameterGroupId:L}=A,N=(0,et.default)(a,`${m}.continuousParameterGroups`,[]),R=(0,$h.default)(N,({id:U})=>U===L),G=(A.smoothing||0)/100,X=(A.restingState||0)/100;R&&g.forEach((U,k)=>{let z=_+Jo+k;UM({store:t,eventStateKey:z,eventTarget:U,eventId:_,eventConfig:A,actionListId:m,parameterGroup:R,smoothing:G,restingValue:X})})}),(T.actionTypeId===Te.GENERAL_START_ACTION||Zo(T.actionTypeId))&&sE({store:t,actionListId:m,eventId:_})});let u=g=>{let{ixSession:d}=t.getState();KM(s,(h,T,_)=>{let S=n[T],m=d.eventState[_],{action:x,mediaQueries:A=o.mediaQueryKeys}=S;if(!qr(A,d.mediaQueryKey))return;let L=(N={})=>{let R=i({store:t,element:h,event:S,eventConfig:N,nativeEvent:g,eventStateKey:_},m);xM(R,m)||t.dispatch(No(_,R))};x.actionTypeId===Te.GENERAL_CONTINUOUS_ACTION?(Array.isArray(S.config)?S.config:[S.config]).forEach(L):L()})},l=(0,nE.default)(u,CM),y=({target:g=document,types:d,throttle:h})=>{d.split(" ").filter(Boolean).forEach(T=>{let _=h?l:u;g.addEventListener(T,_),t.dispatch(Tr(g,[T,_]))})};Array.isArray(r)?r.forEach(y):typeof r=="string"&&y(e)}function QM(e){if(!RM)return;let t={},n="";for(let r in e){let{eventTypeId:i,target:o}=e[r],a=Vo(o);t[a]||(i===Fe.MOUSE_CLICK||i===Fe.MOUSE_SECOND_CLICK)&&(t[a]=!0,n+=a+"{cursor: pointer;touch-action: manipulation;}")}if(n){let r=document.createElement("style");r.textContent=n,document.body.appendChild(r)}}function sE({store:e,actionListId:t,eventId:n}){let{ixData:r,ixSession:i}=e.getState(),{actionLists:o,events:a}=r,s=a[n],u=o[t];if(u&&u.useFirstGroupAsInitialState){let l=(0,et.default)(u,"actionItemGroups[0].actionItems",[]),y=(0,et.default)(s,"mediaQueries",r.mediaQueryKeys);if(!qr(y,i.mediaQueryKey))return;l.forEach(g=>{let{config:d,actionTypeId:h}=g,T=d?.target?.useEventTarget===!0&&d?.target?.objectId==null?{target:s.target,targets:s.targets}:d,_=Fr({config:T,event:s,elementApi:Ae}),S=Gr(h);_.forEach(m=>{let x=S?ta(h)(m,g):null;na({destination:ea({element:m,actionItem:g,elementApi:Ae},x),immediate:!0,store:e,element:m,eventId:n,actionItem:g,actionListId:t,pluginInstance:x})})})}}function uE({store:e}){let{ixInstances:t}=e.getState();(0,jt.default)(t,n=>{if(!n.continuous){let{actionListId:r,verbose:i}=n;ra(n,e),i&&e.dispatch(zt({actionListId:r,isPlaying:!1}))}})}function Kt({store:e,eventId:t,eventTarget:n,eventStateKey:r,actionListId:i}){let{ixInstances:o,ixSession:a}=e.getState(),s=a.hasBoundaryNodes&&n?bn(n,Mr):null;(0,jt.default)(o,u=>{let l=(0,et.default)(u,"actionItem.config.target.boundaryMode"),y=r?u.eventStateKey===r:!0;if(u.actionListId===i&&u.eventId===t&&y){if(s&&l&&!Uo(s,u.element))return;ra(u,e),u.verbose&&e.dispatch(zt({actionListId:i,isPlaying:!1}))}})}function xn({store:e,eventId:t,eventTarget:n,eventStateKey:r,actionListId:i,groupIndex:o=0,immediate:a,verbose:s}){let{ixData:u,ixSession:l}=e.getState(),{events:y}=u,g=y[t]||{},{mediaQueries:d=u.mediaQueryKeys}=g,h=(0,et.default)(u,`actionLists.${i}`,{}),{actionItemGroups:T,useFirstGroupAsInitialState:_}=h;if(!T||!T.length)return!1;o>=T.length&&(0,et.default)(g,"config.loop")&&(o=0),o===0&&_&&o++;let m=(o===0||o===1&&_)&&Zo(g.action?.actionTypeId)?g.config.delay:void 0,x=(0,et.default)(T,[o,"actionItems"],[]);if(!x.length||!qr(d,l.mediaQueryKey))return!1;let A=l.hasBoundaryNodes&&n?bn(n,Mr):null,L=yM(x),N=!1;return x.forEach((R,G)=>{let{config:X,actionTypeId:U}=R,k=Gr(U),{target:z}=X;if(!z)return;let P=z.boundaryMode?A:null;Fr({config:X,event:g,eventTarget:n,elementRoot:P,elementApi:Ae}).forEach((C,V)=>{let F=k?ta(U)(C,R):null,K=k?wM(U)(C,R):null;N=!0;let j=L===G&&V===0,te=vM({element:C,actionItem:R}),ve=ea({element:C,actionItem:R,elementApi:Ae},F);na({store:e,element:C,actionItem:R,eventId:t,eventTarget:n,eventStateKey:r,actionListId:i,groupIndex:o,isCarrier:j,computedStyle:te,destination:ve,immediate:a,verbose:s,pluginInstance:F,pluginDuration:K,instanceDelay:m})})}),N}function na(e){let{store:t,computedStyle:n,...r}=e,{element:i,actionItem:o,immediate:a,pluginInstance:s,continuous:u,restingValue:l,eventId:y}=r,g=!u,d=hM(),{ixElements:h,ixSession:T,ixData:_}=t.getState(),S=gM(h,i),{refState:m}=h[S]||{},x=Bo(i),A=T.reducedMotion&&hi[o.actionTypeId],L;if(A&&u)switch(_.events[y]?.eventTypeId){case Fe.MOUSE_MOVE:case Fe.MOUSE_MOVE_IN_VIEWPORT:L=l;break;default:L=.5;break}let N=mM(i,m,n,o,Ae,s);if(t.dispatch(Do({instanceId:d,elementId:S,origin:N,refType:x,skipMotion:A,skipToValue:L,...r})),cE(document.body,"ix2-animation-started",d),a){$M(t,d);return}mt({store:t,select:({ixInstances:R})=>R[d],onChange:lE}),g&&t.dispatch(Ar(d,T.tick))}function ra(e,t){cE(document.body,"ix2-animation-stopping",{instanceId:e.id,state:t.getState()});let{elementId:n,actionItem:r}=e,{ixElements:i}=t.getState(),{ref:o,refType:a}=i[n]||{};a===rE&&bM(o,r,Ae),t.dispatch(Mo(e.id))}function cE(e,t,n){let r=document.createEvent("CustomEvent");r.initCustomEvent(t,!0,!0,n),e.dispatchEvent(r)}function $M(e,t){let{ixParameters:n}=e.getState();e.dispatch(Ar(t,0)),e.dispatch(br(performance.now(),n));let{ixInstances:r}=e.getState();lE(r[t],e)}function lE(e,t){let{active:n,continuous:r,complete:i,elementId:o,actionItem:a,actionTypeId:s,renderType:u,current:l,groupIndex:y,eventId:g,eventTarget:d,eventStateKey:h,actionListId:T,isCarrier:_,styleProp:S,verbose:m,pluginInstance:x}=e,{ixData:A,ixSession:L}=t.getState(),{events:N}=A,R=N&&N[g]?N[g]:{},{mediaQueries:G=A.mediaQueryKeys}=R;if(qr(G,L.mediaQueryKey)&&(r||n||i)){if(l||u===pM&&i){t.dispatch(Fo(o,s,l,a));let{ixElements:X}=t.getState(),{ref:U,refType:k,refState:z}=X[o]||{},P=z&&z[s];(k===rE||Gr(s))&&EM(U,z,P,g,a,S,Ae,u,x)}if(i){if(_){let X=xn({store:t,eventId:g,eventTarget:d,eventStateKey:h,actionListId:T,groupIndex:y+1,verbose:m});m&&!X&&t.dispatch(zt({actionListId:T,isPlaying:!1}))}ra(e,t)}}}var $h,et,Zh,Jh,eE,tE,jt,nE,Dr,dM,Zo,Jo,Mr,rE,pM,Yh,Fr,gM,ea,mt,hM,EM,iE,yM,vM,mM,_M,IM,TM,qr,bM,AM,SM,OM,xM,Gr,ta,wM,Qh,RM,CM,kM,zM,KM,jM,$o=se(()=>{"use strict";$h=ee(ki()),et=ee(rr()),Zh=ee(Ap()),Jh=ee(Qp()),eE=ee(Zp()),tE=ee(eg()),jt=ee(ag()),nE=ee(pg());xe();Dr=ee(vt());Sr();mg();jh();dM=Object.keys(Mn),Zo=e=>dM.includes(e),{COLON_DELIMITER:Jo,BOUNDARY_SELECTOR:Mr,HTML_ELEMENT:rE,RENDER_GENERAL:pM,W_MOD_IX:Yh}=me,{getAffectedElements:Fr,getElementId:gM,getDestinationValues:ea,observeStore:mt,getInstanceId:hM,renderHTMLElement:EM,clearAllStyles:iE,getMaxDurationItemIndex:yM,getComputedStyle:vM,getInstanceOrigin:mM,reduceListToGroup:_M,shouldNamespaceEventParameter:IM,getNamespacedParameterId:TM,shouldAllowMediaQuery:qr,cleanupHTMLElement:bM,clearObjectCache:AM,stringifyTarget:SM,mediaQueriesEqual:OM,shallowEqual:xM}=Dr.IX2VanillaUtils,{isPluginType:Gr,createPluginInstance:ta,getPluginDuration:wM}=Dr.IX2VanillaPlugins,Qh=navigator.userAgent,RM=Qh.match(/iPad/i)||Qh.match(/iPhone/),CM=12;kM=["resize","orientationchange"];zM=(e,t)=>(0,Jh.default)((0,tE.default)(e,t),eE.default),KM=(e,t)=>{(0,jt.default)(e,(n,r)=>{n.forEach((i,o)=>{let a=r+Jo+o;t(i,r,a)})})},jM=e=>{let t={target:e.target,targets:e.targets};return Fr({config:t,elementApi:Ae})}});var gE=f(oa=>{"use strict";Object.defineProperty(oa,"__esModule",{value:!0});function ZM(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}ZM(oa,{actions:function(){return tF},destroy:function(){return pE},init:function(){return oF},setEnv:function(){return iF},store:function(){return Ur}});var JM=di(),eF=nF((op(),Ue(ip))),ia=($o(),Ue(fE)),tF=rF((Sr(),Ue(hg)));function nF(e){return e&&e.__esModule?e:{default:e}}function dE(e){if(typeof WeakMap!="function")return null;var t=new WeakMap,n=new WeakMap;return(dE=function(r){return r?n:t})(e)}function rF(e,t){if(!t&&e&&e.__esModule)return e;if(e===null||typeof e!="object"&&typeof e!="function")return{default:e};var n=dE(t);if(n&&n.has(e))return n.get(e);var r={__proto__:null},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if(o!=="default"&&Object.prototype.hasOwnProperty.call(e,o)){var a=i?Object.getOwnPropertyDescriptor(e,o):null;a&&(a.get||a.set)?Object.defineProperty(r,o,a):r[o]=e[o]}return r.default=e,n&&n.set(e,r),r}var Ur=(0,JM.createStore)(eF.default);function iF(e){e()&&(0,ia.observeRequests)(Ur)}function oF(e){pE(),(0,ia.startEngine)({store:Ur,rawData:e,allowEvents:!0})}function pE(){(0,ia.stopEngine)(Ur)}});var vE=f((iX,yE)=>{"use strict";var hE=Ye(),EE=gE();EE.setEnv(hE.env);hE.define("ix2",yE.exports=function(){return EE})});var _E=f((oX,mE)=>{"use strict";var Yt=Ye();Yt.define("links",mE.exports=function(e,t){var n={},r=e(window),i,o=Yt.env(),a=window.location,s=document.createElement("a"),u="w--current",l=/index\.(html|php)$/,y=/\/$/,g,d;n.ready=n.design=n.preview=h;function h(){i=o&&Yt.env("design"),d=Yt.env("slug")||a.pathname||"",Yt.scroll.off(_),g=[];for(var m=document.links,x=0;x=0)){var A=e(m);if(s.hash.length>1&&s.host+s.pathname===a.host+a.pathname){if(!/^#[a-zA-Z0-9\-\_]+$/.test(s.hash))return;var L=e(s.hash);L.length&&g.push({link:A,sec:L,active:!1});return}if(!(x==="#"||x==="")){var N=s.href===a.href||x===d||l.test(x)&&y.test(d);S(A,u,N)}}}}function _(){var m=r.scrollTop(),x=r.height();t.each(g,function(A){if(!A.link.attr("hreflang")){var L=A.link,N=A.sec,R=N.offset().top,G=N.outerHeight(),X=x*.5,U=N.is(":visible")&&R+G-X>=m&&R+X<=m+x;A.active!==U&&(A.active=U,S(L,u,U))}})}function S(m,x,A){var L=m.hasClass(x);A&&L||!A&&!L||(A?m.addClass(x):m.removeClass(x))}return n})});var TE=f((aX,IE)=>{"use strict";var Br=Ye();Br.define("scroll",IE.exports=function(e){var t={WF_CLICK_EMPTY:"click.wf-empty-link",WF_CLICK_SCROLL:"click.wf-scroll"},n=window.location,r=T()?null:window.history,i=e(window),o=e(document),a=e(document.body),s=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(P){window.setTimeout(P,15)},u=Br.env("editor")?".w-editor-body":"body",l="header, "+u+" > .header, "+u+" > .w-nav:not([data-no-scroll])",y='a[href="#"]',g='a[href*="#"]:not(.w-tab-link):not('+y+")",d='.wf-force-outline-none[tabindex="-1"]:focus{outline:none;}',h=document.createElement("style");h.appendChild(document.createTextNode(d));function T(){try{return!!window.frameElement}catch{return!0}}var _=/^#[a-zA-Z0-9][\w:.-]*$/;function S(P){return _.test(P.hash)&&P.host+P.pathname===n.host+n.pathname}let m=typeof window.matchMedia=="function"&&window.matchMedia("(prefers-reduced-motion: reduce)");function x(){return document.body.getAttribute("data-wf-scroll-motion")==="none"||m.matches}function A(P,I){var C;switch(I){case"add":C=P.attr("tabindex"),C?P.attr("data-wf-tabindex-swap",C):P.attr("tabindex","-1");break;case"remove":C=P.attr("data-wf-tabindex-swap"),C?(P.attr("tabindex",C),P.removeAttr("data-wf-tabindex-swap")):P.removeAttr("tabindex");break}P.toggleClass("wf-force-outline-none",I==="add")}function L(P){var I=P.currentTarget;if(!(Br.env("design")||window.$.mobile&&/(?:^|\s)ui-link(?:$|\s)/.test(I.className))){var C=S(I)?I.hash:"";if(C!==""){var V=e(C);V.length&&(P&&(P.preventDefault(),P.stopPropagation()),N(C,P),window.setTimeout(function(){R(V,function(){A(V,"add"),V.get(0).focus({preventScroll:!0}),A(V,"remove")})},P?0:300))}}}function N(P){if(n.hash!==P&&r&&r.pushState&&!(Br.env.chrome&&n.protocol==="file:")){var I=r.state&&r.state.hash;I!==P&&r.pushState({hash:P},"",P)}}function R(P,I){var C=i.scrollTop(),V=G(P);if(C!==V){var F=X(P,C,V),K=Date.now(),j=function(){var te=Date.now()-K;window.scroll(0,U(C,V,te,F)),te<=F?s(j):typeof I=="function"&&I()};s(j)}}function G(P){var I=e(l),C=I.css("position")==="fixed"?I.outerHeight():0,V=P.offset().top-C;if(P.data("scroll")==="mid"){var F=i.height()-C,K=P.outerHeight();K=0&&(V=j)}),(472.143*Math.log(Math.abs(I-C)+125)-2e3)*V}function U(P,I,C,V){return C>V?I:P+(I-P)*k(C/V)}function k(P){return P<.5?4*P*P*P:(P-1)*(2*P-2)*(2*P-2)+1}function z(){var{WF_CLICK_EMPTY:P,WF_CLICK_SCROLL:I}=t;o.on(I,g,L),o.on(P,y,function(C){C.preventDefault()}),document.head.insertBefore(h,document.head.firstChild)}return{ready:z}})});var AE=f((sX,bE)=>{"use strict";var aF=Ye();aF.define("touch",bE.exports=function(e){var t={},n=window.getSelection;e.event.special.tap={bindType:"click",delegateType:"click"},t.init=function(o){return o=typeof o=="string"?e(o).get(0):o,o?new r(o):null};function r(o){var a=!1,s=!1,u=Math.min(Math.round(window.innerWidth*.04),40),l,y;o.addEventListener("touchstart",g,!1),o.addEventListener("touchmove",d,!1),o.addEventListener("touchend",h,!1),o.addEventListener("touchcancel",T,!1),o.addEventListener("mousedown",g,!1),o.addEventListener("mousemove",d,!1),o.addEventListener("mouseup",h,!1),o.addEventListener("mouseout",T,!1);function g(S){var m=S.touches;m&&m.length>1||(a=!0,m?(s=!0,l=m[0].clientX):l=S.clientX,y=l)}function d(S){if(a){if(s&&S.type==="mousemove"){S.preventDefault(),S.stopPropagation();return}var m=S.touches,x=m?m[0].clientX:S.clientX,A=x-y;y=x,Math.abs(A)>u&&n&&String(n())===""&&(i("swipe",S,{direction:A>0?"right":"left"}),T())}}function h(S){if(a&&(a=!1,s&&S.type==="mouseup")){S.preventDefault(),S.stopPropagation(),s=!1;return}}function T(){a=!1}function _(){o.removeEventListener("touchstart",g,!1),o.removeEventListener("touchmove",d,!1),o.removeEventListener("touchend",h,!1),o.removeEventListener("touchcancel",T,!1),o.removeEventListener("mousedown",g,!1),o.removeEventListener("mousemove",d,!1),o.removeEventListener("mouseup",h,!1),o.removeEventListener("mouseout",T,!1),o=null}this.destroy=_}function i(o,a,s){var u=e.Event(o,{originalEvent:a});e(a.target).trigger(u,s)}return t.instance=t.init(document),t})});var OE=f((uX,SE)=>{"use strict";var ut=Ye(),sF=Qr(),ye={ARROW_LEFT:37,ARROW_UP:38,ARROW_RIGHT:39,ARROW_DOWN:40,ESCAPE:27,SPACE:32,ENTER:13,HOME:36,END:35};ut.define("navbar",SE.exports=function(e,t){var n={},r=e.tram,i=e(window),o=e(document),a=t.debounce,s,u,l,y,g=ut.env(),d='
',h=".w-nav",T="w--open",_="w--nav-dropdown-open",S="w--nav-dropdown-toggle-open",m="w--nav-dropdown-list-open",x="w--nav-link-open",A=sF.triggers,L=e();n.ready=n.design=n.preview=N,n.destroy=function(){L=e(),R(),u&&u.length&&u.each(k)};function N(){l=g&&ut.env("design"),y=ut.env("editor"),s=e(document.body),u=o.find(h),u.length&&(u.each(U),R(),G())}function R(){ut.resize.off(X)}function G(){ut.resize.on(X)}function X(){u.each(Y)}function U(p,M){var B=e(M),q=e.data(M,h);q||(q=e.data(M,h,{open:!1,el:B,config:{},selectedIdx:-1})),q.menu=B.find(".w-nav-menu"),q.links=q.menu.find(".w-nav-link"),q.dropdowns=q.menu.find(".w-dropdown"),q.dropdownToggle=q.menu.find(".w-dropdown-toggle"),q.dropdownList=q.menu.find(".w-dropdown-list"),q.button=B.find(".w-nav-button"),q.container=B.find(".w-container"),q.overlayContainerId="w-nav-overlay-"+p,q.outside=Xe(q);var ue=B.find(".w-nav-brand");ue&&ue.attr("href")==="/"&&ue.attr("aria-label")==null&&ue.attr("aria-label","home"),q.button.attr("style","-webkit-user-select: text;"),q.button.attr("aria-label")==null&&q.button.attr("aria-label","menu"),q.button.attr("role","button"),q.button.attr("tabindex","0"),q.button.attr("aria-controls",q.overlayContainerId),q.button.attr("aria-haspopup","menu"),q.button.attr("aria-expanded","false"),q.el.off(h),q.button.off(h),q.menu.off(h),I(q),l?(z(q),q.el.on("setting"+h,C(q))):(P(q),q.button.on("click"+h,te(q)),q.menu.on("click"+h,"a",ve(q)),q.button.on("keydown"+h,V(q)),q.el.on("keydown"+h,F(q))),Y(p,M)}function k(p,M){var B=e.data(M,h);B&&(z(B),e.removeData(M,h))}function z(p){p.overlay&&(oe(p,!0),p.overlay.remove(),p.overlay=null)}function P(p){p.overlay||(p.overlay=e(d).appendTo(p.el),p.overlay.attr("id",p.overlayContainerId),p.parent=p.menu.parent(),oe(p,!0))}function I(p){var M={},B=p.config||{},q=M.animation=p.el.attr("data-animation")||"default";M.animOver=/^over/.test(q),M.animDirect=/left$/.test(q)?-1:1,B.animation!==q&&p.open&&t.defer(j,p),M.easing=p.el.attr("data-easing")||"ease",M.easing2=p.el.attr("data-easing2")||"ease";var ue=p.el.attr("data-duration");M.duration=ue!=null?Number(ue):400,M.docHeight=p.el.attr("data-doc-height"),p.config=M}function C(p){return function(M,B){B=B||{};var q=i.width();I(p),B.open===!0&&tt(p,!0),B.open===!1&&oe(p,!0),p.open&&t.defer(function(){q!==i.width()&&j(p)})}}function V(p){return function(M){switch(M.keyCode){case ye.SPACE:case ye.ENTER:return te(p)(),M.preventDefault(),M.stopPropagation();case ye.ESCAPE:return oe(p),M.preventDefault(),M.stopPropagation();case ye.ARROW_RIGHT:case ye.ARROW_DOWN:case ye.HOME:case ye.END:return p.open?(M.keyCode===ye.END?p.selectedIdx=p.links.length-1:p.selectedIdx=0,K(p),M.preventDefault(),M.stopPropagation()):(M.preventDefault(),M.stopPropagation())}}}function F(p){return function(M){if(p.open)switch(p.selectedIdx=p.links.index(document.activeElement),M.keyCode){case ye.HOME:case ye.END:return M.keyCode===ye.END?p.selectedIdx=p.links.length-1:p.selectedIdx=0,K(p),M.preventDefault(),M.stopPropagation();case ye.ESCAPE:return oe(p),p.button.focus(),M.preventDefault(),M.stopPropagation();case ye.ARROW_LEFT:case ye.ARROW_UP:return p.selectedIdx=Math.max(-1,p.selectedIdx-1),K(p),M.preventDefault(),M.stopPropagation();case ye.ARROW_RIGHT:case ye.ARROW_DOWN:return p.selectedIdx=Math.min(p.links.length-1,p.selectedIdx+1),K(p),M.preventDefault(),M.stopPropagation()}}}function K(p){if(p.links[p.selectedIdx]){var M=p.links[p.selectedIdx];M.focus(),ve(M)}}function j(p){p.open&&(oe(p,!0),tt(p,!0))}function te(p){return a(function(){p.open?oe(p):tt(p)})}function ve(p){return function(M){var B=e(this),q=B.attr("href");if(!ut.validClick(M.currentTarget)){M.preventDefault();return}q&&q.indexOf("#")===0&&p.open&&oe(p)}}function Xe(p){return p.outside&&o.off("click"+h,p.outside),function(M){var B=e(M.target);y&&B.closest(".w-editor-bem-EditorOverlay").length||ge(p,B)}}var ge=a(function(p,M){if(p.open){var B=M.closest(".w-nav-menu");p.menu.is(B)||oe(p)}});function Y(p,M){var B=e.data(M,h),q=B.collapsed=B.button.css("display")!=="none";if(B.open&&!q&&!l&&oe(B,!0),B.container.length){var ue=ct(B);B.links.each(ue),B.dropdowns.each(ue)}B.open&&Qt(B)}var he="max-width";function ct(p){var M=p.container.css(he);return M==="none"&&(M=""),function(B,q){q=e(q),q.css(he,""),q.css(he)==="none"&&q.css(he,M)}}function _t(p,M){M.setAttribute("data-nav-menu-open","")}function lt(p,M){M.removeAttribute("data-nav-menu-open")}function tt(p,M){if(p.open)return;p.open=!0,p.menu.each(_t),p.links.addClass(x),p.dropdowns.addClass(_),p.dropdownToggle.addClass(S),p.dropdownList.addClass(m),p.button.addClass(T);var B=p.config,q=B.animation;(q==="none"||!r.support.transform||B.duration<=0)&&(M=!0);var ue=Qt(p),$t=p.menu.outerHeight(!0),ft=p.menu.outerWidth(!0),c=p.el.height(),E=p.el[0];if(Y(0,E),A.intro(0,E),ut.redraw.up(),l||o.on("click"+h,p.outside),M){w();return}var v="transform "+B.duration+"ms "+B.easing;if(p.overlay&&(L=p.menu.prev(),p.overlay.show().append(p.menu)),B.animOver){r(p.menu).add(v).set({x:B.animDirect*ft,height:ue}).start({x:0}).then(w),p.overlay&&p.overlay.width(ft);return}var b=c+$t;r(p.menu).add(v).set({y:-b}).start({y:0}).then(w);function w(){p.button.attr("aria-expanded","true")}}function Qt(p){var M=p.config,B=M.docHeight?o.height():s.height();return M.animOver?p.menu.height(B):p.el.css("position")!=="fixed"&&(B-=p.el.outerHeight(!0)),p.overlay&&p.overlay.height(B),B}function oe(p,M){if(!p.open)return;p.open=!1,p.button.removeClass(T);var B=p.config;if((B.animation==="none"||!r.support.transform||B.duration<=0)&&(M=!0),A.outro(0,p.el[0]),o.off("click"+h,p.outside),M){r(p.menu).stop(),E();return}var q="transform "+B.duration+"ms "+B.easing2,ue=p.menu.outerHeight(!0),$t=p.menu.outerWidth(!0),ft=p.el.height();if(B.animOver){r(p.menu).add(q).start({x:$t*B.animDirect}).then(E);return}var c=ft+ue;r(p.menu).add(q).start({y:-c}).then(E);function E(){p.menu.height(""),r(p.menu).set({x:0,y:0}),p.menu.each(lt),p.links.removeClass(x),p.dropdowns.removeClass(_),p.dropdownToggle.removeClass(S),p.dropdownList.removeClass(m),p.overlay&&p.overlay.children().length&&(L.length?p.menu.insertAfter(L):p.menu.prependTo(p.parent),p.overlay.attr("style","").hide()),p.el.triggerHandler("w-close"),p.button.attr("aria-expanded","false")}}return n})});ma();Ia();Aa();Qr();vE();_E();TE();AE();OE();})(); +/*! +* tram.js v0.8.2-global +* Cross-browser CSS3 transitions in JavaScript +* https://github.com/bkwld/tram +* MIT License +*/ +/*! + * Webflow._ (aka) Underscore.js 1.6.0 (custom build) + * + * http://underscorejs.org + * (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + * Underscore may be freely distributed under the MIT license. + * @license MIT + */ +/*! Bundled license information: + +timm/lib/timm.js: + (*! + * Timm + * + * Immutability helpers with fast reads and acceptable writes. + * + * @copyright Guillermo Grau Panea 2016 + * @license MIT + *) +*/ +/** + * ---------------------------------------------------------------------- + * Webflow: Interactions 2.0: Init + */ +Webflow.require('ix2').init( +{"events":{"e-7":{"id":"e-7","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInRight","autoStopEventId":"e-8"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|ff86fc87-0267-ba35-6eb7-9f9d4f6cd420","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|ff86fc87-0267-ba35-6eb7-9f9d4f6cd420","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":600,"direction":"RIGHT","effectIn":true},"createdOn":1725899039893},"e-45":{"id":"e-45","name":"","animationType":"custom","eventTypeId":"SCROLLING_IN_VIEW","action":{"id":"","actionTypeId":"GENERAL_CONTINUOUS_ACTION","config":{"actionListId":"a-3","affectedElements":{},"duration":0}},"mediaQueries":["main","medium","small","tiny"],"target":{"selector":".chaos-section","originalId":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334af","appliesTo":"CLASS"},"targets":[{"selector":".chaos-section","originalId":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334af","appliesTo":"CLASS"}],"config":[{"continuousParameterGroupId":"a-3-p","smoothing":50,"startsEntering":true,"addStartOffset":true,"addOffsetValue":60,"startsExiting":true,"addEndOffset":true,"endOffsetValue":60}],"createdOn":1727199941646},"e-48":{"id":"e-48","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-59"}},"mediaQueries":["main","medium","small","tiny"],"target":{"selector":".value-block","originalId":"66d0c3b907c439cd2788c449|d3bbc3d9-3d4b-cd0e-ea32-12fc1b622b94","appliesTo":"CLASS"},"targets":[{"selector":".value-block","originalId":"66d0c3b907c439cd2788c449|d3bbc3d9-3d4b-cd0e-ea32-12fc1b622b94","appliesTo":"CLASS"}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":300,"direction":"BOTTOM","effectIn":true},"createdOn":1720774015683},"e-51":{"id":"e-51","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-54"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|95d19cf3-e585-e146-8a2e-637065a6adf8","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|95d19cf3-e585-e146-8a2e-637065a6adf8","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1726611567562},"e-53":{"id":"e-53","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-58"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|95d19cf3-e585-e146-8a2e-637065a6ae05","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|95d19cf3-e585-e146-8a2e-637065a6ae05","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1726611567562},"e-80":{"id":"e-80","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-81"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|939ac8bd-b00c-26ca-a7c7-316db366c2fc","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|939ac8bd-b00c-26ca-a7c7-316db366c2fc","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1727214165114},"e-82":{"id":"e-82","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-83"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|8a1a8d7f-8b10-12c7-763b-c56b422f0e2d","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|8a1a8d7f-8b10-12c7-763b-c56b422f0e2d","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1727214324940},"e-90":{"id":"e-90","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-91"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|d0c2a2d2-7ad5-270c-b31f-495a535755fa","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|d0c2a2d2-7ad5-270c-b31f-495a535755fa","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1727294242463},"e-102":{"id":"e-102","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-103"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|b19e1602-4792-0207-cab4-b1382df2aa27","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|b19e1602-4792-0207-cab4-b1382df2aa27","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1727378117605},"e-110":{"id":"e-110","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-111"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|bf1f67d5-bdbb-fdb5-3642-e253fad37be4","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|bf1f67d5-bdbb-fdb5-3642-e253fad37be4","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":0,"direction":"BOTTOM","effectIn":true},"createdOn":1727804321492},"e-112":{"id":"e-112","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_EFFECT","instant":false,"config":{"actionListId":"growIn","autoStopEventId":"e-113"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|17f1c697-ca96-8716-6c01-14a839af3728","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|17f1c697-ca96-8716-6c01-14a839af3728","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":0,"direction":null,"effectIn":true},"createdOn":1727804366490},"e-116":{"id":"e-116","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-117"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|a74ed790-8feb-9d83-c889-f05f11e41d24","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|a74ed790-8feb-9d83-c889-f05f11e41d24","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":0,"direction":null,"effectIn":true},"createdOn":1727804415089},"e-120":{"id":"e-120","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-121"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|4eeb46ef-4c49-1ef3-dd8a-23e3a130ded2","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|4eeb46ef-4c49-1ef3-dd8a-23e3a130ded2","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":0,"direction":"BOTTOM","effectIn":true},"createdOn":1727804546141},"e-124":{"id":"e-124","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-125"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|377f2f3a-bb3a-0198-4101-83c6706f3e29","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|377f2f3a-bb3a-0198-4101-83c6706f3e29","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":200,"direction":null,"effectIn":true},"createdOn":1727809971154},"e-126":{"id":"e-126","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-127"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|165c3be7-af99-ee07-f088-136aadb52973","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|165c3be7-af99-ee07-f088-136aadb52973","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":400,"direction":null,"effectIn":true},"createdOn":1727809987949},"e-128":{"id":"e-128","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-129"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|36729b33-2735-8b79-af97-c703a2afff93","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|36729b33-2735-8b79-af97-c703a2afff93","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":600,"direction":null,"effectIn":true},"createdOn":1727810003235},"e-130":{"id":"e-130","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-131"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|ff86fc87-0267-ba35-6eb7-9f9d4f6cd40b","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|ff86fc87-0267-ba35-6eb7-9f9d4f6cd40b","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":0,"direction":null,"effectIn":true},"createdOn":1727817237054},"e-132":{"id":"e-132","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInTop","autoStopEventId":"e-133"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|9d71cd08-283d-fa3b-8ff2-d166dd8259df","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|9d71cd08-283d-fa3b-8ff2-d166dd8259df","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":50,"scrollOffsetUnit":"%","delay":0,"direction":"TOP","effectIn":true},"createdOn":1727817324686},"e-134":{"id":"e-134","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"FLY_EFFECT","instant":false,"config":{"actionListId":"flyInLeft","autoStopEventId":"e-135"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334b2","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334b2","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":50,"scrollOffsetUnit":"%","delay":0,"direction":"LEFT","effectIn":true},"createdOn":1727817383632},"e-136":{"id":"e-136","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-137"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334b0","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334b0","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":1000,"direction":"BOTTOM","effectIn":true},"createdOn":1727896016517},"e-138":{"id":"e-138","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"SLIDE_EFFECT","instant":false,"config":{"actionListId":"slideInBottom","autoStopEventId":"e-139"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66fecb936bc17e6230c8811a|ad567114-58e2-a725-1543-e155abd398f2","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66fecb936bc17e6230c8811a|ad567114-58e2-a725-1543-e155abd398f2","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":250,"direction":"BOTTOM","effectIn":true},"createdOn":1727994965046},"e-140":{"id":"e-140","name":"","animationType":"custom","eventTypeId":"SCROLLING_IN_VIEW","action":{"id":"","actionTypeId":"GENERAL_CONTINUOUS_ACTION","config":{"actionListId":"a-4","affectedElements":{},"duration":0}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334af","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|28c2021f-2f82-3dfb-28b1-9b29b81334af","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":[{"continuousParameterGroupId":"a-4-p","smoothing":50,"startsEntering":true,"addStartOffset":false,"addOffsetValue":50,"startsExiting":false,"addEndOffset":false,"endOffsetValue":50}],"createdOn":1728325750047},"e-141":{"id":"e-141","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-142"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|6400dd1e-1717-9058-b716-da336fdb5e2a","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|6400dd1e-1717-9058-b716-da336fdb5e2a","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":0,"direction":null,"effectIn":true},"createdOn":1728331095538},"e-143":{"id":"e-143","name":"","animationType":"preset","eventTypeId":"SCROLL_INTO_VIEW","action":{"id":"","actionTypeId":"GROW_BIG_EFFECT","instant":false,"config":{"actionListId":"growBigIn","autoStopEventId":"e-144"}},"mediaQueries":["main","medium","small","tiny"],"target":{"id":"66f30b2453571fc3c6b67b4a|95d19cf3-e585-e146-8a2e-637065a6ae06","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"66f30b2453571fc3c6b67b4a|95d19cf3-e585-e146-8a2e-637065a6ae06","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":0,"scrollOffsetUnit":"%","delay":600,"direction":null,"effectIn":true},"createdOn":1728331107024}},"actionLists":{"a-3":{"id":"a-3","title":"Scroll PIs","continuousParameterGroups":[{"id":"a-3-p","type":"SCROLL_PROGRESS","parameterLabel":"Scroll","continuousActionGroups":[{"keyframe":0,"actionItems":[{"id":"a-3-n","actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"easing":"","duration":500,"target":{"useEventTarget":"CHILDREN","selector":".frustrations-list","selectorGuids":["b68a9acd-27f8-e384-8e3d-136bef32a04c"]},"xValue":0,"yValue":null,"xUnit":"rem","yUnit":"px","zUnit":"PX"}}]},{"keyframe":100,"actionItems":[{"id":"a-3-n-2","actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"easing":"","duration":500,"target":{"useEventTarget":"CHILDREN","selector":".frustrations-list","selectorGuids":["b68a9acd-27f8-e384-8e3d-136bef32a04c"]},"xValue":-250,"yValue":null,"xUnit":"vw","yUnit":"px","zUnit":"PX"}}]}]}],"createdOn":1727199969324},"a-4":{"id":"a-4","title":"Scroll WIWTYs","continuousParameterGroups":[{"id":"a-4-p","type":"SCROLL_PROGRESS","parameterLabel":"Scroll","continuousActionGroups":[{"keyframe":0,"actionItems":[{"id":"a-4-n","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":500,"target":{"selector":".schedule-title.what-if-we-told-you","selectorGuids":["3c969d03-d631-1213-0972-8c7ed39e6cf6","a33fb443-60c8-f857-d22c-c089a357124f"]},"value":0,"unit":""}},{"id":"a-4-n-4","actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"easing":"","duration":500,"target":{"selector":".schedule-title.what-if-we-told-you","selectorGuids":["3c969d03-d631-1213-0972-8c7ed39e6cf6","a33fb443-60c8-f857-d22c-c089a357124f"]},"xValue":0,"yValue":0,"locked":true}}]},{"keyframe":35,"actionItems":[{"id":"a-4-n-3","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":500,"target":{"selector":".schedule-title.what-if-we-told-you","selectorGuids":["3c969d03-d631-1213-0972-8c7ed39e6cf6","a33fb443-60c8-f857-d22c-c089a357124f"]},"value":0,"unit":""}},{"id":"a-4-n-5","actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"easing":"","duration":500,"target":{"selector":".schedule-title.what-if-we-told-you","selectorGuids":["3c969d03-d631-1213-0972-8c7ed39e6cf6","a33fb443-60c8-f857-d22c-c089a357124f"]},"xValue":0,"yValue":0,"locked":true}}]},{"keyframe":60,"actionItems":[{"id":"a-4-n-2","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":500,"target":{"selector":".schedule-title.what-if-we-told-you","selectorGuids":["3c969d03-d631-1213-0972-8c7ed39e6cf6","a33fb443-60c8-f857-d22c-c089a357124f"]},"value":1,"unit":""}},{"id":"a-4-n-6","actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"easing":"","duration":500,"target":{"selector":".schedule-title.what-if-we-told-you","selectorGuids":["3c969d03-d631-1213-0972-8c7ed39e6cf6","a33fb443-60c8-f857-d22c-c089a357124f"]},"xValue":1,"yValue":1,"locked":true}}]}]}],"createdOn":1728325758603},"slideInRight":{"id":"slideInRight","useFirstGroupAsInitialState":true,"actionItemGroups":[{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":100,"yValue":0,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}}]},{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":1}},{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":0,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}}]}]},"slideInBottom":{"id":"slideInBottom","useFirstGroupAsInitialState":true,"actionItemGroups":[{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":100,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":0,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}},{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":1}}]}]},"growIn":{"id":"growIn","useFirstGroupAsInitialState":true,"actionItemGroups":[{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0.7500000000000001,"yValue":0.7500000000000001}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":1,"yValue":1}},{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":1}}]}]},"growBigIn":{"id":"growBigIn","useFirstGroupAsInitialState":true,"actionItemGroups":[{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":1,"yValue":1}},{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":1}}]}]},"slideInTop":{"id":"slideInTop","useFirstGroupAsInitialState":true,"actionItemGroups":[{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":-100,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}}]},{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":1}},{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":0,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}}]}]},"flyInLeft":{"id":"flyInLeft","useFirstGroupAsInitialState":true,"actionItemGroups":[{"actionItems":[{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":0}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":-800,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}},{"actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"duration":0,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0.25,"yValue":0.25}}]},{"actionItems":[{"actionTypeId":"TRANSFORM_MOVE","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":0,"yValue":0,"xUnit":"PX","yUnit":"PX","zUnit":"PX"}},{"actionTypeId":"TRANSFORM_SCALE","config":{"delay":0,"easing":"inOutQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"xValue":1,"yValue":1}},{"actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"outQuart","duration":1000,"target":{"id":"N/A","appliesTo":"TRIGGER_ELEMENT","useEventTarget":true},"value":1}}]}]}},"site":{"mediaQueries":[{"key":"main","min":992,"max":10000},{"key":"medium","min":768,"max":991},{"key":"small","min":480,"max":767},{"key":"tiny","min":0,"max":479}]}} +); diff --git a/roadmap.html b/roadmap.html new file mode 100644 index 0000000..ad1cf32 --- /dev/null +++ b/roadmap.html @@ -0,0 +1,97 @@ + + + + + Roadmap + + + + + + + + + + + + + + + + + + + +
+
+
+

Coming Soon :)

+
+
+
+
+ + + + + \ No newline at end of file