:root {
  --background-color--background-alternate: var(--base-color-neutral--neutral-darkest);
  --font-family--text: Inter, sans-serif;
  --text-color--text-primary: var(--base-color-neutral--neutral-darkest);
  --font-family--heading: "Inter Tight", sans-serif;
  --font-size--6xl: 3.5rem;
  --font-size--5xl: 3rem;
  --font-size--4xl: 2.5rem;
  --font-size--3xl: 2rem;
  --font-size--2xl: 1.5rem;
  --font-size--xl: 1.25rem;
  --link-color--link-primary: var(--base-color-neutral--neutral-darkest);
  --base-color-brand--orange: #e69d3d;
  --background-color--background-primary: var(--base-color-neutral--white);
  --base-color-brand--white: white;
  --font-size--s: .9375rem;
  --text-color--text-secondary: var(--base-color-neutral--neutral);
  --base-color-neutral--neutral-darkest: #191615;
  --fluid-font-size--6xl: 3.733vw;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --base-color-neutral--white: white;
  --fluid-font-size--8xl: 5.867vw;
  --border-color--border-primary: var(--base-color-neutral--neutral-darkest);
  --ridus--s: .5rem;
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --base-color-neutral--neutral-light: #a7a6a5;
  --base-color-neutral--neutral-darker: #23201e;
  --base-color-neutral--neutral-lightest: #f3f2f2;
  --border-color--border-secondary: var(--base-color-neutral--neutral-lighter);
  --base-color-neutral--black: black;
  --base-color-brand--purple: #512832;
  --font-size--base: 1rem;
  --black-archive\<deleted\|variable-dccb7db6\>: black;
  --page-padding--desktop: 2.5rem;
  --page-padding--tablet: 2rem;
  --page-padding--mobile: 1rem;
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --base-color-neutral--neutral: #7c7a7a;
  --base-color-neutral--neutral-dark: #312d2a;
  --base-color-neutral--neutral-lighter: #c9c8c8;
  --link-color--link-alternate: var(--base-color-neutral--white);
  --base-color-brand--cream: #eddccb;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --base-color-brand--black: black;
  --text-color--text-success: var(--base-color-system--success-green);
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --fluid-font-size--10xl: 8.8vw;
  --orange-background: #755020;
  --fluid-font-size--xl: 1.85vw;
  --fluid-font-size--4xl: 2.667vw;
  --fluid-font-size--5xl: 3.2vw;
  --fluid-font-size--7xl: 4.267vw;
  --fluid-font-size--9xl: 6.4vw;
  --font-size--l: 1.125rem;
  --font-size--7xl: 4.5rem;
  --font-size--8xl: 6rem;
  --font-size--9xl: 8rem;
  --ridus--l: 1rem;
  --ridus--xl: 2rem;
  --ridus--2xl: 4rem;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--background-color--background-alternate);
  font-family: var(--font-family--text);
  color: var(--text-color--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  font-family: var(--font-family--heading);
  font-size: var(--font-size--6xl);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 120%;
}

h2 {
  font-family: var(--font-family--heading);
  font-size: var(--font-size--5xl);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 120%;
}

h3 {
  font-family: var(--font-family--heading);
  font-size: var(--font-size--4xl);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 120%;
}

h4 {
  font-family: var(--font-family--heading);
  font-size: var(--font-size--3xl);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  font-family: var(--font-family--heading);
  font-size: var(--font-size--2xl);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 120%;
}

