/*! 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;
}


@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;
}

.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:-moz-placeholder,
.w-select:-moz-placeholder {
    color: #999;
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-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;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: 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);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    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 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    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 <figure> 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;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}

.w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    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;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    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);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    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;
}

:root {
    --elements-webflow-library-general--shadow-05: rgba(20, 20, 43, .16);
    --elements-webflow-library-neutral--300: #eff0f6;
    --elements-webflow-library-neutral--100: white;
    --elements-webflow-library-neutral--800: #040404;
    --elements-webflow-library-accent--primary-1: #2284c5;
    --elements-webflow-library-secondary--color-2: #f2f1ff;
    --elements-webflow-library-secondary--color-1: var(--elements-webflow-library-neutral--800);
    --elements-webflow-library-neutral--600: #595959;
    --elements-webflow-library-general--shadow-02: rgba(20, 20, 43, .08);
    --elements-webflow-library-general--shadow-01: rgba(20, 20, 43, .06);
    --elements-webflow-library-neutral--200: #f7f7fc;
    --elements-webflow-library-neutral--400: #dcddeb;
    --elements-webflow-library-general--shadow-04: rgba(20, 20, 43, .14);
}

.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;
}

.brix---play-button-large {
    box-shadow: 0 24px 65px 0 var(--elements-webflow-library-general--shadow-05);
    transform-style: preserve-3d;
    border-radius: 50%;
    transition: transform .3s;
}

.brix---play-button-large:hover {
    transform: scale3d(.94, .94, 1.01);
}

.brix---lightbox-video-icon-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
}

.brix---bg-overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.brix---position-relative {
    position: relative;
}

.brix---border-radius-24px {
    z-index: -1;
    border-radius: 24px;
    overflow: hidden;
    transform: translate(0);
}

.brix---mg-top-80px {
    margin-top: 80px;
}

.brix---btn-secondary-white {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 48px;
    padding: 26px 38px;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

.brix---btn-secondary-white:hover {
    border-color: var(--elements-webflow-library-neutral--100);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-primary-white {
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-accent--primary-1);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-white:hover {
    background-color: var(--elements-webflow-library-secondary--color-2);
    color: var(--elements-webflow-library-accent--primary-1);
    transform: translate3d(0, -3px, .01px);
}

.brix---button-row-left {
    margin-right: 24px;
}

.brix---buttons-row-right---t-left {
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.brix---paragraph-default {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---paragraph-default.light {
    color: rgba(239, 240, 246, .47);
}

.brix---color-neutral-100 {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---heading-h1-size {
    margin-top: 0;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 66px;
}

.brix---hero-v15-grid {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: end;
    display: grid;
}

.brix---container-default {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
}

.brix---section-hero-half-bg-color {
    background-image: linear-gradient(to bottom, var(--elements-webflow-library-accent--primary-1) 60%, var(--elements-webflow-library-accent--primary-1) 60%, white 60%);
    padding-top: 176px;
    padding-bottom: 176px;
}

.brix---btn-primary-small-white {
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-accent--primary-1);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 18px 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-small-white:hover {
    background-color: var(--elements-webflow-library-secondary--color-2);
    color: var(--elements-webflow-library-accent--primary-1);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-header-hidden-on-mbl {
    margin-left: 24px;
}

.brix---hamburger-menu-bar-bottom-white,
.brix---hamburger-menu-bar-top-white {
    width: 52px;
    height: 4px;
    background-color: var(--elements-webflow-library-neutral--800);
    border-radius: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.brix---hamburger-menu-wrapper {
    padding: 0;
    transition: transform .3s;
}

.brix---hamburger-menu-wrapper:hover {
    transform: scale(.96);
}

.brix---hamburger-menu-wrapper.w--open {
    background-color: rgba(0, 0, 0, 0);
}

.brix---btn-primary-small {
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 18px 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-small:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---header-nav-list-item-show-in-mbl {
    margin-bottom: 0;
    padding-left: 32px;
    display: none;
}

.brix---header-nav-link-white {
    color: var(--elements-webflow-library-neutral--100);
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    transition: opacity .3s, color .3s;
}

.brix---header-nav-link-white:hover {
    opacity: .48;
}

.brix---header-nav-list-item {
    margin-bottom: 0;
    padding-left: 32px;
}

.brix---dropdown-link {
    width: 100%;
    color: var(--elements-webflow-library-neutral--600);
    align-items: center;
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: color .3s;
    display: flex;
}

.brix---dropdown-link:hover {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---dropdown-links-grid {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---dropdown-pd {
    padding: 40px;
}

.brix---dropdown-card {
    min-width: 280px;
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
    border-radius: 20px;
    top: 32px;
    overflow: hidden;
}

.brix---dropdown-column-wrapper {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 32px;
    transform: translate(0);
}

.brix---dropdown-column-wrapper.w--open {
    transform: translate(-50%);
}

.brix---dropdown-chevron {
    width: 14px;
    margin-left: 6px;
}

.brix---show-on-tablet {
    display: none;
}

.brix---dropdown-toggle-white {
    color: var(--elements-webflow-library-neutral--100);
    align-items: center;
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    transition: opacity .3s, color .3s;
    display: flex;
}

.brix---dropdown-toggle-white:hover {
    opacity: .59;
}

.brix---header-nav-menu-list {
    z-index: 1;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
}

.brix---header-right-col {
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.brix---header-logo {
    max-width: 250px;
}

.brix---header-logo-link {
    transform-style: preserve-3d;
    padding-left: 0;
    transition: transform .3s, color .3s;
}

.brix---header-logo-link:hover {
    transform: scale3d(.96, .96, 1.01);
}

.brix---header-content-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.brix---header-wrapper-transparent {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 32px;
    padding-bottom: 32px;
    position: absolute;
}

.brix---btn-secondary {
    border: 1px solid var(--elements-webflow-library-neutral--600);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

.brix---btn-secondary:hover {
    border-color: var(--elements-webflow-library-accent--primary-1);
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-primary {
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---buttons-row {
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    display: flex;
}

.brix---buttons-row.align-left {
    justify-content: flex-start;
}

.brix---color-neutral-600 {
    color: var(--elements-webflow-library-neutral--600);
}

.brix---mg-bottom-48px {
    margin-bottom: 48px;
}

.brix---heading-h2-size {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix---heading-h2-size.light {
    color: var(--elements-webflow-library-neutral--300);
}

.brix---color-neutral-800 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---mg-bottom-16px {
    margin-bottom: 16px;
}

.brix---grid-2-columns-text-left {
    grid-column-gap: 120px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: .8fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---section {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 130px;
    padding-bottom: 130px;
}

.brix---text-200-list-bold {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.brix---color-neutral-801 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---icon-list {
    margin-right: 16px;
}

.brix---icon-list-item-wrapper {
    align-items: center;
    display: flex;
}

.brix---grid-1-column-gap-row-16px {
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---grid-1-column-gap-row-16px.ai-explainer {
    grid-template-columns: 1fr;
}

.brix---mg-bottom-56px {
    margin-bottom: 56px;
}

.brix---mg-bottom-24px {
    max-width: 100%;
    margin-bottom: 24px;
}

.brix--grid-2-columns-text-right {
    grid-column-gap: 120px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .8fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---heading-h3-size {
    color: var(--elements-webflow-library-neutral--800);
    margin-top: 0;
    margin-bottom: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.brix---color-neutral-802 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---color-accent-1 {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---display-2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 84px;
}

.brix---text-center---mb-left {
    text-align: left;
}

.brix---grid-stats-v1 {
    grid-column-gap: 80px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---text-center {
    text-align: center;
}

.brix---inner-container-600px---center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    max-width: 1218px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 130px;
    padding-bottom: 130px;
}

.stat-card-container {
    max-width: 1218px;
    background-color: var(--elements-webflow-library-secondary--color-2);
    border-radius: 20px;
    padding: 70px;
    box-shadow: 1px 4px 18px rgba(0, 0, 0, .2);
}

.brix---btn-primary-full-width {
    width: 100%;
    max-width: 100%;
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-full-width:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---mg-bottom-32px {
    margin-bottom: 32px;
}

.brix---text-300-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.brix---text-uppercase {
    letter-spacing: .1em;
    text-transform: uppercase;
}

.brix---display-3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 52px;
}

.brix---display-3.cross-out-pricing {
    color: #f05a5a;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
}

.brix---color-neutral-803 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---mg-bottom-8px {
    margin-bottom: 8px;
}

.brix---pricing-content-v5 {
    padding: 40px 28px 56px;
}

.brix---card {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    border-radius: 24px;
}

.brix---3-columns-1-col-tablet {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---subtitle {
    color: var(--elements-webflow-library-accent--primary-1);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.brix---inner-container-700px-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brix---section-2 {
    color: var(--elements-webflow-library-neutral--100);
    background-image: radial-gradient(circle, rgba(92, 137, 160, .28), #fff 79%);
    padding-top: 176px;
    padding-bottom: 176px;
}

.brix---mg-bottom-0 {
    color: var(--elements-webflow-library-neutral--600);
    margin-bottom: 0;
}

.brix---mg-top-16px {
    margin-top: 16px;
}

.brix---icon-square-32px---twitter {
    width: 32px;
    height: 32px;
    min-height: 32px;
    min-width: 32px;
    background-color: #eef8ff;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform .3s, background-color .3s, color .3s;
    display: flex;
    overflow: hidden;
}

.brix---icon-square-32px---twitter:hover {
    transform: scale(.92);
}

.brix---testimonial-v9-twitter-icon {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, 36px);
    justify-content: end;
    justify-items: end;
}

.brix---twitter-icon-wrapper {
    flex: 1;
}

.brix---text-100 {
    font-size: 16px;
    line-height: 18px;
}

.brix---text-200-bold {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.brix---color-neutral-804 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---text-decoration-none {
    text-decoration: none;
}

.brix---mg-bottom-4px {
    margin-bottom: 4px;
}

.brix---mg-left-8px {
    margin-left: 8px;
}

.brix---avatar-image-link {
    transition: transform .3s;
}

.brix---avatar-image-link:hover {
    transform: scale(1.1);
}

.brix---avatar-circle-03 {
    width: 64px;
    height: 64px;
    max-height: 64px;
    max-width: 64px;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(0);
}

.brix---flex-horizontal {
    justify-content: center;
    align-items: center;
    display: flex;
}

.brix---flex-horizontal-space-between {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.brix---width-100 {
    width: 100%;
}

.brix---card-testimonial-twitter {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 32px 40px;
    display: flex;
}

.brix---grid-3-columns {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---inner-container-490px {
    max-width: 490px;
}

.brix---grid-top---text-2-buttons {
    grid-column-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    margin-bottom: 48px;
}

.brix---section-3 {
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 176px;
    padding-bottom: 176px;
}

.brix---section-3.ai-testimonial {
    background-image: linear-gradient(rgba(232, 124, 51, .47), rgba(232, 124, 51, .47)), url('../images/AiCity_V1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
}

.brix---paragraph-link {
    color: var(--elements-webflow-library-accent--primary-1);
    text-decoration: underline;
    transition: color .3s;
}

.brix---paragraph-link:hover {
    color: var(--elements-webflow-library-secondary--color-1);
}

.brix---footer-logo {
    max-width: 50%;
    transform-style: preserve-3d;
    transition: transform .3s;
}

.brix---footer-logo:hover {
    transform: scale3d(.97, .97, 1.01);
}

.brix---grid-footer-logo---paragraph {
    grid-template-rows: auto;
    grid-template-columns: .3fr 1fr;
    align-items: center;
}

.brix---footer-bottom-v4 {
    border-top: 1px solid var(--elements-webflow-library-neutral--300);
    color: var(--elements-webflow-library-neutral--600);
    text-align: right;
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 18px;
    line-height: 30px;
}

.brix---footer-wrapper {
    border-top: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
}

.brix---footer-bottom {
    border-top: 1px solid var(--elements-webflow-library-neutral--300);
    color: var(--elements-webflow-library-neutral--600);
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 18px;
    line-height: 30px;
}

.brix---footer-link {
    color: var(--elements-webflow-library-neutral--600);
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: color .3s;
}

.brix---footer-link:hover {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---footer-list-item {
    margin-bottom: 18px;
    padding-left: 0;
}

.brix---footer-list-wrapper {
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

.brix---footer-col-title {
    color: var(--elements-webflow-library-neutral--800);
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}

.brix---icon-square-36px {
    width: 36px;
    height: 36px;
    min-height: 36px;
    min-width: 36px;
    background-color: var(--elements-webflow-library-secondary--color-2);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform .3s, background-color .3s, color .3s;
    display: flex;
    overflow: hidden;
}

.brix---icon-square-36px:hover {
    transform: scale(.92);
}

.brix---social-media-grid-left {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, 36px);
    justify-content: start;
    align-self: center;
    justify-items: start;
}

.brix---mg-bottom-40px {
    margin-bottom: 40px;
}

.brix---grid-footer-v1 {
    grid-column-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.brix---footer-top {
    padding-top: 120px;
    padding-bottom: 120px;
}

.brix---footer-bottom-v14 {
    color: var(--elements-webflow-library-neutral--600);
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 18px;
    line-height: 30px;
}

.brix---text-200 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.brix---big-icon-left {
    color: var(--elements-webflow-library-neutral--600);
    border-radius: 16px;
    margin-right: 16px;
}

.brix---card-link-icon-wrapper {
    border: 1px solid var(--elements-webflow-library-neutral--200);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 6px 0 var(--elements-webflow-library-general--shadow-01);
    color: var(--elements-webflow-library-neutral--600);
    transform-style: preserve-3d;
    border-radius: 14px;
    align-items: center;
    padding: 14px 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    text-decoration: none;
    transition: transform .3s, border-color .3s, color .3s;
    display: flex;
}

.brix---card-link-icon-wrapper:hover {
    border-color: var(--elements-webflow-library-accent--primary-1);
    transform: scale3d(.96, .96, 1.01);
}

.brix---grid-1-column {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.grid-footer-4-cols-v14 {
    grid-column-gap: 70px;
    grid-template-rows: auto;
    grid-template-columns: .8fr auto auto auto;
}

.brix---footer-top-border-bottom {
    border-bottom: 1px solid var(--elements-webflow-library-neutral--300);
    padding-top: 120px;
    padding-bottom: 120px;
}

.brix---bg-split-v4-right {
    z-index: -2;
    width: 100%;
    max-width: 40%;
    min-height: 600px;
    background-color: var(--elements-webflow-library-accent--primary-1);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
}

.brix---bg-split-v4-left {
    z-index: -2;
    width: 100%;
    max-width: 60%;
    min-height: 600px;
    background-color: var(--elements-webflow-library-neutral--200);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
}

.brix---opacity-20 {
    opacity: .2;
}

.brix---floating-image-hero-v2---1 {
    z-index: -1;
    max-width: 600px;
    position: absolute;
    top: -1%;
    bottom: auto;
    left: -21%;
    right: auto;
    transform: rotate(140deg);
}

.brix---border-radius-24px-2 {
    z-index: -1;
    border-radius: 24px;
    overflow: hidden;
    transform: translate(0);
}

.brix---btn-circle-secondary {
    width: 64px;
    height: 64px;
    min-height: 64px;
    min-width: 64px;
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
    color: var(--elements-webflow-library-neutral--800);
    transform-style: preserve-3d;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    transition: transform .3s;
    display: flex;
}

.brix---btn-circle-secondary:hover {
    transform: scale3d(.94, .94, 1.01);
}

.brix---mg-top-56px {
    margin-top: 56px;
}

.brix---btn-secondary-2 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

.brix---btn-secondary-2:hover {
    border-color: var(--elements-webflow-library-accent--primary-1);
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-secondary-2.small {
    min-width: 135px;
    color: var(--elements-webflow-library-neutral--600);
    padding: 18px 24px;
}

.brix---btn-secondary-2.small:hover {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---btn-primary-2 {
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-2:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---button-row-left-2 {
    margin-right: 24px;
}

.brix---buttons-row-2 {
    align-items: center;
    display: flex;
}

.brix---paragraph-default-2 {
    color: var(--elements-webflow-library-neutral--600);
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---color-neutral-805 {
    color: var(--elements-webflow-library-neutral--600);
}

.brix---mg-bottom-40px-2 {
    margin-bottom: 40px;
}

.brix---heading-h1-size-2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 66px;
}

.brix---color-neutral-806 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---grid-hero-v4 {
    grid-column-gap: 20px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
}

.brix---container-default-2 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
}

.brix---section-hero-v4 {
    padding-top: 100px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

.brix---hamburger-menu-bar-bottom,
.brix---hamburger-menu-bar-top {
    width: 52px;
    height: 4px;
    background-color: var(--elements-webflow-library-neutral--800);
    border-radius: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.brix---hamburger-menu-wrapper-2 {
    padding: 0;
    transition: transform .3s;
}

.brix---hamburger-menu-wrapper-2:hover {
    transform: scale(.96);
}

.brix---hamburger-menu-wrapper-2.w--open {
    background-color: rgba(0, 0, 0, 0);
}

.brix---header-nav-link {
    color: var(--elements-webflow-library-neutral--800);
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    transition: color .3s;
}

.brix---header-nav-link:hover {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---header-nav-list-item-2 {
    margin-bottom: 0;
    padding-left: 32px;
}

.brix---dropdown-link-2 {
    width: 100%;
    color: var(--elements-webflow-library-neutral--600);
    align-items: center;
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: color .3s;
    display: flex;
}

.brix---dropdown-link-2:hover {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---dropdown-links-grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---dropdown-pd-2 {
    padding: 40px;
}

.brix---dropdown-card-2 {
    min-width: 280px;
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
    border-radius: 20px;
    top: 32px;
    overflow: hidden;
}

.brix---dropdown-column-wrapper-2 {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 32px;
    transform: translate(0);
}

.brix---dropdown-column-wrapper-2.w--open {
    transform: translate(-50%);
}

.brix---dropdown-chevron-2 {
    width: 14px;
    margin-left: 6px;
}

.brix---dropdown-toggle {
    color: var(--elements-webflow-library-neutral--800);
    align-items: center;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
    transition: color .3s;
    display: flex;
}

.brix---dropdown-toggle:hover {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---header-nav-menu-list-2 {
    z-index: 1;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
}

.brix---header-logo-2 {
    max-width: 200px;
}

.brix---header-logo-link-2 {
    transform-style: preserve-3d;
    padding-left: 0;
    transition: transform .3s, color .3s;
}

.brix---header-logo-link-2:hover {
    transform: scale3d(.96, .96, 1.01);
}

.brix---header-content-wrapper-2 {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.brix---header-wrapper {
    background-color: var(--elements-webflow-library-neutral--100);
    padding-top: 32px;
    padding-bottom: 32px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    position: -webkit-sticky;
    position: sticky;
}

.brix---btn-primary-small-2 {
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 18px 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-small-2:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-header-hidden-on-mbl-2 {
    margin-left: 24px;
}

.brix---header-nav-list-item-show-in-mbl-2 {
    margin-bottom: 0;
    padding-left: 32px;
    display: none;
}

.brix---header-right-col-2 {
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.brix---header-wrapper-2 {
    z-index: 99999999;
    width: 100%;
    background-color: var(--elements-webflow-library-neutral--100);
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.brix---mg-bottom-2 {
    color: var(--elements-webflow-library-neutral--600);
    margin-bottom: 0;
}

.brix---mg-bottom-2.plan-savings {
    color: var(--elements-webflow-library-neutral--600);
    font-weight: 500;
}

.brix---mg-bottom-2.light {
    color: var(--elements-webflow-library-neutral--400);
}

.brix---color-neutral-807 {
    color: var(--elements-webflow-library-neutral--600);
}

.brix---paragraph-default-3 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---paragraph-default-3.light {
    color: var(--elements-webflow-library-neutral--300);
}

.brix---heading-h3-size-2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.brix---heading-h3-size-2.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---color-neutral-808 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---square-icon {
    border-radius: 0;
}

.brix---mg-bottom-24px-2 {
    margin-bottom: 24px;
}

.brix---card-content-center {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    text-align: center;
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 24px;
    display: flex;
}

.brix---grid-3-columns-2 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---grid-3-columns-2._4-columns {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-bottom: 50px;
}

.brix---heading-h2-size-2 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix---mg-bottom-12px {
    margin-bottom: 12px;
}

.brix---text-center-2 {
    text-align: center;
}

.brix---inner-container-600px---center-2 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brix---mg-bottom-48px-2 {
    margin-bottom: 48px;
}

.brix---container-default-3 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
}

.brix---section-4 {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 176px;
    padding-bottom: 176px;
}

.floating-ai-score {
    width: 317px;
    height: 109px;
    background-image: url('../images/FloatingAiScore_V2.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: auto;
    bottom: 3%;
    left: auto;
    right: 5%;
}

.brix---full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brix---half-bg-image-right-content-v2 {
    z-index: -1;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
}

.brix---btn-secondary-3 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

.brix---btn-secondary-3:hover {
    border-color: var(--elements-webflow-library-accent--primary-1);
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-primary-3 {
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-3:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---button-row-left-3 {
    margin-right: 24px;
}

.brix---buttons-row-3 {
    align-items: center;
    display: flex;
}

.brix---color-neutral-809 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---mg-bottom-16px-2 {
    margin-bottom: 16px;
}

.brix---grid-2-columns-text-left-2 {
    grid-column-gap: 120px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: .8fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---section-image-fw-right {
    padding-top: 310px;
    padding-bottom: 310px;
    position: relative;
    overflow: hidden;
}

.brix---border-radius-24px-3 {
    z-index: -1;
    border-radius: 24px;
    overflow: hidden;
    transform: translate(0);
}

.brix---color-neutral-810 {
    color: var(--elements-webflow-library-neutral--600);
}

.brix---display-4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
}

.brix---display-4.plan---subhead {
    font-size: 20px;
    font-weight: 400;
}

.brix---color-neutral-811 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---tabs-content-card {
    width: 100%;
    border: 1px solid var(--elements-webflow-library-neutral--400);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
    border-radius: 24px;
    padding: 48px 56px;
    overflow: visible;
}

.brix---mg-left-16px {
    margin-left: 16px;
}

.brix---square-icon-48px {
    width: 48px;
    border-radius: 10px;
}

.brix---tab-left-icon {
    width: 100%;
    border: 2px solid var(--elements-webflow-library-neutral--200);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 6px 0 var(--elements-webflow-library-general--shadow-01);
    color: var(--elements-webflow-library-neutral--800);
    border-radius: 14px;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    transition: box-shadow .3s, border-width .3s, border-color .3s, color .3s;
    display: flex;
}

.brix---tab-left-icon:hover {
    border-color: var(--elements-webflow-library-accent--primary-1);
}

.brix---tab-left-icon.w--current {
    border-width: 2px;
    border-color: var(--elements-webflow-library-accent--primary-1);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
}

.brix---tabs-menu-vertical {
    width: 100%;
    max-width: 348px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
    margin-right: 40px;
    display: flex;
}

.brix---tabs-wrapper-tabs-left {
    display: flex;
}

.brix---subtitle-2 {
    color: var(--elements-webflow-library-accent--primary-1);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.brix---inner-container-640px---center {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.brix---inner-container-1068px-center {
    max-width: 1068px;
    margin-left: auto;
    margin-right: auto;
}

.brix---color-neutral-812 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---card-content-center-2 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    text-align: center;
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 24px;
    display: flex;
}

.brix---section-5 {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 176px;
    padding-bottom: 176px;
}

.brix---link-icon-right {
    margin-left: 6px;
}

.brix---text-200-bold-2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.brix---text-200-bold-2.white,
.brix---text-200-bold-2.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---color-accent-2 {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---link-wrapper {
    color: var(--elements-webflow-library-neutral--800);
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: color .3s;
    display: flex;
}

.brix---link-wrapper:hover {
    color: var(--elements-webflow-library-accent--primary-1);
}

.brix---mg-bottom-32px-2 {
    margin-bottom: 32px;
}

.brix---color-neutral-813 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---grid-2-columns-gap-56px {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---mg-left-12px {
    margin-left: 12px;
}

.brix---tab-small-center {
    width: auto;
    border: 2px solid var(--elements-webflow-library-neutral--200);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 6px 0 var(--elements-webflow-library-general--shadow-01);
    color: var(--elements-webflow-library-neutral--800);
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    margin: 0 12px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    transition: box-shadow .3s, border-width .3s, border-color .3s, color .3s;
    display: flex;
}

.brix---tab-small-center:hover {
    border-color: var(--elements-webflow-library-accent--primary-1);
}

.brix---tab-small-center.w--current {
    border-width: 2px;
    border-color: var(--elements-webflow-library-accent--primary-1);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
}

.brix---tabs-menu {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    display: flex;
}

.brix---section-6 {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 176px;
    padding-bottom: 176px;
}

.brix---section-6.dark.narrow {
    background-color: var(--elements-webflow-library-neutral--800);
}

.brix---section-6.narrow {
    padding-top: 100px;
    padding-bottom: 25px;
}

.brix---heading-h5-size {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.brix---color-neutral-814 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---mg-bottom-8px-2 {
    margin-bottom: 8px;
}

.brix---heading-h1-size-3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 66px;
}

.brix---heading-h1-size-3.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---grid-2-columns-2-col-mbl {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
}

.brix---image-wrapper-br-24px-shadow {
    box-shadow: 0 14px 42px 0 var(--elements-webflow-library-general--shadow-04);
    border-radius: 24px;
    overflow: hidden;
}

.brix---grid-2-columns-text {
    grid-column-gap: 64px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---btn-primary-full-width-2 {
    width: 100%;
    max-width: 100%;
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-full-width-2:hover {
    background-color: var(--elements-webflow-library-secondary--color-1);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
}

.brix---mg-top-24px {
    margin-top: 24px;
}

.brix---text-300-medium {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
}

.brix---text-300-medium.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---color-neutral-815 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---mg-right-8px {
    margin-right: 8px;
}

.brix---flex-horizontal-start {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.brix---text-200-list-bold-2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.brix---text-200-list-bold-2.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---icon-list-2 {
    margin-right: 16px;
}

.brix---icon-list-item-wrapper-2 {
    align-items: center;
    display: flex;
}

.brix---grid-1-column-gap-row-16px-2 {
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---divider-40px {
    height: 1px;
    background-color: var(--elements-webflow-library-neutral--400);
    margin-top: 40px;
    margin-bottom: 40px;
}

.brix---square-icon-2 {
    border-radius: 8px;
}

.brix---mg-right-16px {
    margin-right: 16px;
}

.brix---pricing-content-v2 {
    padding: 40px 28px;
}

.brix---card-2 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    border-radius: 24px;
}

.brix---btn-primary-white-full-width {
    width: 100%;
    max-width: 100%;
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-accent--primary-1);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-white-full-width:hover {
    background-color: var(--elements-webflow-library-secondary--color-2);
    color: var(--elements-webflow-library-accent--primary-1);
    transform: translate3d(0, -3px, .01px);
}

.brix---color-neutral-816 {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---card-pricing-popular {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-accent--primary-1);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    border-radius: 24px;
    position: relative;
}

.brix---3-columns-1-col-tablet-2 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---tabs-content {
    overflow: visible;
}

.brix---badge-secondary---tabs {
    border: 1px solid var(--elements-webflow-library-neutral--400);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-01);
    color: var(--elements-webflow-library-neutral--800);
    text-align: center;
    border-radius: 40px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 18px 28px;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, border-color .3s, color .3s;
    display: inline-block;
}

.brix---badge-secondary---tabs:hover,
.brix---badge-secondary---tabs.w--current {
    border-color: var(--elements-webflow-library-accent--primary-1);
    background-color: var(--elements-webflow-library-accent--primary-1);
    color: var(--elements-webflow-library-neutral--100);
}

.brix---tabs-menu-bg-neutral-200 {
    background-color: var(--elements-webflow-library-neutral--200);
    color: var(--elements-webflow-library-neutral--100);
    border-radius: 120px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 16px 14px;
    display: flex;
}

.brix---tabs-pricing-v6 {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.brix---inner-container-700px-center-2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brix---container-default-4 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
}

.brix---hidden-desktop {
    display: none;
}

.brix---btn-slider-arrow-right---testimonial-v12 {
    width: 64px;
    height: 64px;
    min-height: 64px;
    min-width: 64px;
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
    color: var(--elements-webflow-library-neutral--800);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
    text-decoration: none;
    transition: transform .3s;
    display: flex;
    top: 50%;
    bottom: 0;
    right: -10px;
    transform: translate(0, -50%);
}

.brix---btn-slider-arrow-right---testimonial-v12:hover {
    transform: scale(.95)translate(0, -50%);
}

.brix---btn-slider-arrow-left---testimonial-v12 {
    width: 64px;
    height: 64px;
    min-height: 64px;
    min-width: 64px;
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library-general--shadow-02);
    color: var(--elements-webflow-library-neutral--800);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
    text-decoration: none;
    transition: transform .3s;
    display: flex;
    top: 50%;
    left: -11px;
    transform: translate(0, -50%);
}

.brix---btn-slider-arrow-left---testimonial-v12:hover {
    transform: scale(.95)translate(0, -50%);
}

.brix---text-201 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.brix---heading-h4-size {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}

.brix---color-neutral-817 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---flex-horizontal-2 {
    justify-content: center;
    align-items: center;
    display: flex;
}

.brix---card-testimonial-v13 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px 56px;
    display: flex;
}

.brix---slide-item-mg {
    margin-right: 28px;
}

.brix---slider-mask-width-390px {
    height: 100%;
    max-width: 390px;
    overflow: visible;
}

.brix---slider-wrapper {
    height: 100%;
    object-fit: fill;
    background-color: rgba(0, 0, 0, 0);
    overflow: visible;
}

.brix---buttons-row-right---t-left-2 {
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.brix---heading-h2-size-3 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix---heading-h2-size-3.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---inner-container-490px-2 {
    max-width: 490px;
}

.brix---grid-top---text-2-buttons-2 {
    grid-column-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    margin-bottom: 48px;
}

.brix---container-default-5 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
}

.brix---section-overflow-hidden {
    padding-top: 176px;
    padding-bottom: 176px;
    overflow: hidden;
}

.brix---section-overflow-hidden.dark {
    background-color: var(--elements-webflow-library-neutral--600);
}

.brix---section-overflow-hidden.dark.narrow {
    padding-top: 100px;
    padding-bottom: 100px;
}

.brix---cta-v1-floating-item-02 {
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: -2%;
}

.brix---cta-v1-floating-item-01 {
    z-index: 0;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: -1%;
    right: auto;
}

.brix---btn-secondary-white-2 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 48px;
    padding: 26px 38px;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

.brix---btn-secondary-white-2:hover {
    border-color: var(--elements-webflow-library-neutral--100);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800);
    transform: translate3d(0, -3px, .01px);
}

.brix---btn-primary-white-2 {
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-accent--primary-1);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary-white-2:hover {
    background-color: var(--elements-webflow-library-secondary--color-2);
    color: var(--elements-webflow-library-accent--primary-1);
    transform: translate3d(0, -3px, .01px);
}

.brix---heading-h2-size-4 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix---color-neutral-818 {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---grid-cta-v1 {
    grid-column-gap: 50px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: .8fr .8fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---z-index-1 {
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.brix---cta-section {
    background-color: var(--elements-webflow-library-accent--primary-1);
    padding-top: 160px;
    padding-bottom: 160px;
    position: relative;
    overflow: hidden;
}

.brix---color-neutral-819 {
    color: var(--elements-webflow-library-neutral--800);
}

.brix---card-content-center-3 {
    border: 1px none var(--elements-webflow-library-neutral--300);
    text-align: center;
    border-radius: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 48px 20px;
    display: flex;
}

.brix---heading-h2-size-5 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix---heading-h2-size-5.light {
    color: var(--elements-webflow-library-neutral--100);
}

.brix---inner-container-600px---center-3 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.div-block-3 {
    width: 189px;
    height: 306px;
    background-image: url('../images/LPP_List_V2.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    border-radius: 10px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 20%;
    right: auto;
    box-shadow: 5px 6px 10px 3px rgba(0, 0, 0, .2);
}

.lpp-bg {
    position: static;
}

.div-block-4 {
    width: 181px;
    height: 172px;
    background-image: url('../images/Data_Float.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 44px;
    right: 636px;
}

.image-2 {
    max-width: 90%;
}

.text-span {
    font-style: italic;
}

.brix---color-neutral-821 {
    color: #193242;
}

.brix---grid-1-column-gap-row-16px-3 {
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---grid-1-column-gap-row-16px-3.ai-explainer {
    grid-template-columns: 1fr;
}

.brix---section-7 {
    color: #fff;
    padding-top: 130px;
    padding-bottom: 130px;
}

.brix---color-neutral-820 {
    color: #5c89a0;
}

.brix---heading-h2-size-6 {
    color: var(--elements-webflow-library-neutral--800);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix--grid-2-columns-text-right-2 {
    grid-column-gap: 64px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .8fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.brix---text-202 {
    color: var(--elements-webflow-library-neutral--800);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.div-block-6 {
    width: 189px;
    height: 306px;
    background-image: url('../images/LPP_List_V2.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    border-radius: 10px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 20%;
    right: auto;
    box-shadow: 5px 6px 10px 3px rgba(0, 0, 0, .2);
}

.brix---container-default-6 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
}

.brix---paragraph-default-4 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---grid-1-column-gap-row-32px {
    grid-row-gap: 32px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---color-neutral-823 {
    color: #193242;
}

.brix---color-neutral-822 {
    color: #5c89a0;
}

.brix---icon-left---content-right {
    align-items: flex-start;
    display: flex;
}

.brix---card-left-text-wrapper {
    margin-left: 24px;
}

.brix---section-8 {
    color: #fff;
    padding-top: 176px;
    padding-bottom: 100px;
}

.brix---square-icon-3 {
    border-radius: 16px;
}

.brix---paragraph-default-5 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---text-203 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.brix---color-neutral-824 {
    color: #193242;
}

.brix---color-neutral-825 {
    color: #5c89a0;
}

.brix---color-neutral-826 {
    color: #193242;
}

.brix---container-default-7 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
}

.brix---mg-bottom-24px-3 {
    margin-bottom: 24px;
}

.brix---mg-bottom-3 {
    color: var(--elements-webflow-library-neutral--600);
    margin-bottom: 0;
}

.brix---grid-1-column-gap-row-16px-4 {
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.brix---grid-1-column-gap-row-16px-4.ai-explainer {
    grid-template-columns: 1fr;
}

.brix---section-9 {
    color: #fff;
    padding-top: 176px;
    padding-bottom: 100px;
}

.brix---heading-h3-size-3 {
    color: var(--elements-webflow-library-neutral--800);
    margin-top: 0;
    margin-bottom: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.brix---heading-h2-size-7 {
    color: var(--elements-webflow-library-neutral--800);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.brix---color-neutral-827 {
    color: #595959;
}

.brix---footer-bottom-v14-2 {
    color: #595959;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 18px;
    line-height: 30px;
}

.brix---paragraph-default-6 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---footer-link-2 {
    color: #595959;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: color .3s;
}

.brix---footer-link-2:hover {
    color: #2284c5;
}

.brix---mg-bottom-4 {
    margin-bottom: 0;
}

.brix---text-204 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.brix---container-default-8 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
}

.brix---footer-col-title-2 {
    color: #193242;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}

.brix---footer-logo-2 {
    max-width: 200px;
    transform-style: preserve-3d;
    transition: transform .3s;
}

.brix---footer-logo-2:hover {
    transform: scale3d(.97, .97, 1.01);
}

.brix---card-link-icon-wrapper-2 {
    color: #595959;
    transform-style: preserve-3d;
    background-color: #fff;
    border: 1px solid #f7f7fc;
    border-radius: 14px;
    align-items: center;
    padding: 14px 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    text-decoration: none;
    transition: transform .3s, border-color .3s, color .3s;
    display: flex;
    box-shadow: 0 2px 6px rgba(20, 20, 43, .06);
}

.brix---card-link-icon-wrapper-2:hover {
    border-color: #2284c5;
    transform: scale3d(.96, .96, 1.01);
}

.brix---text-205 {
    font-size: 16px;
    line-height: 18px;
}

.brix---footer-top-border-bottom-2 {
    border-bottom: 1px solid #eff0f6;
    padding-top: 120px;
    padding-bottom: 120px;
}

.brix---color-accent-3 {
    color: #2284c5;
}

.brix---footer-wrapper-2 {
    background-color: #fff;
    border-top: 1px solid #eff0f6;
}

.brix---color-neutral-828 {
    color: #595959;
}

.brix---footer-bottom-v14-3 {
    color: #595959;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 18px;
    line-height: 30px;
}

.brix---paragraph-default-7 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.brix---footer-link-3 {
    color: #595959;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    transition: color .3s;
}

.brix---footer-link-3:hover {
    color: #2284c5;
}

.brix---mg-bottom-5 {
    margin-bottom: 0;
}

.brix---footer-col-title-3 {
    color: #193242;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}

.brix---text-206 {
    font-size: 16px;
    line-height: 18px;
}

.brix---footer-top-border-bottom-3 {
    border-bottom: 1px solid #eff0f6;
    padding-top: 120px;
    padding-bottom: 120px;
}

.brix---color-accent-4 {
    color: #2284c5;
}

.brix---footer-wrapper-3 {
    background-color: #fff;
    border-top: 1px solid #eff0f6;
}

.div-block-7 {
    display: flex;
}

@media screen and (min-width: 1440px) {
    .brix---btn-secondary {
        border-color: var(--elements-webflow-library-neutral--600);
        box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
    }

    .brix---btn-secondary.align-left {
        text-align: center;
    }

    .brix---buttons-row {
        justify-content: center;
        margin-top: 50px;
    }

    .brix---buttons-row.align-left {
        justify-content: flex-start;
    }

    .brix---grid-1-column-gap-row-16px.features {
        grid-template-columns: 1fr 1fr;
    }

    .brix---grid-1-column-gap-row-16px.ai-explainer {
        grid-template-columns: 1fr;
    }

    .brix---heading-h3-size.stats {
        font-size: 18px;
    }

    .brix---grid-stats-v1 {
        grid-column-gap: 100px;
    }

    .stat-card {
        padding-left: 0;
        padding-right: 0;
    }

    .stat-card-container {
        background-color: var(--elements-webflow-library-secondary--color-2);
    }

    .brix---section-3 {
        background-image: linear-gradient(rgba(32, 73, 111, .78), rgba(32, 73, 111, .78)), url('../images/AiCity_V1.jpg');
        background-position: 0 0, 0 0;
        background-size: auto, auto;
    }

    .brix---section-3.ai-testimonial {
        background-image: linear-gradient(rgba(232, 124, 51, .47), rgba(232, 124, 51, .47)), url('../images/AiCity_V1.jpg');
        background-position: 0 0, 0 0;
        background-size: auto, auto;
    }

    .brix---grid-footer-v1 {
        grid-column-gap: 91px;
        grid-template-columns: minmax(340px, 1fr) auto auto auto auto;
    }

    .brix---card-link-icon-wrapper {
        border-style: none;
        padding-left: 0;
    }

    .grid-footer-4-cols-v14 {
        grid-column-gap: 80px;
        grid-template-columns: .9fr auto auto auto;
    }

    .brix---btn-secondary-2 {
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
    }

    .brix---btn-secondary-2.small {
        color: var(--elements-webflow-library-neutral--600);
    }

    .brix---buttons-row-2 {
        align-items: center;
    }

    .brix---grid-hero-v4 {
        grid-column-gap: 90px;
    }

    .brix---section-hero-v4 {
        display: block;
    }

    .brix---heading-h3-size-2.light {
        color: var(--elements-webflow-library-neutral--100);
    }

    .brix---square-icon {
        max-height: none;
        object-fit: fill;
        border-radius: 0;
    }

    .brix---card-content-center {
        border-width: 2px;
        align-items: center;
    }

    .brix---grid-3-columns-2 {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: ". . Area";
    }

    .brix---grid-3-columns-2._4-columns {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .brix---heading-h2-size-2 {
        color: var(--elements-webflow-library-neutral--800);
    }

    .brix---heading-h2-size-2.ai-stats---2-column {
        font-size: 32px;
    }

    .brix---heading-h2-size-2.light {
        color: var(--elements-webflow-library-neutral--100);
    }

    .brix---inner-container-600px---center-2 {
        max-width: 800px;
    }

    .brix---container-default-3 {
        margin-left: auto;
        margin-right: auto;
    }

    .brix---section-4 {
        display: none;
    }

    .brix---section-4.colored-bg {
        background-color: rgba(220, 221, 235, .59);
    }

    .brix---card-content-center-2 {
        box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
        border-width: 3px;
    }

    .brix---section-5 {
        padding-bottom: 30px;
    }

    .brix---section-6.tools-section---2 {
        background-color: #193242;
    }

    .brix---section-6.dark {
        background-color: var(--elements-webflow-library-neutral--800);
    }

    .brix---section-6.narrow {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .div-block {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        justify-content: stretch;
        justify-items: stretch;
        margin-left: auto;
        margin-right: auto;
        display: grid;
    }

    .tool-wrapper {
        grid-column-gap: 28px;
        grid-row-gap: 28px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        margin-top: 0;
        padding-top: 30px;
        padding-left: 0;
        padding-right: 0;
        display: grid;
    }

    .h4---dark-text {
        color: var(--elements-webflow-library-neutral--600);
        margin-top: 25px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
        font-size: 20px;
    }

    .div-block-2 {
        flex-direction: column;
        align-items: center;
        display: flex;
    }

    .image {
        max-width: 100%;
    }

    .tools-item {
        flex-direction: column;
        align-items: center;
        padding: 48px 24px;
        display: flex;
    }

    .tool-discription {
        color: var(--elements-webflow-library-neutral--800);
        text-align: center;
        padding-top: 5px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
        font-size: 16px;
        line-height: 130%;
    }

    .tool-discription.light {
        color: var(--elements-webflow-library-neutral--100);
    }

    .paragraph {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    }

    .tool-intro {
        color: var(--elements-webflow-library-neutral--600);
        padding-top: 17px;
        font-size: 20px;
    }

    .tool-intro.light {
        color: var(--elements-webflow-library-neutral--400);
    }

    .h4---dark-text-copy,
    .h4---light {
        color: var(--elements-webflow-library-neutral--600);
        margin-top: 25px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
        font-size: 20px;
    }

    .brix---square-icon-2 {
        border-radius: 0;
    }

    .brix---z-index-1 {
        margin-left: auto;
        margin-right: auto;
    }

    .brix---card-content-center-3 {
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0);
        border-style: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---heading-h2-size-5.light {
        color: var(--elements-webflow-library-neutral--100);
    }

    .brix---grid-1-column-gap-row-16px-3.ai-explainer,
    .brix---grid-1-column-gap-row-16px-4.ai-explainer {
        grid-template-columns: 1fr;
    }

    .brix---card-link-icon-wrapper-2 {
        border-style: none;
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .brix---lightbox-video-icon-wrapper {
        max-width: 100px;
    }

    .brix---btn-primary-white {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---buttons-row-right---t-left {
        justify-content: flex-start;
    }

    .brix---heading-h1-size {
        font-size: 48px;
        line-height: 60px;
    }

    .brix---hero-v15-grid {
        grid-template-columns: 1fr;
    }

    .brix---section-hero-half-bg-color {
        padding-top: 118px;
        padding-bottom: 118px;
    }

    .brix---hamburger-menu-bar-bottom-white {
        width: 44px;
        height: 3px;
        background-color: var(--elements-webflow-library-neutral--100);
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .brix---hamburger-menu-bar-top-white {
        width: 44px;
        height: 3px;
        background-color: var(--elements-webflow-library-neutral--100);
    }

    .brix---hamburger-menu-wrapper {
        order: -1;
        transition: transform .3s;
    }

    .brix---hamburger-menu-wrapper:hover {
        transform: scale(.96);
    }

    .brix---hamburger-menu-wrapper.w--open {
        background-color: rgba(0, 0, 0, 0);
    }

    .brix---header-nav-list-item-show-in-mbl {
        margin-bottom: 16px;
        padding-left: 0;
    }

    .brix---header-nav-link-white {
        color: var(--elements-webflow-library-neutral--800);
    }

    .brix---header-nav-list-item {
        margin-bottom: 16px;
        padding-left: 0;
    }

    .brix---dropdown-pd {
        padding: 20px 0 14px;
    }

    .brix---dropdown-card {
        min-width: auto;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0);
        border-width: 0;
        border-radius: 0;
    }

    .brix---dropdown-card.w--open {
        position: static;
    }

    .brix---dropdown-column-wrapper {
        padding-top: 0;
        position: static;
    }

    .brix---dropdown-column-wrapper.w--open {
        transform: none;
    }

    .brix---show-on-tablet {
        display: block;
    }

    .brix---hidden-on-tablet {
        display: none;
    }

    .brix---dropdown-toggle-white {
        color: var(--elements-webflow-library-neutral--800);
    }

    .brix---header-nav-menu-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .brix---header-nav-menu-wrapper-white {
        border-top: 0px solid var(--elements-webflow-library-neutral--300);
        border-bottom: 0px solid var(--elements-webflow-library-neutral--300);
        background-color: var(--elements-webflow-library-neutral--100);
        padding: 24px;
    }

    .brix---header-logo {
        max-width: 232px;
    }

    .brix---header-wrapper-transparent,
    .brix---btn-primary {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---mg-bottom-48px {
        margin-bottom: 40px;
    }

    .brix---heading-h2-size {
        margin-top: 23px;
        font-size: 30px;
        line-height: 46px;
    }

    .brix---grid-2-columns-text-left {
        grid-row-gap: 48px;
        grid-template-columns: 1fr;
    }

    .brix---section {
        padding: 49px 10px;
    }

    .brix---mg-bottom-56px {
        margin-bottom: 48px;
    }

    .brix--grid-2-columns-text-right {
        grid-row-gap: 48px;
        grid-template-columns: 1fr;
    }

    .brix---heading-h3-size {
        font-size: 22px;
        line-height: 32px;
    }

    .brix---display-2 {
        font-size: 58px;
        line-height: 70px;
    }

    .brix---grid-stats-v1 {
        grid-column-gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat-card {
        margin-left: 20px;
        margin-right: 20px;
    }

    .brix---btn-primary-full-width {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---mg-bottom-32px {
        margin-bottom: 24px;
    }

    .brix---display-3 {
        font-size: 32px;
        line-height: 44px;
    }

    .brix---3-columns-1-col-tablet {
        grid-template-columns: 1fr;
    }

    .brix---section-2 {
        padding-top: 118px;
        padding-bottom: 118px;
    }

    .brix---testimonial-v9-twitter-icon {
        grid-column-gap: 10px;
    }

    .brix---twitter-icon-wrapper {
        width: 100%;
    }

    .brix---grid-3-columns {
        grid-template-columns: 1fr 1fr;
    }

    .brix---grid-top---text-2-buttons {
        grid-row-gap: 24px;
        grid-template-columns: .7fr;
    }

    .brix---section-3 {
        padding-top: 118px;
        padding-bottom: 118px;
    }

    .brix---section-3.ai-testimonial {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brix---footer-bottom-v4 {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .brix---footer-bottom {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---footer-col-title {
        margin-bottom: 24px;
    }

    .brix---social-media-grid-left {
        grid-column-gap: 10px;
    }

    .brix---grid-footer-v1 {
        grid-row-gap: 40px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .brix---footer-top {
        padding-top: 94px;
        padding-bottom: 94px;
    }

    .brix---footer-bottom-v14 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .grid-footer-4-cols-v14 {
        grid-column-gap: 60px;
        grid-row-gap: 50px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .brix---footer-top-border-bottom {
        padding-top: 94px;
        padding-bottom: 94px;
    }

    .brix---bg-split-v4-right {
        max-width: 100%;
        min-height: 42%;
        background-color: var(--elements-webflow-library-neutral--100);
        display: block;
        top: auto;
        bottom: 0%;
        left: 0%;
        right: 0%;
    }

    .brix---bg-split-v4-left {
        max-width: 100%;
    }

    .brix---floating-image-hero-v2---1 {
        top: 24%;
        right: -30%;
    }

    .brix---border-radius-24px-2 {
        max-width: 100%;
    }

    .brix---mg-top-56px {
        margin-top: 40px;
    }

    .brix---btn-primary-2 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---heading-h1-size-2 {
        font-size: 48px;
        line-height: 60px;
    }

    .brix---grid-hero-v4 {
        grid-row-gap: 48px;
        flex-direction: column-reverse;
        grid-template-columns: 1fr;
    }

    .brix---section-hero-v4 {
        padding: 100px 10px;
    }

    .brix---hamburger-menu-bar-bottom {
        width: 44px;
        height: 3px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .brix---hamburger-menu-bar-top {
        width: 44px;
        height: 3px;
    }

    .brix---hamburger-menu-wrapper-2 {
        order: -1;
        transition: transform .3s;
    }

    .brix---hamburger-menu-wrapper-2:hover {
        transform: scale(.96);
    }

    .brix---hamburger-menu-wrapper-2.w--open {
        background-color: rgba(0, 0, 0, 0);
    }

    .brix---header-nav-list-item-2 {
        margin-bottom: 16px;
        padding-left: 0;
    }

    .brix---dropdown-pd-2 {
        padding: 20px 0 14px;
    }

    .brix---dropdown-card-2 {
        min-width: auto;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0);
        border-width: 0;
        border-radius: 0;
    }

    .brix---dropdown-card-2.w--open {
        position: static;
    }

    .brix---dropdown-column-wrapper-2 {
        padding-top: 0;
        position: static;
    }

    .brix---dropdown-column-wrapper-2.w--open {
        transform: none;
    }

    .brix---header-nav-menu-list-2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .brix---header-menu-wrapper {
        border-top: 1px solid var(--elements-webflow-library-neutral--300);
        border-bottom: 1px solid var(--elements-webflow-library-neutral--300);
        background-color: var(--elements-webflow-library-neutral--100);
        padding: 24px;
    }

    .brix---header-logo-2 {
        max-width: 232px;
    }

    .brix---header-wrapper {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---header-nav-list-item-show-in-mbl-2 {
        margin-bottom: 16px;
        padding-left: 0;
    }

    .brix---header-wrapper-2 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---heading-h3-size-2 {
        font-size: 22px;
        line-height: 32px;
    }

    .brix---grid-3-columns-2 {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-columns: 1fr;
    }

    .brix---grid-3-columns-2._4-columns {
        grid-template-columns: 1fr 1fr;
    }

    .brix---heading-h2-size-2 {
        font-size: 30px;
        line-height: 46px;
    }

    .brix---mg-bottom-48px-2 {
        margin-bottom: 40px;
    }

    .brix---section-4 {
        padding-top: 118px;
        padding-bottom: 118px;
    }

    .floating-ai-score {
        width: 375px;
        height: 165px;
        top: 93%;
        bottom: auto;
        left: auto;
        right: 8%;
    }

    .brix---half-bg-image-right-content-v2 {
        width: 100%;
        height: 100%;
        min-height: 580px;
        margin-top: 48px;
        position: static;
        top: auto;
        bottom: 0%;
        left: 0%;
        right: 0%;
    }

    .brix---btn-primary-3 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---grid-2-columns-text-left-2 {
        grid-row-gap: 48px;
        grid-template-columns: 1fr;
    }

    .brix---section-image-fw-right {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .brix---display-4 {
        font-size: 22px;
        line-height: 38px;
    }

    .brix---tabs-content-card {
        padding: 40px 32px 48px;
    }

    .brix---tab-left-icon {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brix---tabs-menu-vertical {
        max-width: 271px;
    }

    .brix---section-5 {
        padding: 118px 10px;
    }

    .brix---mg-bottom-32px-2 {
        margin-bottom: 24px;
    }

    .brix---tab-small-center {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---section-6 {
        padding: 118px 10px;
    }

    .brix---heading-h1-size-3 {
        font-size: 48px;
        line-height: 60px;
    }

    .brix---grid-2-columns-text {
        grid-row-gap: 60px;
        grid-template-columns: 1fr;
    }

    .brix---btn-primary-full-width-2 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---divider-40px {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .brix---btn-primary-white-full-width {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---3-columns-1-col-tablet-2 {
        grid-template-columns: 1fr;
    }

    .brix---tabs-menu-bg-neutral-200 {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .brix---heading-h4-size {
        font-size: 22px;
        line-height: 32px;
    }

    .brix---slider-mask-width-390px {
        position: static;
    }

    .brix---buttons-row-right---t-left-2 {
        justify-content: flex-start;
    }

    .brix---heading-h2-size-3 {
        font-size: 30px;
        line-height: 46px;
    }

    .brix---grid-top---text-2-buttons-2 {
        grid-row-gap: 24px;
        grid-template-columns: .7fr;
    }

    .brix---section-overflow-hidden {
        padding-top: 118px;
        padding-bottom: 118px;
    }

    .brix---cta-v1-floating-item-02 {
        width: 38%;
        bottom: -3%;
    }

    .brix---cta-v1-floating-item-01 {
        width: 35%;
        top: -4%;
        left: -5%;
    }

    .brix---btn-primary-white-2 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---heading-h2-size-4 {
        font-size: 30px;
        line-height: 46px;
    }

    .brix---grid-cta-v1 {
        grid-template-columns: .7fr;
    }

    .brix---cta-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .brix---heading-h2-size-5 {
        font-size: 30px;
        line-height: 46px;
    }

    .div-block-3 {
        bottom: 50%;
        left: 38%;
    }

    .div-block-4 {
        bottom: 376px;
        right: 72px;
    }

    .div-block-5 {
        padding-top: 50px;
    }

    .brix---section-7 {
        padding: 49px 10px;
    }

    .brix---heading-h2-size-6 {
        margin-top: 23px;
        font-size: 30px;
        line-height: 46px;
    }

    .brix--grid-2-columns-text-right-2 {
        grid-row-gap: 48px;
        grid-template-columns: 1fr;
    }

    .div-block-6 {
        bottom: 50%;
        left: 38%;
    }

    .brix---icon-left---content-right {
        flex-direction: column;
    }

    .brix---card-left-text-wrapper {
        margin-top: 24px;
        margin-left: 0;
    }

    .brix---section-8,
    .brix---section-9 {
        padding-top: 118px;
        padding-bottom: 118px;
    }

    .brix---heading-h3-size-3 {
        font-size: 22px;
        line-height: 32px;
    }

    .brix---heading-h2-size-7 {
        font-size: 30px;
        line-height: 46px;
    }

    .brix---footer-bottom-v14-2 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---footer-col-title-2 {
        margin-bottom: 24px;
    }

    .brix---footer-top-border-bottom-2 {
        padding-top: 94px;
        padding-bottom: 94px;
    }

    .brix---footer-bottom-v14-3 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brix---footer-col-title-3 {
        margin-bottom: 24px;
    }

    .brix---footer-top-border-bottom-3 {
        padding-top: 94px;
        padding-bottom: 94px;
    }
}

@media screen and (max-width: 767px) {
    .brix---lightbox-video-icon-wrapper {
        max-width: 90px;
    }

    .brix---mg-top-80px {
        margin-top: 64px;
    }

    .brix---btn-secondary-white {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brix---btn-primary-white {
        padding: 20px 32px;
    }

    .brix---button-row-left {
        margin-right: 16px;
    }

    .brix---heading-h1-size {
        margin-bottom: 12px;
        font-size: 38px;
        line-height: 46px;
    }

    .brix---hero-v15-grid {
        grid-template-columns: 1fr;
    }

    .brix---section-hero-half-bg-color {
        background-image: linear-gradient(to bottom, var(--elements-webflow-library-accent--primary-1) 72%, var(--elements-webflow-library-accent--primary-1) 72%, white 72%);
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .brix---btn-header-hidden-on-mbl {
        display: none;
    }

    .brix---btn-primary-small {
        padding: 20px 32px;
    }

    .brix---header-nav-list-item-show-in-mbl {
        display: block;
    }

    .brix---header-logo {
        max-width: 90%;
    }

    .brix---btn-secondary {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brix---btn-primary {
        padding: 20px 32px;
    }

    .brix---mg-bottom-48px {
        margin-bottom: 32px;
    }

    .brix---heading-h2-size {
        font-size: 28px;
        line-height: 40px;
    }

    .brix---mg-bottom-16px {
        margin-bottom: 8px;
    }

    .brix---grid-2-columns-text-left {
        grid-template-columns: 1fr;
    }

    .brix---section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---text-200-list-bold {
        font-size: 16px;
    }

    .brix---mg-bottom-56px {
        margin-bottom: 40px;
    }

    .brix--grid-2-columns-text-right {
        grid-template-columns: 1fr;
    }

    .brix---display-2 {
        font-size: 48px;
        line-height: 56px;
    }

    .brix---text-center---mb-left {
        text-align: center;
    }

    .brix---grid-stats-v1 {
        grid-row-gap: 52px;
        grid-template-columns: 1fr;
    }

    .brix---btn-primary-full-width {
        padding: 20px 32px;
    }

    .brix---text-300-bold {
        font-size: 18px;
        line-height: 22px;
    }

    .brix---pricing-content-v5 {
        padding-bottom: 40px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .brix---3-columns-1-col-tablet {
        grid-template-columns: 1fr;
    }

    .brix---subtitle {
        font-size: 17px;
        line-height: 19px;
    }

    .brix---section-2 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---text-100 {
        font-size: 15px;
    }

    .brix---text-200-bold {
        font-size: 16px;
        line-height: 18px;
    }

    .brix---avatar-circle-03 {
        width: 56px;
        height: 56px;
        max-height: 56px;
        max-width: 56px;
    }

    .brix---grid-3-columns {
        grid-template-columns: 1fr;
    }

    .brix---grid-top---text-2-buttons {
        grid-template-columns: .9fr;
    }

    .brix---section-3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---footer-logo-wrapper {
        width: 239px;
    }

    .brix---grid-footer-logo---paragraph {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .brix---footer-bottom-v4 {
        text-align: center;
    }

    .brix---footer-list-item {
        margin-bottom: 10px;
    }

    .brix---footer-col-title {
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 20px;
    }

    .brix---social-media-grid-left {
        justify-content: start;
        justify-items: start;
    }

    .brix---mg-bottom-40px {
        margin-bottom: 24px;
    }

    .brix---grid-footer-v1 {
        grid-template-columns: 1fr 1fr;
    }

    .brix---footer-top {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brix---text-200 {
        font-size: 16px;
        line-height: 18px;
    }

    .brix---big-icon-left {
        max-width: 56px;
        border-radius: 12px;
    }

    .grid-footer-4-cols-v14 {
        grid-template-columns: 1fr 1fr;
    }

    .brix---footer-top-border-bottom {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brix---floating-image-hero-v2---1 {
        max-width: 480px;
    }

    .brix---btn-circle-secondary {
        width: 56px;
        height: 56px;
        min-height: 56px;
        min-width: 56px;
        font-size: 22px;
        line-height: 24px;
    }

    .brix---btn-secondary-2 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brix---btn-primary-2 {
        padding: 20px 32px;
    }

    .brix---button-row-left-2 {
        margin-right: 16px;
    }

    .brix---mg-bottom-40px-2 {
        margin-bottom: 24px;
    }

    .brix---heading-h1-size-2 {
        margin-bottom: 12px;
        font-size: 38px;
        line-height: 46px;
    }

    .brix---grid-hero-v4 {
        grid-template-columns: 1fr;
    }

    .brix---section-hero-v4 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---header-logo-2 {
        max-width: 60%;
    }

    .brix---btn-primary-small-2 {
        padding: 20px 32px;
    }

    .brix---btn-header-hidden-on-mbl-2 {
        display: none;
    }

    .brix---header-nav-list-item-show-in-mbl-2 {
        display: block;
    }

    .brix---square-icon {
        max-width: 56px;
        border-radius: 0;
    }

    .brix---grid-3-columns-2 {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

    .brix---heading-h2-size-2 {
        font-size: 28px;
        line-height: 40px;
    }

    .brix---mg-bottom-48px-2 {
        margin-bottom: 32px;
    }

    .brix---section-4 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .floating-ai-score {
        top: 93%;
    }

    .brix---btn-secondary-3 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brix---btn-primary-3 {
        padding: 20px 32px;
    }

    .brix---button-row-left-3 {
        margin-right: 16px;
    }

    .brix---mg-bottom-16px-2 {
        margin-bottom: 8px;
    }

    .brix---grid-2-columns-text-left-2 {
        grid-template-columns: 1fr;
    }

    .brix---section-image-fw-right {
        padding-top: 96px;
        padding-bottom: 0;
    }

    .brix---display-4 {
        font-size: 20px;
        line-height: 32px;
    }

    .brix---tabs-content-card {
        padding-top: 30px;
        padding-bottom: 32px;
    }

    .brix---square-icon-48px {
        max-width: 56px;
        border-radius: 12px;
    }

    .brix---tab-left-icon {
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .brix---tabs-menu-vertical {
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
        margin-right: 0;
    }

    .brix---tabs-wrapper-tabs-left {
        flex-direction: column;
    }

    .brix---subtitle-2 {
        font-size: 17px;
        line-height: 19px;
    }

    .brix---section-5 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---link-icon-right {
        width: 20px;
        margin-left: 8px;
    }

    .brix---text-200-bold-2 {
        font-size: 16px;
        line-height: 18px;
    }

    .brix---grid-2-columns-gap-56px {
        grid-template-columns: 1fr;
    }

    .brix---tab-small-center {
        justify-content: center;
        margin: 10px 0;
    }

    .brix---tabs-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .brix---section-6 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---heading-h5-size {
        font-size: 16px;
        line-height: 22px;
    }

    .brix---heading-h1-size-3 {
        margin-bottom: 12px;
        font-size: 38px;
        line-height: 46px;
    }

    .brix---grid-2-columns-2-col-mbl {
        grid-template-columns: 1fr 1fr;
    }

    .brix---image-wrapper-br-24px-shadow {
        box-shadow: 0 4px 22px 0 var(--elements-webflow-library-general--shadow-04);
        border-radius: 14px;
    }

    .brix---grid-2-columns-text {
        grid-template-columns: 1fr;
    }

    .brix---btn-primary-full-width-2 {
        padding: 20px 32px;
    }

    .brix---text-300-medium {
        font-size: 18px;
        line-height: 20px;
    }

    .brix---text-200-list-bold-2 {
        font-size: 16px;
    }

    .brix---divider-40px {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .brix---square-icon-2 {
        max-width: 56px;
        border-radius: 0;
    }

    .brix---pricing-content-v2 {
        padding-bottom: 40px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .brix---btn-primary-white-full-width {
        padding: 20px 32px;
    }

    .brix---3-columns-1-col-tablet-2 {
        grid-template-columns: 1fr;
    }

    .brix---badge-secondary---tabs {
        margin: 8px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .brix---tabs-menu-bg-neutral-200 {
        flex-direction: row;
        align-items: stretch;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .brix---btn-slider-arrow-right---testimonial-v12 {
        width: 56px;
        height: 56px;
        min-height: 56px;
        min-width: 56px;
        font-size: 22px;
        line-height: 24px;
        top: auto;
        bottom: -104px;
        left: auto;
        right: 36%;
    }

    .brix---btn-slider-arrow-left---testimonial-v12 {
        width: 56px;
        height: 56px;
        min-height: 56px;
        min-width: 56px;
        font-size: 22px;
        line-height: 24px;
        top: auto;
        bottom: -104px;
        left: 36%;
        right: auto;
    }

    .brix---text-201 {
        font-size: 16px;
        line-height: 18px;
    }

    .brix---heading-h4-size {
        font-size: 20px;
        line-height: 26px;
    }

    .brix---heading-h2-size-3 {
        font-size: 28px;
        line-height: 40px;
    }

    .brix---grid-top---text-2-buttons-2 {
        grid-template-columns: .9fr;
    }

    .brix---section-overflow-hidden {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---cta-v1-floating-item-02 {
        width: 34%;
        bottom: -5%;
        right: -4%;
    }

    .brix---cta-v1-floating-item-01 {
        width: 34%;
    }

    .brix---btn-secondary-white-2 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brix---btn-primary-white-2 {
        padding: 20px 32px;
    }

    .brix---heading-h2-size-4 {
        font-size: 28px;
        line-height: 40px;
    }

    .brix---grid-cta-v1 {
        grid-template-columns: 1fr;
    }

    .brix---cta-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .brix---heading-h2-size-5 {
        font-size: 28px;
        line-height: 40px;
    }

    .div-block-3 {
        bottom: 51%;
        left: 51%;
    }

    .div-block-4 {
        bottom: 390px;
        right: 19px;
    }

    .brix---section-7 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---heading-h2-size-6 {
        font-size: 28px;
        line-height: 40px;
    }

    .brix--grid-2-columns-text-right-2 {
        grid-template-columns: 1fr;
    }

    .brix---text-202 {
        font-size: 16px;
        line-height: 18px;
    }

    .div-block-6 {
        bottom: 51%;
        left: 51%;
    }

    .brix---section-8 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---square-icon-3 {
        max-width: 56px;
        border-radius: 12px;
    }

    .brix---text-203 {
        font-size: 16px;
        line-height: 18px;
    }

    .brix---section-9 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .brix---heading-h2-size-7 {
        font-size: 28px;
        line-height: 40px;
    }

    .brix---text-204 {
        font-size: 16px;
        line-height: 18px;
    }

    .brix---footer-col-title-2 {
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 20px;
    }

    .brix---text-205 {
        font-size: 15px;
    }

    .brix---footer-top-border-bottom-2 {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brix---footer-col-title-3 {
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 20px;
    }

    .brix---text-206 {
        font-size: 15px;
    }

    .brix---footer-top-border-bottom-3 {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

@media screen and (max-width: 479px) {
    .brix---lightbox-video-icon-wrapper {
        max-width: 70px;
    }

    .brix---mg-top-80px {
        margin-top: 56px;
    }

    .brix---btn-secondary-white,
    .brix---btn-primary-white {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---button-row-left {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .brix---buttons-row-right---t-left {
        flex-direction: column;
        align-items: stretch;
    }

    .brix---paragraph-default {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---heading-h1-size {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 37px;
    }

    .brix---container-default {
        padding-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---section-hero-half-bg-color {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .brix---btn-primary-small-white {
        width: 100%;
        padding: 16px 20px;
    }

    .brix---btn-primary-small {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .brix---header-nav-list-item-show-in-mbl,
    .brix---header-nav-list-item {
        width: 100%;
        text-align: left;
    }

    .brix---header-logo {
        max-width: 84%;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .brix---header-logo-link.w--current {
        padding-bottom: 0;
    }

    .brix---header-content-wrapper {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .brix---btn-secondary,
    .brix---btn-primary {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 17px;
        line-height: 19px;
    }

    .brix---buttons-row {
        flex-direction: column;
        align-items: stretch;
    }

    .brix---mg-bottom-48px {
        margin-bottom: 32px;
    }

    .brix---heading-h2-size {
        font-size: 24px;
        line-height: 34px;
    }

    .brix---heading-h2-size.stat-mobile {
        font-size: 20px;
    }

    .brix---mg-bottom-16px {
        margin-bottom: 15px;
    }

    .brix---section {
        padding: 50px 0;
    }

    .brix---icon-list {
        width: 24px;
        margin-right: 8px;
    }

    .brix---grid-1-column-gap-row-16px {
        grid-template-columns: 1fr;
    }

    .brix---mg-bottom-56px {
        margin-bottom: 32px;
    }

    .brix---mg-bottom-24px {
        margin-bottom: 16px;
    }

    .brix---heading-h3-size {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px;
    }

    .brix---heading-h3-size.stat-mobile {
        font-size: 18px;
    }

    .brix---display-2 {
        font-size: 38px;
        line-height: 48px;
    }

    .brix---grid-stats-v1 {
        grid-template-columns: 1fr;
    }

    .stat-card {
        margin-left: 20px;
        margin-right: 20px;
    }

    .stat-card-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---btn-primary-full-width {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---text-300-bold {
        font-size: 17px;
        line-height: 21px;
    }

    .brix---display-3 {
        font-size: 26px;
        line-height: 39px;
    }

    .brix---mg-bottom-8px {
        margin-bottom: 6px;
    }

    .brix---3-columns-1-col-tablet {
        grid-template-columns: 1fr;
    }

    .brix---subtitle {
        font-size: 14px;
        line-height: 18px;
    }

    .brix---mg-top-16px {
        margin-top: 12px;
    }

    .brix---icon-square-32px---twitter {
        width: 30px;
        height: 30px;
        min-height: 30px;
        min-width: 30px;
        border-radius: 6px;
        font-size: 14px;
    }

    .brix---testimonial-v9-twitter-icon {
        grid-template-columns: repeat(auto-fit, 30px);
    }

    .brix---text-100 {
        font-size: 15px;
    }

    .brix---text-200-bold {
        font-size: 15px;
        line-height: 16px;
    }

    .brix---avatar-image-link {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .brix---avatar-circle-03 {
        width: 48px;
        height: 48px;
        max-height: 48px;
        max-width: 48px;
        min-height: 48px;
        min-width: 48px;
    }

    .brix---card-testimonial-twitter {
        padding-top: 40px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .brix---grid-3-columns {
        grid-template-columns: 1fr;
    }

    .brix---grid-top---text-2-buttons {
        grid-row-gap: 16px;
        grid-template-columns: 1fr;
    }

    .brix---section-3.ai-testimonial {
        padding-left: 0;
        padding-right: 0;
    }

    .brix---footer-logo {
        width: 100%;
        max-width: 240px;
    }

    .brix---footer-link {
        font-size: 16px;
        line-height: 19px;
    }

    .brix---footer-list-item {
        margin-bottom: 8px;
    }

    .brix---footer-col-title {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---icon-square-36px {
        width: 30px;
        height: 30px;
        min-height: 30px;
        min-width: 30px;
        border-radius: 6px;
        font-size: 14px;
    }

    .brix---social-media-grid-left {
        grid-template-columns: repeat(auto-fit, 30px);
    }

    .brix---grid-footer-v1 {
        grid-row-gap: 48px;
        grid-template-columns: 1fr;
    }

    .brix---footer-top {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .brix---text-200 {
        text-align: left;
        font-size: 15px;
        line-height: 16px;
    }

    .brix---big-icon-left {
        max-width: 56px;
        border-radius: 14px;
        margin-bottom: 16px;
        margin-right: 0;
    }

    .brix---card-link-icon-wrapper {
        text-align: center;
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 24px;
    }

    .brix---footer-top-border-bottom {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .brix---bg-split-v4-right {
        min-height: 33%;
    }

    .brix---bg-split-v4-left {
        min-height: 710px;
    }

    .brix---floating-image-hero-v2---1 {
        display: none;
    }

    .brix---btn-secondary-2 {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 17px;
        line-height: 19px;
    }

    .brix---btn-secondary-2.small {
        min-width: 100px;
        padding: 10px 18px;
    }

    .brix---btn-primary-2 {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 17px;
        line-height: 19px;
    }

    .brix---button-row-left-2 {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .brix---buttons-row-2 {
        flex-direction: column;
        align-items: stretch;
    }

    .brix---paragraph-default-2 {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---heading-h1-size-2 {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 37px;
    }

    .brix---container-default-2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---section-hero-v4 {
        padding: 50px 0;
    }

    .brix---header-nav-list-item-2 {
        width: 100%;
        text-align: left;
    }

    .brix---header-logo-2 {
        max-width: 75%;
    }

    .brix---btn-primary-small-2 {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .brix---header-nav-list-item-show-in-mbl-2 {
        width: 100%;
        text-align: left;
    }

    .brix---paragraph-default-3 {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---heading-h3-size-2 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px;
    }

    .brix---square-icon {
        max-width: 56px;
        border-radius: 0;
    }

    .brix---mg-bottom-24px-2 {
        margin-bottom: 16px;
    }

    .brix---grid-3-columns-2,
    .brix---grid-3-columns-2._4-columns {
        grid-template-columns: 1fr;
    }

    .brix---heading-h2-size-2 {
        font-size: 24px;
        line-height: 34px;
    }

    .brix---mg-bottom-48px-2 {
        margin-bottom: 32px;
    }

    .brix---container-default-3 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .floating-ai-score {
        width: 187px;
        height: 82px;
        top: 96%;
        right: 7%;
    }

    .brix---half-bg-image-right-content-v2 {
        min-height: auto;
        position: relative;
    }

    .brix---btn-secondary-3,
    .brix---btn-primary-3 {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 17px;
        line-height: 19px;
    }

    .brix---button-row-left-3 {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .brix---buttons-row-3 {
        flex-direction: column;
        align-items: stretch;
    }

    .brix---mg-bottom-16px-2 {
        margin-bottom: 15px;
    }

    .brix---section-image-fw-right {
        padding-top: 96px;
    }

    .brix---tabs-content-card {
        padding-left: 24px;
        padding-right: 24px;
    }

    .brix---mg-left-16px {
        margin-left: 13px;
    }

    .brix---square-icon-48px {
        max-width: 56px;
        border-radius: 14px;
    }

    .brix---tab-left-icon {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---subtitle-2 {
        font-size: 14px;
        line-height: 18px;
    }

    .brix---section-5 {
        padding-left: 0;
        padding-right: 0;
    }

    .brix---link-icon-right {
        width: 18px;
    }

    .brix---text-200-bold-2 {
        font-size: 15px;
        line-height: 16px;
    }

    .brix---grid-2-columns-gap-56px {
        grid-row-gap: 36px;
    }

    .brix---tab-small-center {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---section-6 {
        padding-left: 0;
        padding-right: 0;
    }

    .brix---mg-bottom-8px-2 {
        margin-bottom: 6px;
    }

    .brix---heading-h1-size-3 {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 37px;
    }

    .brix---grid-2-columns-2-col-mbl {
        grid-template-columns: 1fr;
    }

    .brix---image-wrapper-br-24px-shadow {
        border-radius: 16px;
    }

    .brix---btn-primary-full-width-2 {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---icon-list-2 {
        width: 24px;
        margin-right: 8px;
    }

    .brix---divider-40px {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .brix---square-icon-2 {
        max-width: 56px;
        border-radius: 0;
    }

    .brix---pricing-content-v2 {
        padding-left: 24px;
        padding-right: 24px;
    }

    .brix---btn-primary-white-full-width {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .brix---3-columns-1-col-tablet-2 {
        grid-template-columns: 1fr;
    }

    .brix---badge-secondary---tabs {
        margin-left: 0;
        margin-right: 0;
        padding: 14px 22px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---tabs-menu-bg-neutral-200 {
        width: 100%;
        background-color: var(--elements-webflow-library-neutral--100);
        border-radius: 6px;
        flex-direction: column;
    }

    .brix---container-default-4 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---btn-slider-arrow-right---testimonial-v12 {
        right: 31%;
    }

    .brix---btn-slider-arrow-left---testimonial-v12 {
        left: 31%;
    }

    .brix---text-201 {
        font-size: 15px;
        line-height: 16px;
    }

    .brix---heading-h4-size {
        font-size: 18px;
        line-height: 24px;
    }

    .brix---card-testimonial-v13 {
        padding-top: 40px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .brix---buttons-row-right---t-left-2 {
        flex-direction: column;
        align-items: stretch;
    }

    .brix---heading-h2-size-3 {
        font-size: 24px;
        line-height: 34px;
    }

    .brix---grid-top---text-2-buttons-2 {
        grid-row-gap: 16px;
        grid-template-columns: 1fr;
    }

    .brix---container-default-5 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---section-overflow-hidden {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .brix---cta-v1-floating-item-02 {
        width: 44%;
    }

    .brix---cta-v1-floating-item-01 {
        width: 39%;
    }

    .brix---btn-secondary-white-2,
    .brix---btn-primary-white-2 {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---heading-h2-size-4 {
        font-size: 24px;
        line-height: 34px;
    }

    .brix---grid-cta-v1 {
        grid-template-columns: 1fr;
    }

    .brix---cta-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brix---heading-h2-size-5 {
        font-size: 24px;
        line-height: 34px;
    }

    .div-block-3 {
        width: 110px;
        height: 173px;
        bottom: 62%;
        left: 56%;
    }

    .div-block-4 {
        width: 110px;
        height: 100px;
        bottom: 575px;
        right: 3px;
    }

    .image-2 {
        max-width: 100%;
    }

    .div-block-5 {
        padding-top: 15px;
    }

    .brix---grid-1-column-gap-row-16px-3 {
        grid-template-columns: 1fr;
    }

    .brix---section-7 {
        padding: 50px 0;
    }

    .brix---heading-h2-size-6 {
        font-size: 24px;
        line-height: 34px;
    }

    .brix---text-202 {
        font-size: 15px;
        line-height: 16px;
    }

    .div-block-6 {
        width: 110px;
        height: 173px;
        bottom: 54%;
        left: 56%;
    }

    .brix---container-default-6 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---paragraph-default-4 {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---square-icon-3 {
        max-width: 56px;
        border-radius: 14px;
    }

    .brix---paragraph-default-5 {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---text-203 {
        font-size: 15px;
        line-height: 16px;
    }

    .brix---container-default-7 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---mg-bottom-24px-3 {
        margin-bottom: 16px;
    }

    .brix---grid-1-column-gap-row-16px-4 {
        grid-template-columns: 1fr;
    }

    .brix---heading-h3-size-3 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px;
    }

    .brix---heading-h2-size-7 {
        margin-bottom: 40px;
        font-size: 24px;
        line-height: 34px;
    }

    .brix---paragraph-default-6 {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---footer-link-2 {
        font-size: 16px;
        line-height: 19px;
    }

    .brix---text-204 {
        text-align: left;
        font-size: 15px;
        line-height: 16px;
    }

    .brix---container-default-8 {
        padding-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .brix---footer-col-title-2 {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---footer-logo-2 {
        width: 100%;
        max-width: 200px;
    }

    .brix---card-link-icon-wrapper-2 {
        text-align: center;
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 24px;
    }

    .brix---text-205 {
        font-size: 15px;
    }

    .brix---footer-top-border-bottom-2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .brix---paragraph-default-7 {
        font-size: 17px;
        line-height: 28px;
    }

    .brix---footer-link-3 {
        font-size: 16px;
        line-height: 19px;
    }

    .brix---footer-col-title-3 {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 18px;
    }

    .brix---text-206 {
        font-size: 15px;
    }

    .brix---footer-top-border-bottom-3 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

#w-node-_10d6d256-5d53-990b-5b93-5fadcd3d0df1-19da302e,
#w-node-_546fa3d5-fa22-12da-77e0-13e29fe176e8-19da302e {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {

    #w-node-e346d44b-b21e-a8b9-0c3a-c90b05fe5770-19da302e,
    #w-node-e346d44b-b21e-a8b9-0c3a-c90b05fe5785-19da302e {
        grid-area: span 1 / span 3 / span 1 / span 3;
    }
}

@media screen and (max-width: 767px) {
    #w-node-e346d44b-b21e-a8b9-0c3a-c90b05fe5770-19da302e {
        grid-column: span 2 / span 2;
    }

    #w-node-e346d44b-b21e-a8b9-0c3a-c90b05fe5785-19da302e {
        grid-area: span 1 / span 2 / span 1 / span 2;
        align-self: auto;
    }
}

@media screen and (max-width: 479px) {
    #w-node-e346d44b-b21e-a8b9-0c3a-c90b05fe5789-19da302e {
        justify-self: auto;
    }
}