h6 {
  font-family: var(--font-family--heading);
  font-size: var(--font-size--xl);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 120%;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
  -webkit-text-stroke-color: var(--base-color-brand--orange);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.page-wrapper {
  overflow: hidden;
}

.main-container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.full-width-container {
  width: 100%;
  max-width: 60rem;
}

.small-width-container {
  width: 100%;
  max-width: 30rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 25rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  background-color: var(--background-color--background-primary);
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.top-margin, .top-margin.no-margin {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.bottom-margin, .bottom-margin.margin-medium, .bottom-margin.margin-small, .bottom-margin.no-margin {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.bottom-margin.margin-xsmall {
  color: var(--base-color-brand--white);
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-vertical, .margin-vertical.margin-medium {
  margin-left: 0;
  margin-right: 0;
}

.padding-top, .padding-top.padding-large, .padding-top.padding-xxlarge {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-large-buy {
  padding: var(--font-size--5xl) var(--font-size--2xl);
  background-color: #146ef6;
}

.padding-bottom, .padding-bottom.padding-xxlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.foooter {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.medium-text {
  color: var(--base-color-brand--orange);
  font-size: var(--font-size--s);
  padding-bottom: 3rem;
}

.medium-text.alt-text-color {
  color: var(--text-color--text-secondary);
  font-weight: 400;
}

.medium-text.text-weight-bold {
  font-weight: 500;
}

.medium-text.text-weight-bold.text-color-black {
  color: var(--base-color-neutral--neutral-darkest);
  padding-bottom: 0;
}

.small-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-h2 {
  font-size: var(--fluid-font-size--6xl);
  color: inherit;
  font-weight: 500;
  line-height: 120%;
}

.heading-h2.secondry-text-color {
  color: var(--text-color--text-secondary);
  text-align: left;
}

.heading-h2.white {
  color: var(--base-color-brand--white);
}

.heading-h6 {
  color: var(--text-color--text-primary);
  font-size: var(--font-size--xl);
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.heading-h6.buy {
  font-family: var(--font-family--heading);
  color: var(--base-color-neutral--white);
}

.row-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
  display: block;
}

.row-item.is-button-row {
  grid-template-columns: 19rem 1fr;
  place-items: center start;
  width: 100%;
}

.heading-h5 {
  font-size: var(--font-size--2xl);
  font-weight: 500;
  line-height: 120%;
}

.heading-h5.main-text-color {
  color: var(--base-color-neutral--neutral-darkest);
  font-size: var(--font-size--xl);
}

.heading-h1 {
  font-size: var(--fluid-font-size--8xl);
  font-weight: 500;
  line-height: 120%;
}

.checkbox-icon {
  border: 1px solid var(--border-color--border-primary);
  border-radius: var(--ridus--s);
  cursor: pointer;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.checkbox-icon.dark {
  border-color: var(--background-color--background-tertiary);
}

.checkbox-label {
  margin-bottom: 0;
}

.checkbox-label.text-small {
  color: inherit;
}

.button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--base-color-neutral--neutral-light);
  background-color: var(--base-color-neutral--neutral-light);
  color: var(--base-color-neutral--white);
  text-align: center;
  border-radius: .75rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.button:hover {
  background-color: var(--base-color-neutral--neutral-darker);
}

.button.w--current {
  border-color: var(--base-color-neutral--neutral-lightest);
  justify-content: center;
  align-items: center;
  margin-top: .25rem;
}

.button.secondary {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-color: var(--border-color--border-secondary);
  color: var(--base-color-neutral--black);
  background-color: #0000;
  display: inline-flex;
}

.button.secondary:hover {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.button.secondary.alt-color {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-color: var(--base-color-brand--orange);
  background-color: var(--base-color-brand--orange);
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-color: var(--base-color-brand--white);
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  display: inline-flex;
}

.button.secondary.alt-color:hover {
  background-color: var(--base-color-brand--purple);
}

.button.secondary.is-small {
  border-color: var(--background-color--background-tertiary);
  background-color: #0000;
  transition: background-color .2s;
}

.button.secondary.is-small:hover {
  background-color: var(--base-color-brand--purple);
  color: var(--base-color-brand--white);
}

.button.secondary.is-small.is-alternate {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.alt-color {
  border-color: var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
}

.button.alt-color:hover {
  border-color: var(--base-color-brand--purple);
  background-color: var(--base-color-brand--purple);
  color: var(--base-color-brand--white);
}

.button.alt-color.w--current {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.button.alt-color.max-width-full:hover {
  border-color: var(--base-color-brand--purple);
  background-color: var(--base-color-brand--purple);
  color: var(--base-color-brand--white);
}

.heading-h4 {
  font-size: var(--font-size--3xl);
  font-weight: 500;
  line-height: 120%;
}

.styleguide_label {
  border-radius: var(--ridus--s);
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.regular-text {
  font-size: var(--font-size--base);
  -webkit-text-stroke-color: var(--base-color-brand--orange);
}

.regular-text.alt-text-color {
  color: var(--text-color--text-alternate);
}

.regular-text.text-color-secondary {
  color: inherit;
}

.text-weight-bold {
  font-weight: 700;
}

.heading-h3 {
  font-size: var(--font-size--4xl);
  font-weight: 500;
  line-height: 120%;
}

.form-input {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--text-color--text-primary);
  border: 1px solid #fff0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .75rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.dark {
  background-color: var(--base-color-neutral--neutral-darker);
  color: var(--text-color--text-alternate);
  border-style: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.form-input.dark::placeholder {
  color: var(--text-color--text-secondary);
  line-height: 150%;
}

.styleguide-button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding: 1.5rem;
  display: grid;
}

.styleguide-button-list.background-color-black {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.style-guide-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--base-color-neutral--white);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
  display: flex;
}

.style-guide-list.color {
  grid-column-gap: .5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: auto;
  height: 100%;
  display: grid;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-semibold {
  font-weight: 500;
  display: inline-block;
}

.text-semibold.orange-text-color {
  color: var(--base-color-brand--orange);
  font-weight: 500;
}

.text-color-black {
  color: var(--black-archive\<deleted\|variable-dccb7db6\>);
}

.background-color-black {
  background-color: var(--base-color-neutral--black);
}

.text-small {
  font-size: var(--font-size--s);
}

.text-small.color-secondary {
  color: var(--text-color--text-secondary);
}

.field-wrapper {
  position: relative;
}

.rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.checkbox.dark {
  color: var(--text-color--text-alternate);
}

.text-large {
  font-size: var(--font-size--xl);
}

.text-large.text-semibold {
  font-weight: 500;
}

.text-large.text-semibold.main-text-color {
  color: var(--base-color-neutral--neutral-darkest);
}

.global-padding {
  padding-right: var(--page-padding--desktop);
  padding-bottom: 2rem;
  padding-left: var(--page-padding--desktop);
  margin-left: 0;
  margin-right: 0;
  transform: translate(0);
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.xsmall-spacer {
  width: 100%;
  padding-top: 1rem;
}

.small-spacer {
  width: 100%;
  padding-top: 1.5rem;
}

.medium-spacer {
  width: 100%;
  padding-top: 2rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.large-spacer {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  width: 100%;
  padding-top: 0;
}

.alt-text-color {
  color: var(--text-color--text-alternate);
}

.text-color-secondary {
  color: var(--text-color--text-secondary);
}

.main-text-color {
  color: var(--text-color--text-primary);
  text-align: left;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.section-hero {
  background-color: var(--background-color--background-alternate);
  color: var(--text-color--text-secondary);
}

.services-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  padding-top: 3rem;
  display: grid;
}

.services-list.no-margin {
  padding-top: 0;
}

.services-list-item {
  border-bottom: 1px none var(--base-color-neutral--neutral-darker);
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.services-list-item:lang(en) {
  border-bottom-style: none;
}

.image-wrapper {
  border-radius: var(--ridus--s);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services-image {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: 100%;
}

.text-color-alternate-sec {
  color: var(--base-color-neutral--neutral);
}

.button-chip {
  border: 1px solid var(--base-color-neutral--neutral-dark);
  border-radius: var(--ridus--s);
  background-color: var(--base-color-neutral--neutral-darker);
  margin-right: -.75rem;
  padding-left: .5rem;
  padding-right: .5rem;
}

.button-chip.is-alternate {
  border-color: var(--base-color-neutral--neutral-lighter);
  background-color: var(--base-color-neutral--neutral-lightest);
}

.chip-text {
  color: var(--text-color--text-primary);
  line-height: 150%;
}

.chip-text.alt-text-color {
  color: var(--text-color--text-alternate);
}

.navigation-bar {
  padding-right: var(--page-padding--desktop);
  padding-left: var(--page-padding--desktop);
  background-color: var(--background-color--background-alternate);
  border-bottom: 1px solid #1816151a;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  display: flex;
  position: fixed;
}

.navigation-bar-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". Area"
  / .375fr .75fr .375fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.navigation-bar-logo {
  filter: brightness(9999%);
  color: var(--link-color--link-alternate);
}

.navigation-bar-menu {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.navigation-bar-button-wrapper {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
}

.navigation-menu-button {
  padding: 0;
}

.large-padding {
  padding-top: 9rem;
  padding-bottom: 3rem;
}

.partner-logos {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.logos-section {
  max-width: 20rem;
}

.logo-list {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: grid;
}

.logo-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section-expertise {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-secondary);
}

.section-fuer-wen {
  background-color: #ffffff;
  color: #191615;
}

.section-das-problem {
  background-color: #ffffff;
  color: #191615;
}

.section-unsere-rolle {
  background-color: #ffffff;
  color: #191615;
}

.content-layout {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 3rem;
  display: flex;
}

.main-content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template: "Area-4 Area-4"
  / 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  padding-top: 7rem;
  padding-bottom: 3em;
  display: grid;
  overflow: hidden;
}

.list-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.expertise-image {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: 100%;
}

.section-planning {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-secondary);
}

.planning-layout {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.planning-content {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  overflow: hidden;
}

.planning-image-wrapper {
  border-radius: var(--ridus--s);
  overflow: hidden;
}

.planning-image {
  width: 100%;
  height: 100%;
}

.section-result {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
}

.result-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 0;
  display: grid;
}

.result-list.with-margin {
  grid-row-gap: .8rem;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  padding-top: 0;
}

.result-item {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-neutral--neutral-lightest);
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  padding: 1.5rem;
  transition: background-color .2s;
  display: flex;
  overflow: visible;
}

.result-item:hover, .result-item.background-yellow {
  background-color: var(--base-color-brand--cream);
}

.result-item.background-yellow:hover {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.result-content {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.item-number {
  color: var(--text-color--text-primary);
  font-size: var(--fluid-font-size--8xl);
  font-weight: 500;
  line-height: 1.3;
}

.result-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.result-image.rounded {
  border-radius: 10px;
}

.section-solution {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-secondary);
}

.solution-image {
  width: 100%;
  height: 100%;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section-team {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-secondary);
  overflow: hidden;
}

.team-component {
  background-color: #0000;
  height: auto;
  padding-bottom: 6rem;
  position: relative;
}

.team-mask {
  width: 33.33%;
  overflow: visible;
}

.team-slide {
  padding-right: 3rem;
}

.team-member {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team-image-wrapper {
  border-radius: var(--ridus--s);
  width: 100%;
  overflow: hidden;
}

.member-image {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.team-arrow {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-neutral--neutral-lightest);
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: background-color .2s;
  display: flex;
  inset: auto 0% 0% auto;
}

.team-arrow:hover {
  background-color: var(--base-color-neutral--neutral-lighter);
}

.team-arrow.left {
  right: 4rem;
}

.arrow-icon {
  color: var(--base-color-neutral--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.slide-navigation {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.section-testimonial {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.testimonial-component {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.testimonial-slide {
  padding-left: 4rem;
  padding-right: 4rem;
}

.testimonial-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.client-logo {
  max-height: 3.5rem;
}

.client-image-wrapper {
  margin-bottom: 1rem;
}

.client-image {
  border-radius: var(--ridus--s);
  object-fit: cover;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

.testimonial-arrow {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-neutral--neutral-lighter);
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: background-color .2s;
  display: flex;
}

.testimonial-arrow:hover {
  background-color: var(--base-color-neutral--neutral-light);
}

.testimonial-icon {
  color: var(--base-color-neutral--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.testimonial-slide-navigation {
  height: 1.75rem;
  font-size: .5rem;
}

.section-faq {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-secondary);
}

.faqs-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template: ". Area"
  / .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 7rem;
  padding-bottom: 3rem;
  display: grid;
  overflow: hidden;
}

.faqs-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq-accordion {
  border: 1px solid var(--border-color--border-secondary);
  border-radius: var(--ridus--s);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: background-color .2s;
}

.faq-accordion:hover {
  border-color: var(--base-color-brand--cream);
  background-color: var(--base-color-brand--cream);
}

.faq-question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faqs-icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.faq-answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.section-contact {
  background-color: var(--background-color--background-alternate);
  color: var(--text-color--text-secondary);
}

.contact-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  padding-top: 7rem;
  display: grid;
  overflow: hidden;
}

.form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.contact-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-message {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-system--success-green);
  padding: 1.5rem;
}

.success-text {
  color: var(--base-color-system--success-green-light);
  font-weight: 400;
}

.error-message {
  background-color: var(--base-color-system--error-red);
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.error-text {
  color: var(--base-color-system--error-red-light);
}

.contact-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.footer {
  background-color: var(--background-color--background-primary);
}

.footer-top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer-logo-link {
  float: none;
  padding-left: 0;
}

.footer-menu-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer-link-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.divider {
  background-color: var(--base-color-neutral--neutral-lightest);
  width: 100%;
  height: 1px;
}

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

.footer-credit-text {
  color: var(--text-color--text-secondary);
  font-size: .875rem;
}

.footer-legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.layout486_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.layout497_tab-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border-color--border-primary);
  opacity: .24;
  background-color: #0000;
  padding: 2rem 0;
  display: flex;
}

.layout497_tab-link.w--current {
  opacity: 1;
  background-color: #0000;
  border-left-color: #000;
}

.button-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--link-color--link-primary);
  -webkit-text-stroke-color: var(--base-color-brand--purple);
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button-link:hover {
  color: var(--base-color-neutral--neutral);
}

.button-link.is-alternate {
  color: var(--link-color--link-alternate);
}

.button-link.is-alternate:hover {
  color: var(--link-color--link-secondary);
}

.button-text {
  z-index: 1;
  letter-spacing: .5px;
  color: inherit;
  justify-content: flex-start;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

.button-text.is-alternate {
  color: inherit;
  font-weight: 400;
}

.button-text.link-6:hover {
  -webkit-text-stroke-color: var(--base-color-brand--purple);
}

.button-icon-wrap {
  color: #f0f0f0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-icon {
  color: var(--base-color-neutral--neutral-darkest);
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.button-icon.is-absolute {
  z-index: 2;
  position: absolute;
  transform: translate(-30px);
}

.button-icon.is-alternate {
  color: var(--base-color-neutral--white);
}

.navigation-bar-menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  display: flex;
  position: relative;
}

.full-width-container-logo {
  width: 100%;
  max-width: none;
}

.partner-logo {
  color: var(--link-color--link-alternate);
}

.section-transformation {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-secondary);
}

.transformation-layout {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.transformation-content {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  overflow: hidden;
}

.transformation-image {
  width: 100%;
  height: 100%;
}

.result-layout {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.navigation-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--link-color--link-alternate);
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.navigation-link:hover {
  color: var(--link-color--link-secondary);
}

.navigation-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
  text-align: center;
  border-radius: .75rem;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.navigation-button:hover {
  background-color: var(--base-color-neutral--neutral-lighter);
}

.navigation-button.no-margin {
  padding: .5rem 1rem;
}

.navigation-button.no-margin:hover, .navigation-button.no-margin.hover {
  border-color: var(--base-color-brand--purple);
  background-color: var(--base-color-brand--purple);
  color: var(--base-color-brand--white);
}

.link {
  text-decoration: none;
}

.header {
  grid-template-rows: auto;
}

.content-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.color-box {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-brand--black);
  width: 4rem;
  height: 4rem;
}

.color-box.white {
  border: 1px solid var(--border-color--border-secondary);
  background-color: var(--base-color-brand--white);
}

.color-box.orange {
  background-color: var(--base-color-brand--orange);
}

.color-box.yellow {
  background-color: var(--base-color-brand--cream);
}

.color-box.neutral-lightest {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.color-box.neutral-lighter {
  background-color: var(--base-color-neutral--neutral-lighter);
}

.color-box.neutral-light {
  background-color: var(--base-color-neutral--neutral-light);
}

.color-box.neutral {
  background-color: var(--base-color-neutral--neutral);
}

.color-box.neutral-dark {
  background-color: var(--base-color-neutral--neutral-dark);
}

.color-box.neutral-darker {
  background-color: var(--base-color-neutral--neutral-darker);
}

.color-box.neutral-darkest {
  background-color: var(--base-color-neutral--neutral-darkest);
}

.color-box.success-green {
  background-color: var(--base-color-system--success-green);
}

.color-box.success-green-light {
  background-color: var(--base-color-system--success-green-light);
}

.color-box.error-red {
  background-color: var(--base-color-system--error-red);
}

.color-box.error-red-light {
  background-color: var(--base-color-system--error-red-light);
}

.color-box.text-primary {
  background-color: var(--text-color--text-primary);
}

.color-box.text-secondary {
  background-color: var(--text-color--text-secondary);
}

.color-box.text-alternate {
  border: 1px solid var(--border-color--border-secondary);
  background-color: var(--text-color--text-alternate);
}

.color-box.text-success {
  background-color: var(--text-color--text-success);
}

.color-box.text-error {
  background-color: var(--text-color--text-error);
}

.color-box.background-primary {
  border: 1px solid var(--border-color--border-secondary);
  background-color: var(--background-color--background-primary);
}

.color-box.background-secondary {
  background-color: var(--background-color--background-secondary);
}

.color-box.background-tertiary {
  background-color: var(--background-color--background-tertiary);
}

.color-box.background-alternate {
  background-color: var(--background-color--background-alternate);
}

.color-box.background-success {
  background-color: var(--background-color--background-success);
}

.color-box.background-error {
  background-color: var(--background-color--background-error);
}

.color-box.border-primary {
  background-color: var(--border-color--border-primary);
}

.color-box.border-secondary {
  background-color: var(--border-color--border-secondary);
}

.color-box.border-alternate {
  border: 1px solid var(--border-color--border-secondary);
  background-color: var(--border-color--border-alternate);
}

.color-box.link-primary {
  background-color: var(--link-color--link-primary);
}

.color-box.link-secondary {
  background-color: var(--link-color--link-secondary);
}

.color-box.link-alternate {
  border: 1px solid var(--border-color--border-secondary);
  background-color: var(--link-color--link-alternate);
}

.styleguide-form-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding: 1.5rem;
  display: grid;
}

.styleguide-form-list.background-color-black {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.back-to-home {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-block;
}

.navigation-bar-menu-main {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.meduim-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.image {
  width: 100%;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.div-block {
  grid-column-gap: var(--font-size--xl);
  grid-row-gap: var(--font-size--xl);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.buy-container {
  grid-column-gap: var(--font-size--base);
  grid-row-gap: var(--font-size--base);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.banner-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
  text-align: center;
  border-radius: .75rem;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.banner-button:hover {
  background-color: var(--base-color-neutral--neutral-lighter);
}

.login_right-linkbox {
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  text-decoration: none;
  display: flex;
}

.login_right-linkbox:hover {
  background-image: linear-gradient(90deg, #302b2b 67%, #0000);
}

.login_form {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.login_bottom-link {
  color: #000;
  font-weight: 600;
  transition: all .3s;
}

.login_bottom-link:hover {
  color: #00000096;
}

.login_gradient {
  filter: blur(100px);
  background-image: radial-gradient(circle, #0000 70%, #55747e 83%), radial-gradient(circle, #8f6072 14%, #728c8d 82%, #384c59 88%);
  width: 80%;
  height: 50%;
  position: absolute;
  inset: -20% auto auto -15%;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-small.text-color-lightgray {
  color: #d0d4d2;
}

.login_left-top {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.login_right {
  background-color: #ff00;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login_submit-button {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 600;
  transition: all .3s;
}

.login_submit-button:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  font-weight: 600;
}

.login_box {
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.text-size-regular {
  font-size: 1rem;
}

.text-size-regular.text-weight-normal {
  margin-bottom: 0;
}

.login_right-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 69%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.login_right-textbox {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.login_text-field {
  color: #000;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 0;
}

.login_text-field:focus-visible, .login_text-field[data-wf-focus-visible] {
  border-color: #000;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.login-line {
  background-color: #2a3233;
  width: 97%;
  height: 1px;
  display: flex;
}

.login_link {
  color: #000;
  font-weight: 600;
  transition: all .3s;
}

.login_link:hover {
  color: #000;
  transform: scale(1.025);
}

.login_left {
  width: 50%;
}

.login_left.background-color-alternate {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.login_checkbox-feld {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 15px;
  display: flex;
}

.login_icon-box {
  background-color: #3e4138;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.login_bottom-text {
  color: #626262;
  margin-top: 20px;
}

.text-size-xlarg {
  font-size: 1.875rem;
}

.login_wrap {
  border-radius: 10px;
  min-height: 85vh;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 80px #0003;
}

.section_login {
  background-color: #ddd;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.checkbox-2 {
  margin-top: 0;
}

.nav_fixed {
  position: absolute;
  inset: 0% 0% auto;
}

.price-card-base {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  display: flex;
}

.check {
  filter: hue-rotate(358deg);
  color: var(--text-color--text-secondary);
  background-color: #0000;
  width: 24px;
  margin-right: 16px;
}

.content-h1 {
  z-index: 2;
  font-family: var(--font-family--heading);
  color: var(--text-color--text-primary);
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 55px;
  line-height: 1.1;
  position: relative;
}

.pricing-grid {
  grid-column-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.pricing {
  font-size: 22px;
  line-height: 44px;
}

.pricing.white-text {
  color: var(--text-color--text-primary);
}

.price-card {
  background-color: var(--base-color-neutral--neutral-lightest);
  border: 1px #000;
  border-radius: .75rem;
  padding: 32px 34px;
  position: relative;
}

.price-card.featured {
  background-color: #f9c565;
  border-radius: .75rem;
  position: relative;
  top: -35px;
  box-shadow: 5px 9px 3px #ce901d33;
}

.pricing-features {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  margin-top: 22px;
  margin-bottom: 32px;
}

.check-wrap {
  align-items: center;
  display: flex;
}

.pricing-section {
  background-color: #efeffc00;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 100px 3% 140px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-2 {
  background-color: var(--base-color-neutral--neutral-lighter);
  color: var(--text-color--text-secondary);
  -webkit-text-stroke-color: #c9b89a;
  border-radius: .75rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 50px;
  margin-top: auto;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: color .2s, box-shadow .1s, background-color .1s, transform .1s;
  display: flex;
  position: static;
}

.button-2:hover {
  color: #fff;
  background-color: #ce901d;
  transform: translate(0, -3px);
  box-shadow: 4px 6px 3px #0000001a;
}

.button-2.button-white {
  color: #ce901d;
  background-color: #fff;
}

.button-2.button-white:hover {
  color: #000;
  background-color: #fff;
}

.button-2.fixed-button {
  position: absolute;
}

.button-2.top-margin {
  box-sizing: border-box;
  clear: none;
  object-fit: fill;
  object-position: 50% 50%;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: auto 0 1rem;
  padding-top: 9px;
  position: absolute;
  bottom: .5rem;
  left: 2rem;
  right: 2rem;
}

.pricing-text {
  color: var(--text-color--text-secondary);
  font-size: 15px;
}

.pricing-text.white-text {
  color: var(--text-color--text-secondary);
}

.length-text {
  color: var(--text-color--text-secondary);
  font-size: 22px;
}

.length-text.white-text {
  color: #191615;
}

.pricing-base {
  background-color: #fff;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 250px;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.price-type {
  color: var(--text-color--text-primary);
  font-size: var(--font-size--3xl);
  margin-top: 0;
}

.price-type.white-text {
  color: var(--text-color--text-primary);
}

.title-wrap {
  color: #7b88a8;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.text-block {
  color: var(--text-color--text-secondary);
  font-size: var(--font-size--s);
  text-align: left;
  font-weight: 400;
  line-height: 27px;
}

.feature-text {
  color: var(--text-color--text-primary);
  font-size: 15px;
}

.feature-text.white-text {
  color: var(--text-color--text-primary);
}

.pricing-section-2 {
  background-color: #efeffc00;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 7rem 3% 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bold-text {
  color: var(--text-color--text-primary);
}

.bold-text-2 {
  font-family: var(--font-family--heading);
  color: var(--text-color--text-primary);
  font-size: var(--fluid-font-size--6xl);
  font-weight: 500;
  line-height: 120%;
}

.heading {
  color: var(--border-color--border-alternate);
}

.paragraph {
  color: var(--text-color--text-secondary);
}

.paragraph:hover {
  -webkit-text-stroke-color: var(--base-color-brand--cream);
}

.card-bottom {
  padding: 20px;
}

.ms-profile-upload {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  background-color: #3b3b3b;
  border: 1px solid #4c4c4c;
  border-radius: 8px;
  align-items: center;
  height: 32px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 27px;
  text-decoration: none;
  display: flex;
}

.label {
  color: var(--text-color--text-alternate);
  -webkit-text-stroke-color: var(--text-color--text-alternate);
  margin-bottom: 10px;
  font-weight: 400;
}

.ms-profile-image-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.tabs-menu {
  grid-column-gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0;
  display: flex;
}

.form-row {
  grid-column-gap: 15px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.profile-card {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  text-align: left;
  background-color: #0000005c;
  border: 2px solid #3f3f3f;
  border-radius: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding-left: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px #0003;
}

.share-button {
  background-color: var(--base-color-neutral--neutral-darker);
  color: #fff;
  border: 2px solid #3f3f3f;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 2px 11px #0003;
}

.share-button:hover {
  box-shadow: 0 2px 11px #0000008c, inset -3px 3px 11px -8px #fff3;
}

.ms-profile-image-preview {
  background-color: #4c4c4c;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

.field {
  color: #fff;
  background-color: #3b3b3b;
  border: 1px solid #4d4d4d;
  border-radius: 8px;
  height: 40px;
  margin-bottom: 0;
  padding: 0 0 0 15px;
  transition: box-shadow .2s;
  box-shadow: 0 2px 3px #0000001a;
}

.field:focus-visible, .field[data-wf-focus-visible] {
  color: #fff;
}

.field.textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
}

.form-field {
  flex: 1;
  margin-bottom: 20px;
}

.form-block-2 {
  margin-bottom: 0;
}

.tab-link {
  opacity: .4;
  color: #fff;
  text-align: center;
  background-color: #3f3f3f;
  border: 2px solid #3f3f3f;
  border-radius: 8px;
  flex: 1;
}

.tab-link.w--current {
  opacity: 1;
  background-color: #3f3f3f;
  box-shadow: inset -6px 0 13px -1px #ffffff0d;
}

.dash_modal {
  z-index: 9999;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
  position: relative;
  inset: 0%;
}

.social-btn {
  color: #272b31;
  border: 1px solid #b7bbd1;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 40px 12px 15px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  box-shadow: 0 3px 6px -1px #1d01501a;
}

.social-btn:hover {
  box-shadow: none;
  border-color: #374252;
}

.social-btn:focus {
  border: 1px solid #000;
}

.social-btn::placeholder {
  color: #6e6e6e;
}

.social-btn.is-profile {
  float: left;
  clear: both;
  width: 280px;
  margin-right: auto;
}

.text-size-large {
  font-size: 1.25rem;
}

.disconnect-link {
  text-align: right;
  padding: 13px;
  line-height: 1.3;
  text-decoration: underline;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.disconnect-link:hover {
  color: #000;
}

.credit_cost {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}

.social-content {
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.profile_field-wrapper {
  width: 65%;
  min-height: 30px;
}

.profile_field-wrapper.has-button {
  justify-content: space-between;
  align-items: center;
  max-width: none;
  display: flex;
}

.no-margin {
  margin: 0;
}

.profile_h1 {
  font-size: 1.2rem;
  font-weight: 700;
}

.credit_total {
  margin-bottom: 3rem;
  font-weight: 700;
}

.modal_close {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.dash_nav-link {
  opacity: .7;
  color: #000;
  text-align: center;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  min-width: 140px;
  padding: .6rem 1.5rem .6rem 1rem;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.dash_nav-link:hover {
  opacity: 1;
  background-color: #f6f6f7;
}

.dash_nav-link.w--current {
  opacity: 1;
  color: #fff;
  background-color: #5d52f7;
  border-radius: 10px;
  font-weight: 600;
}

.dash_nav-link.is-profile {
  border: 1px solid #b7bbd1;
  justify-content: center;
  width: 104px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: .3rem;
  padding-bottom: .3rem;
}

.dash_nav-link.is-profile:hover {
  border-color: #5d52f7;
}

.dash_nav-link.is-profile.w--current {
  border-style: none;
}

.double-click {
  opacity: 0;
  text-align: center;
  font-size: 12px;
  transition: opacity .2s;
  position: absolute;
  top: -27.3203px;
  left: -28.3203px;
  transform: rotate(-30deg);
}

.dash_logo-wrap {
  height: 100px;
}

.widget-embed {
  flex: 1;
  min-width: 86vh;
  height: 100%;
}

.social-image {
  width: 24px;
}

.widget-svg-small {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.profile-checkbox {
  width: 22px;
  height: 22px;
  margin-top: 0;
}

.dash_nav-wrap {
  z-index: 10;
  color: #000;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 200px;
  height: auto;
  padding: 3rem 1rem 1.5rem;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.dash_icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  margin-left: -5px;
  margin-right: 6px;
  padding: 3px;
  display: flex;
  overflow: hidden;
}

.dash_icon.profile {
  padding: 2px;
}

.dash_icon.wallet {
  padding: 4px;
}

.button-icon-2 {
  justify-content: center;
  align-items: center;
  width: 18px;
  min-width: 18px;
  height: 21px;
  min-height: 24px;
  margin-right: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  display: flex;
  overflow: hidden;
}

.button-icon-2.after {
  min-height: 21px;
  margin-left: 6px;
  margin-right: 0;
}

.widget-close {
  z-index: 5;
  color: #3f3e46;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: -.5vw;
  display: flex;
  position: absolute;
  inset: auto 1vw 100% auto;
}

.widget-close:hover {
  background-color: #002aff1a;
}

.profile_sub-head {
  font-size: .8rem;
}

.widget-svg {
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.widget-mobile {
  display: none;
}

.input {
  color: #000;
  background-color: #fff;
  border: 1px solid #b7bbd1;
  border-radius: 6px;
  height: 48px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 18px;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 3px 6px -2px #1d01501a;
}

.input:hover {
  box-shadow: none;
  border-color: #5d52f7;
}

.input:focus {
  border: 1px solid #434de7;
}

.input::placeholder {
  color: #6e6e6e;
}

.input.is-profile {
  height: 36px;
  font-size: .9rem;
}

.input.is-profile.is-2nd-half {
  border-radius: 6px;
  margin-left: -6px;
  position: relative;
}

.input.is-profile.is-2nd-half.is-zip {
  max-width: 100px;
  margin-left: -13px;
}

.input.is-profile.is-state {
  padding-top: 8px;
  padding-left: 14px;
}

.dash_profile-nav-link {
  color: #272b31;
  background-color: #0000;
  border-radius: 6px;
  margin-right: .25rem;
  padding: .5em 1rem .4rem;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color .2s, background-color .2s;
}

.dash_profile-nav-link:hover {
  color: #5d52f7;
  background-color: #fff;
}

.dash_profile-nav-link.w--current {
  color: #5d52f7;
  background-color: #e0e4fc;
  font-weight: 700;
}

.dash_profile-nav-link.is-logout, .dash_profile-nav-link.is-logout-copy {
  background-color: #fff;
  margin-right: 0;
  padding-left: .7rem;
  display: flex;
  position: absolute;
  inset: 8px 10px auto auto;
}

.dash_profile-nav-link.is-logout-copy.button {
  border-color: var(--base-color-neutral--neutral-lighter);
  background-color: var(--base-color-neutral--neutral-lighter);
  color: var(--base-color-brand--white);
  padding: .75em 1.5rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.dash_profile-nav-link.is-logout-copy.button:hover {
  background-color: var(--base-color-brand--black);
}

.credit_tabs {
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.credit-tab {
  background-color: #0000;
  border: 1px solid #b7bbd1;
  border-radius: 6px;
  margin-right: .5rem;
}

.credit-tab.w--current {
  color: #5d52f7;
  background-color: #0000;
  border-color: #5d52f7;
  font-weight: 700;
}

.credit-tab.last {
  margin-right: 0;
}

.credit-tab-wrap {
  max-width: 570px;
}

.dash_nav-menu {
  margin-bottom: auto;
}

.is-free {
  justify-content: flex-start;
  align-items: center;
  height: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.dash_page {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  padding: 2.7rem 2rem 2rem 240px;
  display: block;
  position: relative;
}

.hide {
  display: none;
}

.profile_form {
  position: relative;
}

.nav_logo {
  height: 1.6875rem;
}

.disconnect-image {
  width: 16px;
}

.disconnect-image.white {
  filter: invert();
}

.profile_label {
  font-family: var(--font-family--text);
  width: 35%;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
}

.profile_label.is-modal {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.dash_header {
  justify-content: space-between;
  align-items: flex-start;
  height: 100px;
  display: flex;
}

.modal_form {
  z-index: 2;
  background-color: #fff;
  border: 1px solid #f2f3ff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 400px;
  max-width: none;
  margin-bottom: 0;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 30px -10px #1d01501a;
}

.profile_label-sub {
  color: #868686;
  margin-top: .3rem;
  font-size: .8rem;
  font-weight: 400;
  display: block;
}

.profile_row {
  border-top: .5px solid #e0e4fc;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  display: flex;
}

.input-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: .5rem;
  display: flex;
  position: relative;
}

.delete-me {
  background-color: #5d52f7;
}

.profile_form-header {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 20px;
  display: flex;
  position: sticky;
  top: 0;
}

.dash_button {
  color: #fff;
  text-align: center;
  background-color: #5d52f7;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: .65rem .975rem .5rem;
  font-size: .9rem;
  font-weight: 500;
  transition: background-color .2s, transform .2s;
}

.dash_button:hover {
  background-color: #342d96;
  transform: translate(0, -4px);
}

.dash_button.grey {
  z-index: 2;
  color: #272b31;
  background-color: #f6f6f7;
  border: 1px solid #b7bbd1;
  position: relative;
}

.dash_button.grey:hover {
  color: #5d52f7;
  background-color: #fff;
  border-color: #5d52f7;
}

.dash_button.is-modal {
  margin-top: 1rem;
}

.spacer-s {
  width: 100%;
  height: 1rem;
}

.relative {
  position: relative;
}

.credit_save {
  color: #3ab549;
  background-color: #f6f6f7;
  border-radius: 100px;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 400;
  display: inline-block;
  transform: scale(.8);
}

.credit_description {
  border-left: 1px solid #5d52f7;
  padding-bottom: .5rem;
  padding-left: 2rem;
}

.flex-row-outer {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.dash_contain {
  max-width: 90%;
}

.dash_content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 25vh;
  margin-left: auto;
  margin-right: auto;
}

.embed-css {
  background-color: #ededed;
  align-items: center;
  height: 5rem;
  padding-left: 2rem;
  font-style: italic;
  display: flex;
}

.widget-wrapper {
  z-index: 9999;
  width: 20vw;
  height: 50vh;
  padding: 1vw;
  position: fixed;
  inset: auto 0 0 auto;
}

.widget-container {
  z-index: 3;
  background-color: #2962ff;
  border: 2px solid #2962ff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: -7px 7px 30px 1px #0003;
}

.dash_h1 {
  color: #272b31;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
}

.dash_user-wrap {
  text-align: center;
  max-width: 200px;
  margin-bottom: .5rem;
  overflow: hidden;
}

.dash_user-email {
  opacity: .6;
  letter-spacing: 1px;
  font-size: .7rem;
}

.modal_close-icon {
  z-index: 10;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  inset: 25px 25px auto auto;
}

.dash_profile-menu {
  background-color: #f6f6f7;
  border-radius: 12px;
  margin-left: -10px;
  padding: 8px;
}

.widget-move {
  opacity: 0;
  color: #fff;
  background-color: #161e27;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: auto 0 100%;
}

.widget-move:hover {
  opacity: 1;
}

.widget-move.down {
  top: 100%;
  bottom: auto;
  transform: rotate(180deg);
}

.widget-move.left {
  margin: auto 0;
  inset: 0 100% 0 auto;
  transform: rotate(-90deg);
}

.widget-move.right {
  margin: auto 0;
  inset: 0 auto 0 100%;
  transform: rotate(90deg);
}

.dash_user-name {
  font-size: .9rem;
}

.form-container {
  flex-flow: column wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
  position: relative;
}

.social-content-2 {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.form-div-line {
  background-color: #8d95a180;
  width: 40%;
  height: .8px;
}

.relative-2 {
  width: 100%;
  position: relative;
}

.disconnect-link-2 {
  text-align: right;
  padding: 13px;
  text-decoration: underline;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.disconnect-link-2:hover {
  color: #000;
}

.social-btn-2 {
  color: #000;
  border: 1px solid #dcdce5;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 40px 12px 15px;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  box-shadow: 0 1px 2px #dcdce580;
}

.social-btn-2:hover {
  box-shadow: none;
  border-color: #374252;
}

.social-btn-2:focus {
  border: 1px solid #000;
}

.social-btn-2::placeholder {
  color: #6e6e6e;
}

.social-btn-2.google {
  background-color: #fff;
  border-color: #8d95a1;
}

.social-btn-2.facebook:hover {
  border-color: #1777f2;
}

.social-btn-2.facebook.solid {
  color: #fff;
  background-color: #1777f2;
  border-style: none;
  font-weight: 400;
}

.social-btn-2.facebook.solid:hover {
  background-color: #0053bd;
}

.social-btn-2.google:hover {
  border-color: #4285f4;
}

.input-label {
  z-index: 2;
  background-color: #0000;
  border-radius: 3px;
  margin-bottom: 6px;
  font-size: 1em;
  font-weight: 600;
  line-height: 17px;
  display: inline-block;
  position: relative;
}

._100 {
  width: 100%;
}

.show-hide {
  color: #16192c;
  background-color: #0000;
  align-items: center;
  padding: 0;
  font-size: .9rem;
  line-height: 1.2;
  display: flex;
}

.show-hide:hover {
  color: #16192cb3;
}

.show-hide.w--current {
  display: none;
}

.input-row {
  justify-content: space-between;
  display: flex;
}

.form-block-3 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.svg {
  justify-content: center;
  align-items: center;
  width: 16px;
  margin-right: .4em;
  display: flex;
}

.text-field-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.text-field-wrapper.name {
  margin-right: 20px;
}

.show-hide-wrap {
  z-index: 4;
  padding-bottom: 8px;
  line-height: 1;
  position: absolute;
  inset: 38px 12% auto auto;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: .1rem solid #000;
  justify-content: center;
  align-items: center;
  padding: .8rem 1.25rem .6rem;
  font-weight: 400;
  transition: all .45s cubic-bezier(.215, .61, .355, 1);
}

.button-3:hover {
  color: #000;
  background-color: #fff;
  border: .1rem solid #000;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-field {
  background-color: #fff;
  background-image: linear-gradient(#fff, #fff);
  border-top: 1px solid #0000;
  border-bottom: 1px solid #424242;
  border-left: 1px solid #0000;
  border-right: 0 #0000;
  border-radius: 0;
  padding-left: 12px;
}

.text-field:hover {
  border: 1px solid #000;
}

.form-divider {
  color: #000c;
  letter-spacing: 2px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 12px;
  display: flex;
}

.checkbox-label-2 {
  color: #000c;
  font-weight: 300;
}

.form-div-line-2 {
  background-color: #e4e4e4;
  width: 40%;
  height: .8px;
}

.social-content-3 {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.margin-bottom-2 {
  margin-bottom: 15px;
}

.container-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.short-page-wrapper {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-width: 50%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar {
  padding-top: 4vh;
  padding-bottom: 4vh;
}

.footer-flex-container {
  text-align: left;
  justify-content: space-between;
  display: flex;
}

.colorful-section {
  color: #fff;
  background-color: #434de7;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 10vh 5%;
  font-size: 17px;
  line-height: 29px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.colorful-section.video {
  background-color: #0000;
  width: 50%;
}

.text-field-2 {
  color: #000;
  border: 1px solid #dcdce5;
  border-radius: 6px;
  height: 42px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 2px #dcdce580;
}

.text-field-2:hover {
  border-color: #000c;
  box-shadow: 0 1px 4px #dcdce5e6;
}

.text-field-2:focus {
  border: 1px solid #434de7;
}

.text-field-2::placeholder {
  color: #6e6e6e;
}

.text-field-2.email-field {
  margin-bottom: 12px;
}

.button-4 {
  background-color: #434de7;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 1px 20px #22222229;
}

.button-4:hover {
  background-color: #272d88;
  box-shadow: 0 5px 30px #22222229;
}

.button-4.black {
  background-color: #000;
}

.button-4.black:hover {
  background-color: #434de7;
}

.form-divider-2 {
  color: #000c;
  letter-spacing: 2px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  display: flex;
}

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

.footer-2 {
  text-align: center;
  border-bottom: 1px solid #dcdce5;
  align-items: flex-start;
  padding-top: 10vh;
  padding-bottom: 5vh;
  font-size: 13px;
}

.signup-header {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
}

.field-description {
  color: #0009;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 300;
}

.split-page-wrapper {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fake-logo {
  height: 20px;
  font-size: 20px;
  font-weight: 600;
}

.flex-stack-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.form-wrapper {
  z-index: 50;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 360px;
  display: flex;
  position: relative;
  overflow: visible;
}

.checkbox-field {
  margin-top: 5px;
  margin-bottom: 20px;
}

.form-field-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
}

.link-2 {
  border-bottom: 1px dashed #7b83ff;
}

.link-2:hover {
  color: #272d88;
}

.link-2.black {
  color: #000;
  border-bottom-color: #000;
  font-weight: 500;
}

.checkbox-3 {
  width: 14px;
  height: 14px;
}

.checkbox-3.w--redirected-checked {
  background-color: #2d323e;
}

.field-label {
  color: #374252;
  margin-bottom: 3px;
  font-size: 13.5px;
  font-weight: 600;
}

.text-field-wrapper-2 {
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
}

.text-field-wrapper-2.password-wrap {
  height: 0;
  margin-left: -2px;
  margin-right: -2px;
  padding-left: 2px;
  padding-right: 2px;
  transition: height .2s;
  overflow: hidden;
}

.body {
  background-color: var(--base-color-brand--white);
}

.fake-logo-center {
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.link-3 {
  color: var(--base-color-brand--orange);
  font-weight: 400;
}

.link-3:hover {
  color: #d7d8db;
  text-decoration: underline;
}

.fake-logo-2 {
  color: #353e86;
  background-color: #4b5abd;
  background-image: linear-gradient(6deg, #353e86, #475be0);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px;
  font-size: 20px;
  font-weight: 600;
}

.button-5 {
  background-color: var(--base-color-neutral--neutral-light);
  color: #d7d8db;
  border: 1px solid #3c3f44;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  margin-top: 14px;
  font-weight: 400;
  transition: background-color .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 1px 20px #22222229;
}

.button-5:hover {
  background-color: #000;
  box-shadow: 0 5px 30px #22222229;
}

.input-styling {
  display: none;
}

.logo-svg {
  color: #404ba0;
  justify-content: center;
  align-items: center;
  width: 131%;
  margin-top: -29px;
  margin-bottom: -29px;
  display: flex;
}

.footer-3 {
  text-align: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  font-size: 13px;
}

.copy-me {
  background-color: #0404f0;
}

.hide-on-load-2 {
  margin-top: 10px;
}

.grey-text {
  color: var(--text-color--text-primary);
}

.input-2 {
  color: #fff;
  background-color: #0000;
  border: 1px solid #3c3f44;
  border-radius: 6px;
  height: 42px;
  min-height: 42px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
}

.input-2:hover {
  border-color: #4b5abd;
}

.input-2:focus {
  border: 1px solid #4b5abd;
}

.input-2::placeholder {
  color: #8a8a8a;
}

.input-2.valid {
  border-color: #00977c;
}

.input-2.invalid {
  border-color: #f52e2e;
}

.input-description {
  text-align: left;
  letter-spacing: .5px;
  margin-top: 3px;
  padding-left: 12px;
  font-size: 12px;
  font-weight: 300;
  transition: height .2s;
  overflow: hidden;
}

.input-description.error {
  color: #ff7070;
}

.input-description.success {
  color: #0b9;
}

.form-header {
  color: var(--base-color-brand--orange);
  margin-top: 26px;
  margin-bottom: 26px;
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
}

.input-wrapper-2 {
  flex-direction: column;
  width: 100%;
  padding-bottom: .5rem;
  display: flex;
}

.input-wrapper-2.hidden {
  transition: height .2s;
  overflow: hidden;
}

.form-wrapper-2 {
  z-index: 50;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  max-width: 360px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.short-page-wrapper-2 {
  background-color: var(--background-color--background-primary);
  color: #d7d8db;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 50%;
  min-height: 100vh;
  padding-top: 15vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-4 {
  color: var(--base-color-brand--orange);
  text-align: left;
}

.field-label-2 {
  color: var(--text-color--text-primary);
  text-align: left;
}

.link-5 {
  color: var(--base-color-brand--orange);
  -webkit-text-stroke-color: var(--base-color-brand--orange);
}

.link-6 {
  color: var(--base-color-brand--orange);
}

.services-heading {
  color: var(--text-color--text-primary);
  font-size: .9rem;
}

.link-7 {
  color: var(--base-color-brand--orange);
}

.link-8 {
  color: var(--link-color--link-primary);
}

.link-8:lang(en) {
  color: var(--base-color-brand--orange);
}

.link-9 {
  color: var(--link-color--link-primary);
}

.link-9:lang(en) {
  color: var(--base-color-brand--orange);
}

.link-10 {
  color: var(--link-color--link-primary);
}

.link-10:lang(en) {
  color: var(--base-color-brand--orange);
}

.heading-h1-2 {
  font-size: 4.5vw;
  font-weight: 500;
  line-height: 120%;
}

.heading-h1-2:lang(en) {
  -webkit-text-stroke-color: var(--base-color-brand--orange);
}

.alt-text-color-2 {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-color: #fff;
}

.image-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.section-pricing {
  margin-top: 0;
  padding-top: 7rem;
}

.grid {
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 0;
}

.service-image {
  margin-bottom: .5rem;
}

.pricing-heading {
  margin-top: 7rem;
}

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

.footer-credit-text-2 {
  color: #7c7a7a;
  font-size: .875rem;
}

.link-11 {
  text-decoration: none;
}

.button-link-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #191615;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button-link-2:hover {
  color: #7c7a7a;
}

.text-small-2 {
  font-size: .9375rem;
}

.text-small-2.color-secondary {
  color: #7c7a7a;
}

.main-wrapper-3 {
  background-color: #fff;
}

.large-padding-2 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.footer-4 {
  background-color: #fff;
}

.image-3 {
  width: 100%;
}

.link-12 {
  text-decoration: none;
}

.heading-h3-2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 120%;
}

.divider-2 {
  background-color: #f3f2f2;
  width: 100%;
  height: 1px;
}

.footer-menu-wrapper-2 {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.heading-h6-2 {
  color: #191615;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.global-padding-2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.medium-text-2 {
  color: inherit;
  font-size: 1.125rem;
}

.medium-text-2.text-weight-bold {
  font-weight: 500;
}

.medium-text-2.text-weight-bold.text-color-black {
  color: #191615;
}

.faq-accordion-2 {
  border: 1px solid #c9c8c8;
  border-radius: .5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.bold-text-3 {
  color: var(--base-color-brand--orange);
  font-size: var(--font-size--xl);
}

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

.image-wrapper-2 {
  border-radius: .5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services-list-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.regular-text-2 {
  color: var(--base-color-brand--black);
  font-size: 1rem;
}

.regular-text-2.alt-text-color {
  color: #000;
}

.services-list-item-2 {
  border-bottom: 1px solid #23201e;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.grid-4 {
  grid-row-gap: 15px;
  grid-template: "Area-3 Area-4 Area-4"
                 "Area-6 Area-4 Area-4"
                 "Area-6 Area-7 Area-5"
                 / .6fr .5fr .25fr;
}

.div-block-2 {
  aspect-ratio: 16 / 9;
}

.video-2 {
  aspect-ratio: auto;
}

.video-wrapper {
  border-radius: var(--font-size--s);
  width: 100%;
  height: 100%;
  position: relative;
}

.image-4 {
  text-align: left;
  position: static;
}

.grid-5 {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cta {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-neutral--neutral-lightest);
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 0 1.5rem;
  transition: background-color .2s;
  display: flex;
  overflow: visible;
}

.cta:hover, .cta.background-yellow {
  background-color: var(--base-color-brand--cream);
}

.cta.background-yellow:hover {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.div-block-3, .icon-div {
  width: 64px;
  height: 64px;
}

.link-13 {
  color: var(--base-color-brand--orange);
  -webkit-text-stroke-color: var(--base-color-brand--orange);
}

.services-prompt {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.services-detailed {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.services-icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.services-accordion {
  border: 1px solid var(--border-color--border-secondary);
  border-radius: var(--ridus--s);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: background-color .2s;
}

.services-accordion:hover {
  border-color: var(--base-color-brand--cream);
  background-color: var(--base-color-brand--cream);
}

.subheading-services {
  font-size: var(--font-size--s);
  padding-left: 0;
  font-weight: 500;
  line-height: 120%;
}

.subheading-services.main-text-color {
  color: var(--base-color-neutral--neutral-darkest);
  font-size: var(--font-size--xl);
}

.bold-text-4 {
  color: var(--base-color-brand--white);
}

.heading-h4-services {
  font-size: var(--font-size--xl);
  font-weight: 400;
  line-height: 120%;
}

.grid-6 {
  grid-template-rows: auto;
  grid-template-areas: "Area Area-2";
}

.grid-7 {
  grid-template-rows: auto;
  grid-template-areas: "Area-2 Area";
}

.grid-8, .grid-9, .grid-10, .grid-11 {
  grid-template-rows: auto;
  grid-template-areas: "Area Area-2";
}

.grid-12 {
  grid-template-rows: auto;
}

.image-5, .video-3 {
  border-radius: var(--font-size--s);
}

.step-two {
  z-index: 14;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--base-color-brand--orange);
  background-color: var(--base-color-brand--orange);
  opacity: .4;
  border-radius: .625rem .625rem 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 170px;
  padding: .625rem;
  display: flex;
  position: absolute;
  inset: auto 0% 260px auto;
}

.step-two.active {
  border-color: var(--base-color-brand--orange);
  opacity: 1;
  opacity: 1;
}

.step-three {
  z-index: 14;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--base-color-brand--orange);
  background-color: var(--base-color-brand--orange);
  opacity: .4;
  border-radius: .625rem .625rem 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 170px;
  padding: .625rem;
  display: flex;
  position: absolute;
  inset: auto 0% 370px auto;
}

.step-three.active {
  border-color: var(--base-color-brand--orange);
  opacity: 1;
  background-color: var(--base-color-brand--orange);
  opacity: 1;
}

.grid-step-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  height: 500px;
  position: relative;
}

.step-divider-02 {
  z-index: 1;
  border-right: 2px dashed var(--base-color-brand--orange);
  height: 260px;
  position: absolute;
  inset: auto 0% 0%;
}

.step-divider-02.active {
  border-right-color: #585e44;
}

.grid-step {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, .55fr) minmax(200px, 1fr);
}

.step-one {
  z-index: 14;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: .4;
  color: var(--text-color--text-alternate);
  background-color: #000;
  border: 1px solid #585e44;
  border-radius: .625rem .625rem 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 170px;
  padding: .625rem;
  display: flex;
  position: absolute;
  inset: auto 0% 180px auto;
}

.step-one.active {
  border-color: var(--base-color-brand--orange);
  opacity: 1;
}

.step-tab-link {
  background-color: var(--base-color-brand--purple);
  color: #a9ad9b;
  border-radius: 1.25rem;
  padding: .625rem 3.125rem;
  font-size: .875rem;
}

.step-tab-link.w--current {
  background-color: var(--base-color-brand--orange);
}

.step-divider-03 {
  z-index: 1;
  border-right: 2px dashed var(--base-color-brand--orange);
  height: 370px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.step-divider-03.active {
  border-right-color: #585e44;
}

.step-section-title-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.step-section-title {
  color: var(--text-color--text-alternate);
  font-size: 2.75rem;
}

.step-section-description {
  color: var(--text-color--text-alternate);
  margin-bottom: 0;
}

.container-3 {
  padding: var(--page-padding--desktop) 1.875rem;
  background-color: var(--background-color--background-alternate);
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.button-primary {
  color: #161a18;
  text-align: center;
  background-color: #f3ffc9;
  border-radius: .625rem;
  padding: .9375rem 1.5625rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.button-primary:hover {
  background-color: #f9ffe5;
}

.button-primary.outline-button {
  color: #f3ffc9;
  background-color: #0000;
  border: 1px solid #f3ffc9;
}

.button-primary.outline-button:hover {
  color: #000;
}

.step-title {
  font-family: var(--font-family--heading);
  color: var(--text-color--text-alternate);
  margin-top: -3px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3em;
}

.step-tabs {
  flex-flow: column;
}

.step-item {
  background-color: #161a18;
  width: 100%;
  height: 100%;
  position: relative;
}

.step-item.active {
  background-color: var(--base-color-brand--white);
}

.step-icon {
  width: 24px;
  height: 24px;
}

.step-tabs-menu {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--base-color-brand--cream);
  border-radius: 1.875rem;
  flex-flow: row;
  margin-bottom: 1rem;
  padding: .325rem;
  display: inline-flex;
}

.step-divider-01 {
  z-index: 1;
  border-right: 2px dashed #2f3126;
  height: 180px;
  position: absolute;
  inset: auto 0% 0%;
}

.step-divider-01.active {
  border-right-color: var(--base-color-brand--orange);
}

.step-decoration-01 {
  z-index: 1;
  background-color: var(--base-color-brand--orange);
  object-fit: cover;
  width: 100%;
  height: 120%;
  position: absolute;
  inset: auto 0% -17%;
}

.text-block-2, .text-block-3 {
  color: var(--base-color-brand--white);
}

.grid-step-item-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  height: 500px;
  position: relative;
}

.step-divider-4 {
  z-index: 1;
  border-right: 2px dashed var(--base-color-brand--orange);
  opacity: .25;
  height: 260px;
  position: absolute;
  inset: auto 0% 0%;
}

.step-divider-4.active {
  border-right-color: var(--base-color-brand--orange);
  opacity: 100;
}

.step-one-2 {
  z-index: 14;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--base-color-brand--orange);
  background-color: var(--base-color-brand--orange);
  opacity: .4;
  border-radius: .625rem .625rem 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 170px;
  padding: .625rem;
  display: flex;
  position: absolute;
  inset: auto 0% 180px auto;
}

.step-one-2.active {
  opacity: 1;
}

.step-tab-link-2 {
  color: #a9ad9b;
  background-color: #000;
  border-radius: 1.25rem;
  padding: .625rem 3.125rem;
  font-size: .875rem;
}

.step-tab-link-2.w--current {
  background-color: var(--base-color-brand--orange);
  color: var(--base-color-brand--white);
}

.step-divider-5 {
  z-index: 1;
  border-right: 2px dashed var(--base-color-brand--orange);
  opacity: .25;
  height: 370px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.step-divider-5.active {
  border-right-color: var(--base-color-brand--orange);
}

.step-title-2 {
  margin-top: -3px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3em;
}

.step-tabs-menu-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--base-color-neutral--neutral-darker);
  opacity: 1;
  border-radius: 1.875rem;
  flex-flow: row;
  margin-bottom: 1rem;
  padding: .325rem;
  display: inline-flex;
}

.step-divider-6 {
  z-index: 1;
  border-right: 2px dashed var(--base-color-brand--orange);
  opacity: .25;
  height: 180px;
  position: absolute;
  inset: auto 0% 0%;
}

.step-divider-6.active {
  border-right-color: var(--base-color-brand--orange);
  opacity: 100;
}

.step-decoration-2 {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 120%;
  position: absolute;
  inset: auto 0% -17%;
}

.text-block-4, .text-block-5, .text-block-6 {
  color: var(--base-color-brand--white);
}

.footer-social-link {
  border: .9px solid var(--base-color-brand--orange);
  background-color: #0000;
  border-radius: .625rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition-property: all;
  display: flex;
}

.footer-social-link:hover {
  background-color: #2f3126;
  border-color: #2f3126;
}

.footer-title {
  color: var(--base-color-brand--white);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.footer-title.no-margin-bottom {
  color: var(--base-color-brand--white);
  margin-bottom: 0;
}

.footer-links {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
}

.success-message-2 {
  color: #fff;
  text-align: center;
  background-color: #096a39;
  border-radius: .625rem;
  padding: .9375rem;
}

.footer-bottom-item {
  background-color: #161a18;
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
  padding-top: 16px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.footer-link {
  color: var(--text-color--text-alternate);
  flex-flow: wrap;
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.footer-link:hover {
  color: #a9ad9b;
  text-decoration: underline;
}

.footer-link.w--current {
  color: #f3ffc9;
  text-decoration: underline;
}

.footer-contact-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.subscribe-wrap {
  flex-flow: row;
  width: 100%;
  display: flex;
}

.footer-copyright {
  color: var(--text-color--text-alternate);
  align-items: flex-end;
  margin-bottom: 0;
  display: inline-block;
}

.footer-logo-link-2 {
  justify-content: flex-end;
  display: flex;
}

.footer-logo-link-2.w--current {
  flex-flow: row;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: flex-start;
  display: flex;
}

.footer-5 {
  background-color: var(--background-color--background-alternate);
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
  margin-left: .625rem;
  margin-right: .625rem;
  padding-bottom: 1.875rem;
  position: relative;
}

.grid-footer-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: stretch stretch;
  position: relative;
}

.subscribe-form {
  z-index: 1;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}

.bg-footer {
  z-index: 1;
  padding-top: 6.25rem;
  position: relative;
}

.form-subscribe {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.footer-contact-info {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.shap-left {
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -30px 0% auto -30px;
}

.error-message-2 {
  color: #fff;
  text-align: center;
  background-color: #6a0909;
  border-radius: .625rem;
  padding: .9375rem;
}

.footer-logo {
  width: 200px;
  height: 50px;
}

.shap-right {
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -30px -30px auto 0%;
  transform: rotate(90deg);
}

.footer-bottom-wrap {
  z-index: 99;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.shape-bottom-left {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -1px;
  left: -23px;
}

.container-4 {
  background-color: var(--background-color--background-alternate);
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.footer-item {
  z-index: 0;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: #000;
  border-radius: 1.875rem;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1.875rem 1.875rem 5rem;
  display: flex;
  position: relative;
}

.footer-social-inline {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.footer-wrap.center {
  place-items: center;
}

.shape-bottom-right {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -1px;
  right: -23px;
  transform: rotate(90deg);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
}

.form-input-2 {
  color: #a9ad9b;
  background-color: #000;
  border: 1px solid #2f3126;
  border-radius: .625rem;
  height: 64px;
  margin-bottom: .625rem;
  padding: 1.25rem;
  font-size: 1rem;
  line-height: 1.4em;
  transition: all .3s ease-in-out;
}

.form-input-2:focus {
  color: #a9ad9b;
  border: 1px solid #a9ad9b;
}

.form-input-2::placeholder {
  color: #a9ad9b;
}

.form-input-2.form-input-subscribe {
  color: #a9ad9b;
  border-color: #8d9180;
  width: 100%;
  height: 53.4px;
  margin-bottom: 0;
}

.form-input-2.form-input-subscribe:focus {
  border-color: #f3ffc9;
}

.footer-case-study {
  z-index: 99;
  position: relative;
}

.grid-footer-contact {
  z-index: -1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.text-block-7 {
  color: var(--text-color--text-alternate);
}

.service-tabs-top-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-tabs-info {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.section-title {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.375rem;
}

.section-title.no-margin-bottom {
  margin-bottom: 0;
}

.service-tabs-list-item {
  color: #a9ad9b;
  background-color: #161a18;
  border: 1px solid #2f3126;
  border-radius: .325rem;
  padding: .325rem .625rem;
  font-size: .875rem;
  line-height: 1.3em;
}

.service-tab-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.service-tabs-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #a9ad9b;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.service-tabs-item.w--current {
  color: #a9ad9b;
  background-color: #161a18;
}

.service-tabs-title {
  color: var(--base-color-brand--white);
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.service-tabs-icon {
  width: 24px;
  height: 24px;
}

.service-tabs {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.service-dashboard-01 {
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% -15px;
}

.service-dashboard-03 {
  align-self: center;
  width: 100%;
  height: 380px;
  position: absolute;
  inset: auto 0% -15px;
}

.service-tabs-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: wrap;
  padding-bottom: .325rem;
  padding-left: .325rem;
  display: flex;
}

.service-tabs-description {
  color: var(--base-color-brand--white);
  margin-top: 1.875rem;
}

.service-tab-image {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-tab-link {
  background-color: var(--orange-background);
  color: var(--base-color-brand--white);
  -webkit-text-stroke-color: var(--base-color-brand--white);
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 1.25rem;
  transition-property: all;
}

.service-tab-link.w--current {
  background-color: var(--base-color-brand--orange);
  color: #a9ad9b;
}

.container-5 {
  background-color: transparent;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.service-dashboard-05 {
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.service-dashboard-04 {
  align-self: center;
  width: 100%;
  height: 350px;
  position: absolute;
  inset: 0%;
}

.grid-service-title {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  padding-bottom: 4.375rem;
}

.service-dashboard-02 {
  align-self: center;
  width: 100%;
  height: 300px;
  position: absolute;
  inset: 0%;
}

.service-section-title {
  color: #f3ffc9;
  margin-bottom: 0;
}

.service-tab-pane {
  width: 100%;
  height: 100%;
}

.service-tab-image-wrap {
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-dashboard-6 {
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% -15px;
}

.service-dashboard-7 {
  align-self: center;
  width: 100%;
  height: 380px;
  position: absolute;
  inset: auto 0% -15px;
}

.container-6 {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.service-dashboard-8 {
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.service-dashboard-9 {
  align-self: center;
  width: 100%;
  height: 350px;
  position: absolute;
  inset: 0%;
}

.service-tabs-item-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #a9ad9b;
  background-color: #161a18;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.service-tabs-item-2.w--current {
  color: #a9ad9b;
  background-color: #161a18;
}

.service-tabs-title-2 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.service-dashboard-10 {
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% -15px;
}

.service-dashboard-11 {
  align-self: center;
  width: 100%;
  height: 380px;
  position: absolute;
  inset: auto 0% -15px;
}

.service-tabs-description-2 {
  margin-top: 1.875rem;
}

.service-tab-link-2 {
  color: #a9ad9b;
  background-color: #161a18;
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 1.25rem;
  transition-property: all;
}

.service-tab-link-2.w--current {
  color: #a9ad9b;
  background-color: #161a18;
}

.container-7 {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.service-dashboard-12 {
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.service-dashboard-13 {
  align-self: center;
  width: 100%;
  height: 350px;
  position: absolute;
  inset: 0%;
}

.timeline {
  color: var(--text-color--text-alternate);
  font-size: var(--font-size--base);
  -webkit-text-stroke-color: var(--base-color-brand--orange);
}

.timeline.alt-text-color {
  color: var(--text-color--text-alternate);
}

.timeline.text-color-secondary {
  color: inherit;
}

.timeline-item {
  border-radius: var(--ridus--s);
  background-color: var(--base-color-brand--orange);
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  padding: 1.5rem;
  transition: background-color .2s;
  display: flex;
  overflow: visible;
}

.timeline-item:hover {
  background-color: var(--base-color-brand--orange);
}

.timeline-item.background-yellow {
  background-color: var(--base-color-brand--cream);
}

.timeline-item.background-yellow:hover {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.timeline-list, .list-item-2, .list-item-3, .list-item-4 {
  color: var(--text-color--text-alternate);
}

.grid-13, .grid-14, .grid-15, .service-tab-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.erkl-rfilm-mobile, .cta-mobile {
  display: none;
}

.code-embed-3 {
  max-width: 50vw;
  max-height: 15vh;
  display: block;
}

@media screen and (min-width: 1280px) {
  .step-two, .step-three {
    width: 195px;
    padding: .9375rem;
  }

  .grid-step {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: minmax(200px, .55fr) minmax(200px, 1fr);
  }

  .step-one {
    width: 195px;
    padding: .9375rem;
  }

  .step-section-title {
    font-size: 3.125rem;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .step-icon {
    width: 30px;
    height: 30px;
  }

  .step-decoration-01 {
    bottom: -15%;
  }

  .step-one-2 {
    width: 195px;
    padding: .9375rem;
  }

  .step-title-2 {
    font-size: 1.125rem;
  }

  .step-tabs-menu-2 {
    margin-bottom: 2rem;
  }

  .step-decoration-2 {
    bottom: -15%;
  }

  .footer-links {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .grid-footer-menu {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-item {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding: 2.5rem;
  }

  .grid-footer-contact {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .service-dashboard-01, .service-dashboard-05 {
    height: 400px;
  }

  .service-dashboard-02 {
    height: 350px;
  }

  .service-dashboard-6, .service-dashboard-8, .service-dashboard-10, .service-dashboard-12 {
    height: 400px;
  }

  .timeline-item, .timeline-item:hover {
    background-color: var(--base-color-brand--orange);
  }

  .erkl-rfilm-mobile, .cta-mobile {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .heading-h2.secondry-text-color.smaller.inverted {
    color: var(--text-color--text-alternate);
  }

  .heading-h6 {
    color: var(--text-color--text-primary);
  }

  .main-text-color.inverted {
    color: var(--text-color--text-secondary);
  }

  .step-decoration-01, .step-decoration-2 {
    bottom: -13%;
  }

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

  .grid-footer-contact {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
  }

  .service-dashboard-01 {
    height: 450px;
  }

  .service-dashboard-03 {
    height: 400px;
  }

  .container-5 {
    padding-bottom: var(--page-padding--desktop);
  }

  .service-dashboard-05 {
    height: 450px;
  }

  .service-dashboard-04 {
    height: auto;
  }

  .service-dashboard-02 {
    height: 400px;
  }

  .service-dashboard-6 {
    height: 450px;
  }

  .service-dashboard-7 {
    height: 400px;
  }

  .service-dashboard-8, .service-dashboard-10 {
    height: 450px;
  }

  .service-dashboard-11 {
    height: 400px;
  }

  .service-dashboard-12 {
    height: 450px;
  }

  .timeline {
    color: var(--text-color--text-alternate);
  }

  .timeline-item, .timeline-item:hover {
    background-color: var(--base-color-brand--orange);
  }

  .timeline-list {
    color: var(--text-color--text-alternate);
    -webkit-text-stroke-color: var(--text-color--text-alternate);
  }

  .step-heading-title {
    color: var(--text-color--text-alternate);
    font-size: var(--font-size--2xl);
  }

  .erkl-rfilm-mobile, .cta-mobile {
    display: none;
  }
}

@media screen and (min-width: 1920px) {
  .section-solution {
    background-color: var(--background-color--background-alternate);
  }

  .grid-step {
    grid-template-columns: .5fr 1fr;
  }

  .container-3, .step-section.section-spacing {
    background-color: var(--background-color--background-alternate);
  }

  .step-decoration-01, .step-decoration-2 {
    bottom: -12.3%;
  }

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

  .service-dashboard-01 {
    height: 450px;
  }

  .service-dashboard-03 {
    height: 430px;
  }

  .service-tab-image {
    width: auto;
    overflow: clip;
  }

  .container-5 {
    background-color: var(--background-color--background-alternate);
  }

  .service-dashboard-05 {
    height: 450px;
  }

  .service-dashboard-04 {
    height: 400px;
  }

  .grid-service-title {
    grid-template-columns: 1fr 1fr;
  }

  .service-dashboard-02 {
    height: 400px;
  }

  .service-tab-pane {
    float: none;
  }

  .service-tab-image-wrap {
    width: 100%;
    height: auto;
  }

  .service-dashboard-6 {
    height: 450px;
  }

  .service-dashboard-7 {
    height: 430px;
  }

  .service-dashboard-8 {
    height: 450px;
  }

  .service-dashboard-9 {
    height: 400px;
  }

  .service-dashboard-10 {
    height: 450px;
  }

  .service-dashboard-11 {
    height: 430px;
  }

  .service-dashboard-12 {
    height: 450px;
  }

  .service-dashboard-13 {
    height: 400px;
  }

  .erkl-rfilm-mobile, .cta-mobile {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .full-width-container {
    max-width: 30rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .top-margin {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .bottom-margin {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-h2 {
    font-size: 2.75rem;
  }

  .heading-h2.secondry-text-color {
    font-size: var(--font-size--4xl);
  }

  .heading-h1 {
    font-size: 3.25rem;
  }

  .heading-h4 {
    font-size: 1.75rem;
  }

  .heading-h3 {
    font-size: 2.25rem;
  }

  .global-padding {
    padding-right: var(--page-padding--tablet);
    padding-left: var(--page-padding--tablet);
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .large-spacer {
    padding-top: 4.5rem;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
  }

  .navigation-bar {
    padding-right: var(--page-padding--tablet);
    padding-left: var(--page-padding--tablet);
    position: relative;
  }

  .navigation-bar-container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .navigation-bar-menu {
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--background-color--background-primary);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    justify-content: center;
    width: 100%;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .navigation-bar-menu.is-page-height-tablet {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    background-color: var(--background-color--background-alternate);
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .navigation-bar-button-wrapper {
    align-items: center;
  }

  .navigation-menu-button {
    padding: 0;
  }

  .navigation-menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-line-top {
    border-radius: var(--ridus--s);
    background-color: var(--background-color--background-primary);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line-middle {
    border-radius: var(--ridus--s);
    background-color: var(--background-color--background-primary);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line-bottom {
    border-radius: var(--ridus--s);
    background-color: var(--background-color--background-primary);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .large-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .partner-logos {
    grid-column-gap: 3rem;
  }

  .logos-section {
    max-width: 16rem;
  }

  .logo-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .main-content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .list-layout {
    grid-template-columns: 1fr 1fr;
  }

  .planning-layout {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .result-list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .item-number {
    font-size: 4rem;
  }

  .team-component {
    padding-left: 0;
    padding-right: 0;
  }

  .team-mask {
    width: 50%;
  }

  .team-slide {
    padding-right: 2rem;
  }

  .faqs-component, .contact-component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .footer-top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .footer-bottom-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom-wrapper.buy {
    flex-flow: row;
  }

  .navigation-bar-menu-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
  }

  .transformation-layout {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .content-component, .back-to-home {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .navigation-bar-menu-main {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--background-color--background-alternate);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100dvh;
    padding: 1rem 5% 6.5rem;
    transition: height .5s;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .meduim-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .login_right-linkbox {
    z-index: 1;
  }

  .login_gradient {
    top: -45%;
    left: -33%;
  }

  .login_right {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .login_left.background-color-alternate {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .login_wrap {
    flex-flow: column;
  }

  .section_login {
    padding-top: 3rem;
  }

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

  .price-card {
    position: relative;
  }

  .dash_contain {
    max-width: 100%;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .short-page-wrapper, .colorful-section {
    flex-direction: column;
    height: auto;
  }

  .footer-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .split-page-wrapper {
    flex-direction: column;
    height: auto;
  }

  .logo-svg {
    align-self: center;
  }

  .footer-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .short-page-wrapper-2 {
    flex-direction: column;
    height: auto;
  }

  .heading-h1-2 {
    font-size: 3.25rem;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .large-padding-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-h3-2 {
    font-size: 2.25rem;
  }

  .global-padding-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .services-list-2 {
    grid-template-columns: 1fr 1fr;
  }

  .heading-h4-services {
    font-size: 1.75rem;
  }

  .grid-step {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .step-tab-link {
    padding: .313rem 1.25rem;
  }

  .step-section-title-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .step-tabs-menu {
    margin-bottom: 2rem;
  }

  .step-tab-link-2 {
    padding: .313rem 1.25rem;
  }

  .step-tabs-menu-2 {
    margin-bottom: 2rem;
  }

  .footer-bottom-item {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-logo-link-2, .footer-logo-link-2.w--current {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .grid-footer-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bg-footer {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    padding-top: 3.125rem;
    display: flex;
  }

  .form-subscribe {
    width: 70%;
  }

  .shap-left {
    display: none;
  }

  .footer-logo {
    width: auto;
    height: 40px;
  }

  .shap-right {
    display: none;
  }

  .footer-bottom-wrap {
    position: static;
  }

  .shape-bottom-left {
    display: none;
  }

  .footer-item {
    padding-bottom: 1.875rem;
  }

  .footer-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .shape-bottom-right {
    display: none;
  }

  .footer-case-study {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .service-tabs-info {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .section-title {
    margin-bottom: 3.125rem;
  }

  .service-dashboard-01 {
    width: auto;
    height: 100%;
    display: none;
    bottom: -20px;
  }

  .service-dashboard-03 {
    display: none;
  }

  .service-tabs-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .service-tabs-description {
    margin-top: 1.25rem;
  }

  .service-tab-link {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }

  .service-dashboard-05, .service-dashboard-04 {
    display: none;
  }

  .grid-service-title {
    grid-template-columns: 2fr 1fr;
    padding-bottom: 3.125rem;
  }

  .service-dashboard-02 {
    height: 100%;
    display: none;
    inset: 10%;
  }

  .service-dashboard-6 {
    width: auto;
    height: 100%;
    display: none;
    bottom: -20px;
  }

  .service-dashboard-7, .service-dashboard-8, .service-dashboard-9 {
    display: none;
  }

  .service-dashboard-10 {
    width: auto;
    height: 100%;
    display: none;
    bottom: -20px;
  }

  .service-dashboard-11 {
    display: none;
  }

  .service-tabs-description-2 {
    margin-top: 1.25rem;
  }

  .service-tab-link-2 {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }

  .service-dashboard-12, .service-dashboard-13 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .max-width-xsmall {
    max-width: none;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .full-width-container {
    max-width: 100%;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .top-margin {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .bottom-margin {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .medium-text {
    font-size: 1rem;
  }

  .heading-h2 {
    font-size: 2.25rem;
  }

  .heading-h6 {
    font-size: 1.125rem;
  }

  .heading-h5 {
    font-size: 1.25rem;
  }

  .heading-h1 {
    font-size: 2.5rem;
  }

  .button, .button.secondary.alt-color {
    justify-content: center;
    align-items: center;
  }

  .button.secondary.is-small {
    background-color: #0000;
    justify-content: center;
    align-items: center;
  }

  .button.alt-color {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .heading-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-h3 {
    font-size: 2rem;
  }

  .button-group {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .text-large {
    font-size: 1.125rem;
  }

  .global-padding {
    padding-right: var(--page-padding--mobile);
    padding-left: var(--page-padding--mobile);
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xsmall-spacer {
    padding-top: .75rem;
  }

  .small-spacer {
    padding-top: 1.25rem;
  }

  .medium-spacer {
    padding-top: 1.5rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .large-spacer {
    padding-top: 3rem;
  }

  .services-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .navigation-bar {
    padding-right: var(--page-padding--mobile);
    padding-left: var(--page-padding--mobile);
    min-height: 4rem;
  }

  .navigation-bar-menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .large-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .partner-logos {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logos-section {
    max-width: none;
  }

  .logo-list {
    grid-column-gap: 1rem;
    padding-top: 1rem;
  }

  .logo-wrapper {
    padding: .75rem 1rem;
  }

  .main-content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .list-layout, .planning-layout {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .planning-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .result-list {
    grid-template-columns: 1fr;
  }

  .result-item {
    transition: background-color .2s;
  }

  .item-number {
    font-size: 3.5rem;
  }

  .result-image.rounded {
    display: none;
  }

  .team-mask {
    width: 80%;
  }

  .team-slide {
    padding-right: 1.5rem;
  }

  .team-image-wrapper {
    height: 100%;
  }

  .team-arrow.left {
    right: 3.5rem;
  }

  .testimonial-component {
    padding-bottom: 3rem;
  }

  .testimonial-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .faqs-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faqs-icon-wrapper {
    width: 1.75rem;
  }

  .faq-answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .footer-top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer-menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer-bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer-bottom-wrapper.buy {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-credit-text {
    margin-top: 2rem;
  }

  .footer-legal-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-auto-flow: row;
    display: flex;
  }

  .layout486_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .button-link {
    justify-content: center;
    align-items: center;
  }

  .button-text.is-alternate {
    justify-content: center;
    align-items: stretch;
  }

  .transformation-layout {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .transformation-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .navigation-link {
    justify-content: center;
    align-items: center;
  }

  .navigation-button {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: none;
  }

  .content-component, .back-to-home {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .navigation-bar-menu-main {
    padding-bottom: 6rem;
  }

  .meduim-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .banner-button {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: block;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .content-h1 {
    font-size: 55px;
  }

  .price-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .profile_field-wrapper.has-button {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .dash_logo-wrap {
    height: 70px;
  }

  .widget-embed {
    min-width: 690px;
  }

  .dash_nav-wrap {
    width: 160px;
    padding-left: 0;
    padding-right: 0;
  }

  .widget-svg {
    width: 36px;
  }

  .widget-svg.close {
    display: none;
  }

  .widget-mobile {
    color: #fff;
    background-color: #2962ff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    display: flex;
    position: fixed;
    inset: auto 3vw 3vw auto;
    box-shadow: 0 0 0 5px #2962ff33;
  }

  .dash_page {
    padding-left: 180px;
  }

  .nav_logo-link {
    padding-left: 0;
  }

  .nav_logo {
    height: 1.5rem;
  }

  .dash_header {
    height: 70px;
  }

  .widget-wrapper {
    width: 250px;
    height: 400px;
    margin: auto;
    display: none;
    top: 0;
    left: 0;
  }

  .dash_h1 {
    margin-top: .3rem;
    font-size: 1.4rem;
  }

  .widget-move {
    display: none;
  }

  .input-label {
    font-size: .9em;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .short-page-wrapper, .colorful-section {
    flex-direction: column;
  }

  .footer-2 {
    padding: 40px 20px;
  }

  .split-page-wrapper {
    flex-direction: column;
  }

  .footer-3 {
    padding: 40px 20px;
  }

  .short-page-wrapper-2 {
    flex-direction: column;
  }

  .heading-h1-2 {
    font-size: 2.5rem;
  }

  .grid-2 {
    grid-template-columns: auto auto;
  }

  .footer-credit-text-2 {
    margin-top: 2rem;
  }

  .button-link-2 {
    justify-content: center;
    align-items: center;
  }

  .large-padding-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-h3-2 {
    font-size: 2rem;
  }

  .footer-menu-wrapper-2 {
    grid-column-gap: 1.5rem;
  }

  .heading-h6-2 {
    font-size: 1.125rem;
  }

  .global-padding-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .medium-text-2 {
    font-size: 1rem;
  }

  .services-list-2 {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    transition: background-color .2s;
  }

  .services-prompt {
    padding: 1rem 1.25rem;
  }

  .services-detailed {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .services-icon-wrapper {
    width: 1.75rem;
  }

  .subheading-services {
    font-size: 1.25rem;
  }

  .heading-h4-services {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .step-two {
    border-radius: .625rem;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: .925rem;
    position: relative;
    bottom: 0;
  }

  .step-two.active {
    opacity: 1;
    opacity: 1;
    position: static;
  }

  .step-three {
    border-radius: .625rem;
    flex-flow: column;
    width: 100%;
    padding: .925rem;
    position: relative;
    bottom: 0;
  }

  .step-three.active {
    opacity: 1;
    opacity: 1;
    position: static;
  }

  .grid-step-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 100%;
  }

  .step-divider-02 {
    display: none;
  }

  .grid-step {
    grid-template-columns: 1fr;
  }

  .step-one {
    border-radius: .625rem;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: .925rem;
    position: relative;
    bottom: 0;
  }

  .step-one.active {
    opacity: 1;
  }

  .step-divider-03 {
    display: none;
  }

  .step-tabs-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .button-primary {
    padding: .625rem 1.25rem;
  }

  .step-title {
    margin-top: 0;
  }

  .step-item, .step-item.active {
    background-color: #000;
  }

  .step-divider-01, .step-decoration-01 {
    display: none;
  }

  .grid-step-item-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 100%;
    display: none;
  }

  .step-divider-4 {
    display: none;
  }

  .step-one-2 {
    border-radius: .625rem;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: .925rem;
    position: relative;
    bottom: 0;
  }

  .step-one-2.active {
    opacity: 1;
  }

  .step-divider-5 {
    display: none;
  }

  .step-title-2 {
    margin-top: 0;
  }

  .step-divider-6, .step-decoration-2 {
    display: none;
  }

  .footer-title {
    margin-bottom: .625rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .footer-contact-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .footer-logo-link-2 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-logo-link-2.w--current {
    justify-content: flex-start;
    margin-top: .625rem;
  }

  .grid-footer-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    max-width: 100%;
  }

  .bg-footer {
    padding: 1rem 0;
  }

  .form-subscribe {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .footer-item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .footer-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .form-input-2 {
    font-size: 16px;
  }

  .grid-footer-contact {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .service-tabs, .grid-service-title {
    grid-template-columns: 1fr;
  }

  .service-tab-image-wrap {
    height: 400px;
  }

  .timeline-item {
    transition: background-color .2s;
  }

  .code-embed-3 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .top-margin {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .bottom-margin {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-h2 {
    font-weight: 400;
  }

  .heading-h2.secondry-text-color {
    font-size: var(--font-size--3xl);
    width: 75%;
    padding-right: 0;
  }

  .heading-h2.secondry-text-color.smaller {
    font-size: 1.75rem;
  }

  .button.alt-color {
    justify-content: center;
    align-items: center;
  }

  .style-guide-list.color {
    grid-column-gap: .5rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: auto;
    display: grid;
  }

  .large-spacer {
    padding-top: 1rem;
  }

  .main-text-color {
    width: 50%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .navigation-bar {
    padding-right: var(--page-padding--mobile);
    padding-left: var(--page-padding--mobile);
  }

  .navigation-bar-logo-link.w--current {
    padding-left: 0;
  }

  .large-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .logo-list {
    grid-template-columns: 1fr 1fr;
  }

  .logo-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .content-layout {
    padding-bottom: 0;
  }

  .main-content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    object-fit: fill;
    grid-template-columns: 100%;
    grid-template-areas: "Area-4";
    justify-items: stretch;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1em;
  }

  .left-content {
    width: 70%;
    font-size: 1rem;
  }

  .list-layout, .planning-layout, .result-list {
    grid-template-columns: 1fr;
  }

  .result-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 1rem;
    display: flex;
  }

  .result-item.background-yellow {
    padding: 1rem;
  }

  .result-image.rounded {
    display: none;
    overflow: clip;
  }

  .team-mask {
    width: 95%;
  }

  .faqs-component {
    grid-template-columns: 1fr;
    grid-template-areas: "Area";
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-component {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

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

  .footer-bottom-wrapper.buy {
    flex-flow: column;
  }

  .footer-legal-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .layout486_content {
    height: auto;
  }

  .transformation-layout {
    grid-template-columns: 1fr;
  }

  .navigation-button {
    justify-content: center;
    align-items: center;
  }

  .meduim-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .banner-button {
    justify-content: center;
    align-items: center;
  }

  .login_left-top {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .login_form-block {
    margin-bottom: 0;
  }

  .login_right {
    padding: 20px;
  }

  .login_submit-button {
    margin-top: 0;
  }

  .login_box {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
  }

  .text-size-regular.text-align-center.is-mobile {
    font-size: .875rem;
  }

  .login_right-content {
    width: 100%;
  }

  .login_right-textbox {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: flex-start;
    align-items: center;
  }

  .login_link {
    font-size: .875rem;
  }

  .login_left.background-color-alternate {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding: 20px;
  }

  .login_bottom-text {
    margin-top: 10px;
    font-size: .875rem;
  }

  .text-size-xlarg.text-align-center.is-mobile {
    font-size: 1.5rem;
  }

  .login_wrap {
    min-height: auto;
  }

  .content-h1 {
    text-align: center;
    font-size: 42px;
  }

  .pricing-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    top: 0;
  }

  .tabs-menu {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .dash_nav-wrap {
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 25px;
    padding-top: 0;
    position: static;
  }

  .dash_page {
    padding-left: 25px;
  }

  .dash_button {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .form-divider {
    width: 100%;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .form-divider-2 {
    width: 100%;
  }

  .footer-2, .footer-3 {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .alt-text-color-2 {
    font-size: var(--fluid-font-size--10xl);
    font-weight: 400;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: auto;
  }

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

  .footer-menu-wrapper-2 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .services-list-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-column-gap: 16px;
    grid-row-gap: 10px;
    grid-template: "Area-3 Area-4 Area-4"
                   "Area-6 Area-4 Area-4"
                   "Area-6 Area-7 Area-5"
                   / .6fr;
    grid-auto-columns: .25fr;
    display: none;
  }

  .cta {
    padding: 1rem;
    display: none;
  }

  .cta.background-yellow {
    padding: 1rem;
  }

  .step-two.active {
    position: relative;
  }

  .step-three {
    margin-right: 0;
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .step-three.active {
    position: relative;
  }

  .grid-step-item {
    grid-template-columns: 1fr 1fr;
  }

  .step-one {
    margin-right: 0;
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .step-section-title-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .step-section-title {
    font-size: var(--font-size--3xl);
    font-weight: 400;
  }

  .button-primary {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .button-primary.button-subscribe {
    position: static;
  }

  .step-title {
    font-size: .9375rem;
  }

  .grid-step-item-2 {
    grid-template-columns: 1fr 1fr;
    display: none;
  }

  .step-one-2 {
    margin-right: 0;
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .step-title-2 {
    font-size: .9375rem;
  }

  .footer-links {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .footer-logo-link-2 {
    display: block;
  }

  .footer-logo-link-2.w--current {
    justify-content: flex-start;
    align-self: auto;
  }

  .grid-footer-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .bg-footer {
    padding: 1rem 0;
  }

  .form-subscribe {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: flex-start;
  }

  .footer-logo {
    height: 30px;
  }

  .footer-item {
    padding: 1rem;
  }

  .form-input-2.form-input-subscribe {
    padding-right: 1.25rem;
  }

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

  .service-tab-image-wrap {
    height: 300px;
  }

  .timeline-item, .timeline-item.background-yellow {
    padding: 1rem;
  }

  .step-heading-title {
    color: var(--text-color--text-alternate);
  }

  .code-embed {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .code-embed-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .erkl-rfilm-mobile {
    display: block;
  }

  .cta-mobile {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .code-embed-3 {
    display: none;
  }
}

#w-node-_925d138e-5aee-258d-d847-49e7e5a93fec-69f7b8ab {
  grid-area: Area-6;
}

#w-node-_17eba77c-6570-e16e-db08-a8e32ebe077a-69f7b8ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a446ca7e-b3ab-1698-792d-4e4cec364fcc-69f7b8ab {
  grid-area: Area-4;
}

#w-node-_713a7cd0-0cc0-96eb-9bb0-56cdf3b18783-69f7b8ab {
  grid-area: Area-5;
}

#w-node-c2ac4af3-ff14-be96-e978-039698c413ec-69f7b8ab {
  grid-area: Area-3;
}

#w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331967-69f7b8ab, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331953-69f7b8ab, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a3633195d-69f7b8ab, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331971-69f7b8ab {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_147e5120-501d-b58c-8c6f-8cda9e4ba345-69f7b8ab {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-69f7b8ab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-de81bf69-8a36-42d7-3620-bbac6355ba22-69f7b8ab, #w-node-de731598-d1ba-578f-dfda-5b7099183c4b-69f7b8ab, #w-node-ea7a31e4-7e2b-7c49-d93a-1226c0fe2ca0-c0fe2c9e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ea7a31e4-7e2b-7c49-d93a-1226c0fe2ca3-c0fe2c9e {
  justify-self: center;
}

#w-node-ea7a31e4-7e2b-7c49-d93a-1226c0fe2cb4-c0fe2c9e {
  justify-self: end;
}

#w-node-_123026ea-c625-048e-82a7-34095e8f4ab3-69f7b8b5, #w-node-_123026ea-c625-048e-82a7-34095e8f4ab8-69f7b8b5, #w-node-_123026ea-c625-048e-82a7-34095e8f4abd-69f7b8b5, #w-node-_123026ea-c625-048e-82a7-34095e8f4ac2-69f7b8b5, #w-node-_123026ea-c625-048e-82a7-34095e8f4ac7-69f7b8b5, #w-node-_123026ea-c625-048e-82a7-34095e8f4acc-69f7b8b5, #w-node-_1a11041c-ef07-0138-51b5-117a9486de1d-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2d7d-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2d81-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2d8b-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2d93-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2d97-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2d9f-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2da9-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2db3-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2db7-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2dc9-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2dce-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2dd4-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2dde-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2de6-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2dea-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2df2-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2dfc-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2e06-69f7b8b5, #w-node-_50a12f69-0f11-6c31-9cfc-efbb2c9e2e0a-69f7b8b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f13c601c-41d6-5982-e5cc-dbdb5ac07b8d-69f7b8b5, #w-node-_4d04c1d1-a33c-a231-08ae-230e3b569b31-69f7b8b5 {
  justify-self: start;
}

#w-node-d18fb1b1-181e-aa01-79b1-58c6d9884dd7-40f01f27, #w-node-d18fb1b1-181e-aa01-79b1-58c6d9884df8-40f01f27, #w-node-d18fb1b1-181e-aa01-79b1-58c6d9884de9-40f01f27, #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-40f01f27 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b37abfd8-15bd-c8c3-b4c0-0c6418122ef4-40f01f27 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_925d138e-5aee-258d-d847-49e7e5a93fec-9bea5e09 {
  grid-area: Area-6;
}

#w-node-_17eba77c-6570-e16e-db08-a8e32ebe077a-9bea5e09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a446ca7e-b3ab-1698-792d-4e4cec364fcc-9bea5e09 {
  grid-area: Area-4;
}

#w-node-_713a7cd0-0cc0-96eb-9bb0-56cdf3b18783-9bea5e09 {
  grid-area: Area-5;
}

#w-node-c2ac4af3-ff14-be96-e978-039698c413ec-9bea5e09 {
  grid-area: Area-3;
}

#w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331967-9bea5e09, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331953-9bea5e09, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a3633195d-9bea5e09, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331971-9bea5e09 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-c17ac34b-de06-83ed-882a-498b0ed658b9-9bea5e09, #w-node-_3c9c40db-bf59-a3f1-f047-37b6c6771233-9bea5e09 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_147e5120-501d-b58c-8c6f-8cda9e4ba345-9bea5e09 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-9bea5e09 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-de81bf69-8a36-42d7-3620-bbac6355ba22-9bea5e09, #w-node-de731598-d1ba-578f-dfda-5b7099183c4b-9bea5e09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331971-69f7b8ab {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-69f7b8ab {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-de731598-d1ba-578f-dfda-5b7099183c11-69f7b8ab {
    order: -9999;
  }

  #w-node-d18fb1b1-181e-aa01-79b1-58c6d9884df8-40f01f27, #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-40f01f27 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331971-9bea5e09 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-9bea5e09 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-de731598-d1ba-578f-dfda-5b7099183c11-9bea5e09 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331967-69f7b8ab, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a3633195d-69f7b8ab {
    order: 9999;
  }

  #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331971-69f7b8ab {
    grid-column: span 1 / span 1;
  }

  #w-node-_6b74ecc6-ce65-4afc-bc0c-bf1c6e2137e6-69f7b8ab {
    order: 9999;
  }

  #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-69f7b8ab {
    grid-column: span 1 / span 1;
  }

  #w-node-d18fb1b1-181e-aa01-79b1-58c6d9884df8-40f01f27 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d18fb1b1-181e-aa01-79b1-58c6d9884de9-40f01f27, #w-node-_6b74ecc6-ce65-4afc-bc0c-bf1c6e2137e6-40f01f27 {
    order: 9999;
  }

  #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-40f01f27 {
    grid-column: span 1 / span 1;
  }

  #w-node-b37abfd8-15bd-c8c3-b4c0-0c6418122efb-40f01f27, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331967-9bea5e09, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a3633195d-9bea5e09 {
    order: 9999;
  }

  #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331971-9bea5e09 {
    grid-column: span 1 / span 1;
  }

  #w-node-_6b74ecc6-ce65-4afc-bc0c-bf1c6e2137e6-9bea5e09 {
    order: 9999;
  }

  #w-node-_6ececb64-2063-d0b5-9318-c6a6fdb34e12-9bea5e09 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_925d138e-5aee-258d-d847-49e7e5a93fec-69f7b8ab {
    grid-area: Area-3;
  }

  #w-node-_17eba77c-6570-e16e-db08-a8e32ebe077a-69f7b8ab {
    grid-area: Area-6;
  }

  #w-node-a446ca7e-b3ab-1698-792d-4e4cec364fcc-69f7b8ab {
    grid-area: Area-3;
  }

  #w-node-c2ac4af3-ff14-be96-e978-039698c413ec-69f7b8ab {
    grid-area: Area-6;
  }

  #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331953-69f7b8ab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_49a7a152-8281-197a-e28e-9f32960499af-69f7b8ab, #w-node-_49a7a152-8281-197a-e28e-9f32960499c4-69f7b8ab, #w-node-_49a7a152-8281-197a-e28e-9f32960499d9-69f7b8ab {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b74ecc6-ce65-4afc-bc0c-bf1c6e2137e6-69f7b8ab {
    order: 9999;
  }

  #w-node-_098ea909-a419-d854-c1bf-2c8f43af1295-69f7b8ab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d18fb1b1-181e-aa01-79b1-58c6d9884dd7-40f01f27 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b74ecc6-ce65-4afc-bc0c-bf1c6e2137e6-40f01f27 {
    order: 9999;
  }

  #w-node-c17ac34b-de06-83ed-882a-498b0ed658b5-40f01f27, #w-node-_098ea909-a419-d854-c1bf-2c8f43af1295-40f01f27, #w-node-_925d138e-5aee-258d-d847-49e7e5a93fec-9bea5e09, #w-node-_17eba77c-6570-e16e-db08-a8e32ebe077a-9bea5e09, #w-node-c2ac4af3-ff14-be96-e978-039698c413ec-9bea5e09, #w-node-_1b674b56-fcfb-e56e-fd6a-a65a36331953-9bea5e09 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_49a7a152-8281-197a-e28e-9f32960499af-9bea5e09, #w-node-_49a7a152-8281-197a-e28e-9f32960499c4-9bea5e09, #w-node-_49a7a152-8281-197a-e28e-9f32960499d9-9bea5e09 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b74ecc6-ce65-4afc-bc0c-bf1c6e2137e6-9bea5e09 {
    order: 9999;
  }

  #w-node-_098ea909-a419-d854-c1bf-2c8f43af1295-9bea5e09 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


