@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-RegularItalic.otf') format("opentype"), url('/fonts/Aeonik-AirItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-ThinItalic.otf') format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik Air;
  src: url('/fonts/Aeonik-Air.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('/fonts/Aeonik-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-dark: #1c1c1e;
  --mauve-200: #a58ef0;
  --secondary-text-dark: #667085;
  --white: white;
  --border-main: #d6d8dc;
  --snow: #f9f9f7;
  --background-secondary-dark: #262628;
  --border-light: #eaecf0;
  --secondary-text-light: #d4d9e2;
  --turquoise-400: #00ac8e;
  --blue: #53b1fd;
  --turquoise-background: #d9f4f0;
  --table-background-grey: #f9fafb;
  --alert: #ce1d1d;
  --black: black;
}

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

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--main-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Aeonik, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  color: var(--main-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Aeonik, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

h3 {
  color: var(--main-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Aeonik, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  color: var(--main-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.1;
}

p {
  color: #a1a1a1;
  margin-bottom: 10px;
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

a {
  color: var(--main-dark);
  font-weight: 400;
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  color: #b3b3b3;
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

blockquote {
  border-left: 5px solid var(--mauve-200);
  color: var(--secondary-text-dark);
  -webkit-text-stroke-color: var(--mauve-200);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero_image {
  border-radius: 1rem;
  margin-top: 0;
}

.hero_image.tools {
  object-fit: cover;
  height: 100%;
}

.nav_menu_link {
  color: #fff;
  padding: 1rem;
}

.hero_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  min-width: 500px;
  max-width: 60rem;
  display: flex;
  position: relative;
}

.section_hero {
  z-index: 91;
  outline-offset: 0px;
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 4px;
  outline: 3px #fff;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section_hero.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section_hero.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section_hero.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section_hero.gloss, .section_hero.gloss-main {
  min-height: auto;
  margin-top: 85px;
}

.hero_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  display: grid;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button.primary {
  background-color: var(--main-dark);
  border: 1px solid #000;
  border-radius: .4rem;
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.button.primary.margin-right {
  border: 2px solid var(--main-dark);
  margin-right: 1rem;
}

.button.primary.margin-right.light {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--main-dark);
}

.button.secondary {
  border: 1px solid var(--main-dark);
  background-color: var(--white);
  color: var(--main-dark);
  border-radius: .4rem;
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.button.tertiary {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.nav_button {
  padding: 1rem;
}

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

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

.container-large.buttons {
  border-top: 1px solid #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.heading-h1-primary {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-h1-primary.heading-colour-dark {
  color: var(--main-dark);
  margin-top: 0;
  font-family: Aeonik, sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
}

.heading-h1-primary.align-center {
  text-align: center;
}

.nav_component {
  background-color: #000;
  width: 100%;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  inset: 0% 0% auto;
}

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

.padding-global.dark {
  background-color: var(--main-dark);
}

.text-size-medium {
  font-family: Aeonik, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-size-medium.text-colour-dark {
  color: var(--secondary-text-dark);
}

.nav_logo {
  width: 10rem;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_fixed {
  z-index: 9998;
  border-bottom: 1px solid var(--border-main);
  background-color: var(--snow);
  padding-top: .8rem;
  padding-bottom: .8rem;
  position: fixed;
  inset: 0% 0% auto;
}

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

.section_quote.background-colour-white {
  background-color: #fff;
}

.section_quote.background-colour-black {
  background-color: var(--main-dark);
  min-height: auto;
  padding: 4.4rem 0;
}

.section_quote.background-colour-white {
  background-color: var(--white);
  min-height: auto;
  padding: 4.4rem 0;
}

.quote_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.8fr 1.2fr;
  grid-auto-columns: 1fr;
  height: 36rem;
  display: grid;
}

.quote_content {
  background-color: var(--background-secondary-dark);
  border-radius: .5rem;
  padding: 3.2rem;
}

.quote_content.background-colour-light {
  background-color: var(--snow);
}

.quote_image_wrap {
  background-image: url('/images/confident-florist-smiling-camera-3.png');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .5rem;
}

.quote_image_wrap.helacom {
  background-image: url('/images/396705801_827015402765733_7327589603362631381_n.jpg');
}

.quotee-details {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.testimonial_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

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

.section_logos.background-colour-white {
  background-color: #fff;
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.intro_content {
  border-right: 1px solid var(--border-main);
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.logo-items_grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: 1;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2rem;
}

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

.logos_wrapper {
  border: 1px solid var(--border-main);
  border-radius: .5rem;
  padding: 0;
  display: flex;
}

.logo-item {
  max-width: 80%;
}

.section-list {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-list.background-colour-white {
  background-color: #fff;
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-list.background-colour-black {
  background-color: var(--main-dark);
  min-height: auto;
  padding: 4.4rem 0;
}

.feature-blocks_wrapper {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  flex-flow: column;
  display: flex;
}

.feature-block-l {
  border: 1px solid var(--border-light);
  background-color: var(--snow);
  border-radius: .5rem;
  flex-flow: column;
  width: 100%;
  height: 32rem;
  padding: 4rem 2.4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-block-l.background-colour-dark {
  background-color: var(--background-secondary-dark);
  border-style: none;
}

.feature-block-l.background-colour-light {
  flex-flow: row;
  height: auto;
}

.feature-image-large.position-absolute {
  object-fit: fill;
  border-radius: 0;
  width: 36rem;
  position: absolute;
  inset: auto 0% 0% auto;
}

.feature-content-large {
  width: 30rem;
}

.feature-content-large.margin-right-l {
  width: auto;
  max-width: 28rem;
  margin-right: 2rem;
}

.text-size-xl {
  font-family: Aeonik, sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}

.text-size-xl.text-colour-dark {
  color: var(--main-dark);
  margin-bottom: 0;
  font-family: Aeonik, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-size-xl.text-colour-dark.font-weight-medium {
  font-weight: 500;
}

.text-size-xl.text-colour-light {
  color: var(--white);
}

.text-size-small.text-colour-extra-dark {
  color: var(--main-dark);
  text-align: left;
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.feature-button_wrap {
  flex: 0 auto;
  align-items: stretch;
  width: auto;
  display: flex;
}

.features-grid-3 {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  height: 28rem;
}

.feature-block-s {
  border: 1px solid var(--border-light);
  background-color: var(--snow);
  border-radius: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-block-s.background-image {
  padding: 0;
}

.feature-block-s.background-color-dark {
  background-color: var(--background-secondary-dark);
  border-style: none;
  justify-content: space-between;
  align-items: center;
}

.feature-block-s.background-colour-light {
  justify-content: space-between;
  align-items: center;
}

.image-fill-wrap {
  background-image: url('/images/cashflow-mockup-01.jpg');
  background-position: 50% 100%;
  background-size: 150%;
  height: 100%;
}

.image-fill-wrap._01 {
  background-repeat: no-repeat;
  flex: 0 auto;
  width: 100%;
}

.image-fill-wrap._03 {
  background-image: url('/images/smiling-attractive-african-man-barista-standing-counter-coffee-shop-1.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  flex: 0 auto;
  width: 100%;
}

.feature-content-small {
  width: auto;
}

.text-size-xs.text-colour-light {
  color: var(--secondary-text-light);
  font-family: Aeonik, sans-serif;
  font-size: .8rem;
  line-height: 1.4;
}

.text-size-xs.text-colour-green {
  color: var(--turquoise-400);
  font-family: Aeonik, sans-serif;
}

.feature-image-small {
  width: 100%;
}

.feature-image-small.margin-top-medium {
  margin-top: 1rem;
}

.feature-title-wrap {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.heading-h3-primary {
  color: var(--main-dark);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Aeonik, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-h3-primary.heading-colour-dark {
  color: var(--main-dark);
}

.heading-h3-primary.heading-colour-light {
  color: var(--white);
}

.heading-h3-primary.heading-colour-light.no-margin {
  margin-bottom: 0;
}

.text-colour-dark {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
}

.text-size-l {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-size-l.text-colour-dark {
  color: var(--secondary-text-dark);
}

.text-size-l.text-colour-light {
  color: var(--secondary-text-light);
}

.text-size-l.text-colour-light.align-center {
  text-align: center;
}

.text-size-l.text-colour-black {
  color: var(--main-dark);
}

.text-size-l.text-colour-green {
  color: var(--turquoise-400);
}

.text-size-l.text-colour-purple {
  color: var(--mauve-200);
}

.text-size-l.text-colour-blue {
  color: var(--blue);
}

.text-size-l.text-colour-disabled {
  color: #bbb;
}

.text-size-l.text-colour-disabled.align-center {
  text-align: center;
}

.text-size-l._60-w {
  max-width: 800px;
  margin-top: 20px;
}

.text-size-l.align-center {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.text-size-l.light {
  color: var(--secondary-text-light);
  margin-top: 20px;
  text-decoration: none;
}

.button-wrapper {
  display: flex;
}

.button-wrapper.margin-top-m {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 1.5rem;
}

.button-wrapper.margin-top-l {
  margin-top: 2rem;
}

.button-wrapper.flex-verticle {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  padding: 2rem;
}

.heading-h2-primary {
  color: var(--main-dark);
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-family: Aeonik, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-h2-primary.heading-colour-dark {
  text-align: left;
  font-size: 2.8rem;
}

.heading-h2-primary.heading-colour-dark.align-center {
  text-align: center;
}

.heading-h2-primary.heading-colour-light {
  color: var(--white);
  font-size: 2.6rem;
}

.heading-h2-primary.align-center {
  text-align: center;
}

.heading-h2-primary.margin-bottom-l {
  margin-bottom: 3rem;
}

.text-size-m {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  display: flex;
}

.text-size-m.text-colour-green {
  color: var(--turquoise-400);
}

.text-size-m.text-colour-purple {
  color: var(--mauve-200);
}

.text-size-m.text-colour-blue {
  color: var(--blue);
}

.text-size-m.text-colour-light {
  color: var(--secondary-text-light);
}

.text-size-m.text-colour-white {
  text-align: left;
}

.text-size-m.text-colour-white.align-center {
  color: var(--white);
  text-align: center;
  font-weight: 400;
}

.text-size-m.text-colour-white.align-center.font-weight-medium {
  text-align: center;
  font-weight: 500;
}

.text-size-m.text-colour-black {
  color: var(--main-dark);
}

.text-size-m.text-colour-black.align-center, .text-size-m.align-center {
  text-align: center;
}

.text-size-m.underlined {
  text-decoration: underline;
}

.text-size-m.disabled {
  color: var(--secondary-text-light);
}

.text-size-m.annual {
  color: var(--main-dark);
}

.text-size-m.monthly {
  color: var(--secondary-text-light);
}

.text-size-m.tools {
  justify-content: space-between;
  align-items: center;
}

.text-size-s {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: .9rem;
  line-height: 1.4;
  text-decoration: none;
}

.text-size-s.text-colour-dark {
  color: var(--secondary-text-dark);
}

.text-size-s.text-colour-green {
  color: var(--turquoise-400);
}

.text-size-s.align-center {
  text-align: center;
}

.heading-h3-small {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Aeonik, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.section_faq {
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.faq-items_wrapper {
  margin-top: 50px;
}

.faq_item {
  border: 1px solid var(--border-light);
  background-color: #fff;
  border-radius: .5rem;
  margin-bottom: 20px;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px #00000008;
}

.accordion-item-trigger {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.accordion-heading {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 30px;
}

.icon.accordion-icon {
  color: #0009;
  cursor: pointer;
  font-size: 32px;
  line-height: 30px;
}

.accordion-item-content {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.pricing-block {
  border: 1px solid var(--border-light);
  border-radius: .5rem;
  flex-flow: column;
  display: flex;
  box-shadow: 0 3px 7px .1rem #00000008;
}

.callout_wrapper {
  flex: 1;
}

.callout_wrapper.callout-colour-purple {
  background-color: var(--mauve-200);
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  padding: .5rem .25rem;
}

.price_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.price_wrapper.monthly {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.feature-list_wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  padding: 0;
  display: flex;
}

.badge {
  border: 1px solid var(--turquoise-400);
  background-color: var(--turquoise-background);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 1.75rem;
  padding: .25rem .5rem;
  display: flex;
}

.badge.small {
  height: 1.5rem;
}

.badge.month {
  background-color: #d9f4f000;
  border-style: none;
}

.price_content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-list-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.mini-quote_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--snow);
  border-radius: .5rem;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  padding: 1rem;
  display: flex;
}

.mini-quote_wrapper.margin-top-m {
  margin-top: 1.5rem;
}

.qoutee-image_wrapper {
  border: 1px solid var(--border-main);
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 999px;
  width: 80px;
  height: 3rem;
  overflow: hidden;
}

.mini-quote_slider {
  height: 8rem;
}

.section_pricing-table {
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.pricing_table {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: 2rem;
  display: flex;
}

.table-header_row {
  padding: 1rem 0;
}

.table-features_row {
  padding: 1rem;
  display: flex;
}

.table-features_row.colour-grey {
  background-color: var(--table-background-grey);
}

.feautres-text_wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: 1;
  display: flex;
}

.features-check_wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pricing-table_section {
  flex-flow: column;
  display: flex;
}

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

.heading-h1-small {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-h1-small.heading-colour-white {
  color: var(--main-dark);
  font-size: 2.6rem;
}

.heading-h1-small.align-center {
  text-align: center;
}

.floating-header-images_wrap {
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  padding-top: 4rem;
  padding-right: 2.5rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.header-image-item {
  width: 18.75rem;
  height: 20rem;
}

.header-image-item._03 {
  width: 32%;
  height: 36%;
  position: absolute;
  inset: auto 20% 8% auto;
}

.header-image-item._02 {
  border-radius: .5rem;
  width: 32%;
  height: 36%;
  position: absolute;
  inset: auto 64.8% 32% auto;
}

.header-image-item._01 {
  width: 32%;
  height: 36%;
  position: absolute;
  inset: 16% 28% auto auto;
}

.customer-header-image {
  object-fit: fill;
  height: 100%;
}

.customer-header-image._01 {
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
}

.customer-header-image._02, .customer-header-image._03 {
  object-fit: cover;
  border-radius: .5rem;
}

.gradient-filter-dark {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(180deg, #fff0 34%, var(--main-dark));
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem 1rem 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image {
  width: 10rem;
}

.collection-list-wrapper {
  display: flex;
}

.collection-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 2fr;
  grid-auto-columns: 1fr;
  height: 36rem;
  display: grid;
}

.section_customer-hero {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section_customer-hero.background-colour-white {
  background-color: #fff;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.hero-image.full-width {
  object-fit: fill;
  border-radius: .5rem;
  margin-top: 4rem;
}

.section_post-body {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section_post-body.background-colour-white {
  background-color: #fff;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 80svh;
  margin-top: 0;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.rich-text-block {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
}

.rich-text-block h1 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.rich-text-block h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}

.rich-text-block h3 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.rich-text-block p {
  color: var(--secondary-text-dark);
  font-size: 1.3rem;
  line-height: 1.4;
}

.rich-text-block.blogpost {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fake-alert-text {
  color: var(--alert);
  margin-bottom: 2rem;
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}

.main-menu_wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

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

.hero-images_wrap {
  border-radius: .4rem;
  width: 100%;
  height: 500px;
  position: relative;
}

.bank-menu_image {
  width: 40%;
  position: absolute;
  inset: 4% auto auto 4%;
}

.net-cash-flow_image {
  width: 24%;
  position: absolute;
  inset: 16% auto auto 72%;
}

.docs-_image {
  width: 36%;
  position: absolute;
  inset: 56% auto auto 4%;
}

.expected_image {
  width: 42%;
  position: absolute;
  inset: 75% auto auto 48%;
}

.cash-chart_wrap {
  border-top-left-radius: .5rem;
  flex: 0 auto;
  width: 50%;
  height: 0;
  margin-left: 2rem;
  padding-bottom: 32%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.cash-chart_wrap._49 {
  width: 50%;
}

.chash-chart-info-image {
  z-index: 2;
  position: relative;
}

.cash-flow-data-image {
  z-index: 1;
  width: 146%;
  max-width: none;
  position: absolute;
  inset: 0%;
}

.cash-data_wrap {
  max-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.featured-resources_wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 4rem;
  display: flex;
}

.featured-resource-item {
  border-radius: .5rem;
  flex: 1;
}

.featured-resource-item.background-colour-light {
  border: 1px solid var(--border-light);
  background-color: var(--snow);
  flex-flow: column;
  padding: 2rem 4rem;
  display: flex;
}

.lottie-animation, .lottie-animation-2 {
  height: 16rem;
}

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

.section_articles.background-colour-white {
  background-color: #fff;
}

.section_articles.background-colour-black {
  background-color: var(--main-dark);
  min-height: auto;
  padding: 4.4rem 0;
}

.section_articles.background-colour-white {
  background-color: var(--white);
  min-height: auto;
  padding: 4.4rem 0;
}

.collection-list-wrapper-2 {
  flex-flow: column;
  display: flex;
}

.collection-list-wrapper-2.margin-top {
  margin-top: 4rem;
}

.article-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  height: 24rem;
  display: flex;
}

.article-info-content {
  background-color: var(--snow);
  border-radius: .5rem 0 0 .5rem;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
}

.collection-list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.article-info-image {
  background-color: var(--snow);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 0 .5rem .5rem 0;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding: 0;
  display: flex;
}

.article-image {
  object-fit: contain;
  border-radius: .5rem;
  width: auto;
  max-width: 100%;
  height: auto;
}

.article-link {
  height: 100%;
}

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

.link-block-2 {
  flex: 0 auto;
  width: 100%;
  height: 24rem;
}

.featured-snippet-wrap {
  background-color: #f0ebe7;
  margin-bottom: 40px;
  padding: 25px;
}

.margin-bottom {
  color: #344054;
  margin: 0 0 2rem;
}

.margin-bottom.margin-medium {
  color: #344054;
  text-align: left;
}

.margin-bottom.margin-medium.black {
  color: #344054;
}

.image-71 {
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 40rem;
  margin-top: 44px;
  margin-bottom: 44px;
}

.div-block-90 {
  align-items: center;
  margin-top: 29px;
  margin-bottom: 29px;
  display: flex;
}

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

.padding-vertical.article-padding {
  margin-left: 40px;
  padding-top: 114px;
  padding-bottom: 0;
}

.author-avatar {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.breadcrumb {
  justify-content: flex-start;
  margin-bottom: 2rem;
  display: flex;
}

.text-size-tiny {
  font-size: 16px;
  line-height: 24px;
}

.text-size-tiny.inline, .inline {
  display: inline;
}

.post-overview-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  max-width: 800px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-rich-text {
  color: #000;
  margin-bottom: 100px;
  text-decoration: none;
}

.image-70 {
  margin-top: 1px;
  margin-left: 7px;
  margin-right: 7px;
}

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

.section_article.background-colour-white {
  background-color: #fff;
  margin-top: 4.4rem;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section_article.background-colour-black {
  background-color: var(--main-dark);
  min-height: auto;
  padding: 4.4rem 0;
}

.article-hero-image {
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 40rem;
  margin-top: 44px;
  margin-bottom: 44px;
}

.heading {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-2 {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-3 {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-4 {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.paragraph {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.heading-5 {
  font-size: 2rem;
}

.list, .list-2 {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.paragraph-2 {
  color: var(--main-dark);
}

.list-3, .list-4 {
  color: var(--secondary-text-dark);
  font-size: 1.3rem;
  line-height: 1.6;
}

.heading-6 {
  font-size: 2rem;
}

.background-video {
  border-style: solid none none solid;
  border-width: 1px 0 0 1px;
  border-color: var(--border-light);
  object-fit: fill;
  border-top-left-radius: .5rem;
  width: auto;
  min-width: auto;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.div-block-24 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.link-block-3 {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.link-block-3.twitter {
  display: none;
}

.footer_info {
  color: #797e94;
  text-transform: uppercase;
  border-top: 1px solid #e9eaf0;
  padding-top: 2rem;
  padding-bottom: 0;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.footer-link {
  color: #797e94;
  margin-bottom: 6px;
  font-family: Aeonik, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  display: block;
}

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

.footer-link.blog, .footer-link.partners {
  display: none;
}

.div-block-73 {
  text-align: left;
}

.footer_grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  display: flex;
}

.div-block-25 {
  margin-top: 24px;
  margin-bottom: 40px;
  display: flex;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer_column {
  text-align: left;
}

.container-1176 {
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.div-block-72 {
  text-align: left;
  display: none;
}

.page-padding {
  z-index: 1;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: static;
}

.footer {
  z-index: 91;
  text-align: center;
  background-color: #fff;
  align-items: flex-start;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
  position: static;
}

.footer-logo-link-copy {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.div-block-24-copy {
  flex-direction: column;
  align-items: flex-start;
  display: none;
}

.div-block-70 {
  text-align: left;
  display: none;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  width: 88.52px;
}

.footer-left {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  display: flex;
}

.main-nav-right {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.main-nav-left {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  display: flex;
}

.dd {
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.dd.mobile {
  padding-left: 20px;
  padding-right: 20px;
  display: none;
}

.dropdown-arrow {
  width: 14px;
  margin-left: 5px;
  transform: rotate(90deg);
}

.drop-down-icon {
  width: 24px;
  margin-right: 15.5px;
}

.text-block-11 {
  font-size: 14px;
}

.hamburger-menu-hm12 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
}

.hamburger-menu-hm12.w--open {
  background-color: #0000;
}

.top-bar-hm12, .middle-bar-hm12, .bottom-bar-hm12 {
  background-color: #f1953a;
  border-radius: 6px;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.cross-bar-1-hm12, .cross-bar-2-hm12 {
  background-color: #f1953a;
  border-radius: 6px;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  margin-bottom: 6px;
  position: absolute;
  inset: 25px auto auto;
}

.hamburger-menu-hm12-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
}

.hamburger-menu-hm12-2.w--open {
  background-color: #0000;
}

.top-bar-hm12-2, .middle-bar-hm12-2, .bottom-bar-hm12-2 {
  background-color: #f1953a;
  border-radius: 6px;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.cross-bar-2-hm12-2 {
  background-color: #f1953a;
  border-radius: 6px;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  margin-bottom: 6px;
  position: absolute;
  inset: 25px auto auto;
}

.navbar-hamburger-menu-hm12 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.mobile_hamburger, .mobile-dropdown_wrap {
  display: none;
}

.changelog-main-wrap {
  background-color: var(--main-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
}

.changelog-head-wrap {
  border-bottom: 1px solid #525252;
  width: 90%;
  max-width: 1080px;
  padding: 15px 15px 40px;
}

.heading-25 {
  color: #fff;
  padding-bottom: 20px;
}

.text-block-104 {
  color: #fff;
}

.changelog-body-wrap {
  width: 90%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.collection-list-wrapper-6 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.heading-26 {
  color: #fff;
  padding-bottom: 20px;
}

.collection-list-wrapper-7 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.features-block {
  margin-bottom: 60px;
}

.text-block-105 {
  color: #fff;
  font-size: 32px;
  line-height: 32px;
  position: sticky;
  top: 200px;
}

.dot-green {
  background-color: #55d1bd;
  border-radius: 999px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  margin-right: .5rem;
}

.update-content h1, .update-content h2, .update-content h3, .update-content h4 {
  color: var(--white);
}

.update-content p, .update-content blockquote {
  color: var(--secondary-text-light);
}

.update-content ol, .update-content ul {
  color: var(--secondary-text-light);
  font-family: Aeonik, sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

.update-content a {
  color: var(--mauve-200);
}

.div-block-203 {
  border-bottom: 1px solid #525252;
  flex-direction: row;
  margin-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.text-block-106 {
  color: #ffffff80;
  background-color: #0000;
  border-radius: 8px;
  margin-left: 10px;
  padding: 0;
  display: inline-block;
}

.improvements-block {
  margin-top: 0;
  margin-bottom: 60px;
}

.div-block-206 {
  position: static;
}

.fixes-block {
  margin-top: 0;
}

.dot-purple {
  background-color: #cbbafd;
  border-radius: 999px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  margin-right: .5rem;
}

.div-block-204 {
  flex: 1;
  margin-left: 100px;
}

.features-label {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.features-content {
  font-size: 18px;
}

.dot-yellow {
  background-color: #fff47e;
  border-radius: 999px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  margin-right: .5rem;
}

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

.section_title.background-colour-white {
  background-color: #fff;
  min-height: auto;
  margin-top: 4.4rem;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section_title.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section_title.customers.background-colour-dark {
  background-color: var(--main-dark);
}

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

.section_information.background-colour-white {
  background-color: #fff;
  min-height: auto;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.section_information.background-colour-black {
  background-color: var(--main-dark);
  min-height: auto;
  padding: 4.4rem 0;
}

.locales-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  display: flex;
}

.locales-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.tabs-menu {
  z-index: 2;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--white);
  flex-flow: row;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  position: sticky;
  top: 4rem;
}

.tabs-content {
  z-index: 1;
}

.tab-link-tab-1 {
  color: #bbb;
  background-color: #eeeeed;
  border-radius: .5rem 0 0 .5rem;
  width: 50%;
}

.tab-link-tab-1.w--current {
  border-top: 1px none var(--snow);
  border-right: 1px none var(--snow);
  border-left: 1px none var(--snow);
  background-color: var(--main-dark);
  color: var(--white);
  border-radius: .5rem 0 0 .5rem;
  width: 50%;
}

.tab-link-tab-2 {
  background-color: #eeeeed;
  border-radius: 0 .5rem .5rem 0;
  min-width: 50%;
}

.tab-link-tab-2.w--current {
  background-color: var(--main-dark);
}

.locales-list-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  display: flex;
}

.price-tabs {
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.tabs_wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--table-background-grey);
  border-radius: .5rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: .2rem;
  display: flex;
  position: relative;
}

.tabs-item {
  z-index: 4;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 8rem;
  padding: .5rem 2rem;
  display: flex;
  position: relative;
}

.tabs-item.monthly {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 8rem;
}

.tabs-item.annual {
  border: 1px solid var(--border-main);
  background-color: var(--white);
  cursor: pointer;
}

.tabs-slider {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--border-light);
  background-color: var(--white);
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  width: 7.8rem;
  margin: .1rem;
  padding: .5rem 2rem;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.tabs-slider.monthly {
  background-color: var(--table-background-grey);
  border-style: none;
}

.lang-switch-menu {
  background-color: #fff;
  border-radius: 10px;
  width: 280px;
  height: 436px;
  position: absolute;
  top: 50.5px;
  left: -17px;
}

.lang-switch-menu.box-shadow {
  padding-top: 12px;
  padding-bottom: 0;
  padding-left: 16px;
  left: -61px;
}

.lang-switch-menu.box-shadow.mobile {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--border-light);
  opacity: 1;
  background-color: #fff;
  flex-direction: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100px;
  height: 272px;
  min-height: auto;
  margin-top: 1.8rem;
  margin-left: 60px;
  padding: 15px;
  display: none;
  overflow: visible;
  box-shadow: 0 2px 5px #0003;
}

.dropdown-link {
  border-radius: 10px;
  align-items: center;
  width: auto;
  height: 64px;
  margin-bottom: 5px;
  padding: 9px;
  text-decoration: none;
  display: none;
}

.dropdown-link:hover {
  background-color: #f2f4f8;
}

.lang-icon {
  width: 25px;
  margin-right: 10px;
}

.lang-icon:hover {
  color: #797e94;
  background-color: #0000;
}

.language-switch-wrap {
  cursor: pointer;
  flex-flow: row;
  flex: 0 auto;
  margin: 0;
  padding: 20px 10px;
  display: flex;
  position: relative;
}

.text-block-107 {
  font-size: 14px;
}

.mob-lang-link {
  border-radius: 10px;
  align-items: center;
  width: auto;
  height: 64px;
  margin-bottom: 5px;
  padding: 9px;
  text-decoration: none;
  display: flex;
}

.mob-lang-link:hover {
  background-color: #f2f4f8;
}

.steps {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 500px;
  display: flex;
}

.div-block-264 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #1c1c1e;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  inset: 0% auto auto 0%;
}

.div-block-264.import {
  background-color: #55d1bd;
  position: relative;
}

.div-block-269 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-121 {
  color: #fff;
  border: 1px #1c1c1e;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: block;
}

.text-block-123 {
  color: #fff;
  font-size: 24px;
}

.link-7 {
  color: #475467;
  text-decoration: underline;
}

.num-wrap {
  background-color: #1c1c1e;
  border: 1px solid #1c1c1e;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
}

.content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.div-block-262 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.line {
  background-color: #1c1c1e;
  width: 2px;
  height: 120px;
}

.heading-30 {
  font-size: 32px;
}

.div-block-266 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-120 {
  color: #475467;
  text-align: left;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.text-block-120.light {
  color: #667085;
  width: 400px;
  margin-top: -15px;
  font-size: 14px;
}

.text-block-118 {
  color: #1c1c1e;
  font-size: 20px;
}

.main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: url('/images/bg-pattern.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  display: flex;
}

.div-block-267 {
  flex-flow: column;
  width: auto;
  display: flex;
}

.div-block-268 {
  height: 176px;
  margin-top: 0;
}

.step-numbers {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-265 {
  position: relative;
}

.div-block-270 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #1c1c1e;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  inset: 0% auto auto 0%;
}

.div-block-270.import {
  background-color: #55d1bd;
  position: relative;
}

.div-block-271 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-124 {
  color: #fff;
  border: 1px #1c1c1e;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: block;
}

.text-block-125 {
  color: #fff;
  font-size: 24px;
}

.div-block-272 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.heading-31 {
  font-size: 32px;
}

.div-block-273 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-126 {
  color: #475467;
  text-align: left;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.text-block-126.light {
  color: #667085;
  width: 400px;
  margin-top: -15px;
  font-size: 14px;
}

.text-block-127 {
  color: #1c1c1e;
  font-size: 20px;
}

.div-block-274 {
  flex-flow: column;
  width: auto;
  display: flex;
}

.div-block-275 {
  height: 176px;
  margin-top: 0;
}

.div-block-276 {
  position: relative;
}

.collection-list-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.link-8, .link-8.w--current {
  font-family: Aeonik, sans-serif;
  font-size: 20px;
  line-height: 40px;
}

.div-block-277 {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.div-block-277.bottom {
  margin-top: 20px;
}

.image-72 {
  width: 125px;
}

.text-block-128 {
  margin-bottom: 5px;
  font-family: Aeonik, sans-serif;
  font-size: 20px;
}

.text-block-128-copy {
  margin-bottom: 5px;
  font-family: Aeonik, sans-serif;
  font-size: 6rem;
  line-height: 8rem;
}

.div-block-278 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-279 {
  flex: 1;
  max-width: 40rem;
  padding: 4rem 0 4rem 4rem;
}

.div-block-280 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 4rem;
  display: flex;
}

.section-overview {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-overview.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section-overview.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-overview.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section-overview.metric {
  display: none;
}

.text-block-129 {
  color: #b3b3b3;
  font-family: Aeonik, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 60px;
}

.text-block-129.big {
  font-size: 6rem;
  line-height: 8rem;
}

.text-span {
  color: #fff;
}

.text-span-2 {
  color: #b3b3b3;
}

.section-highlight {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-highlight.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section-highlight.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-highlight.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.text-intro {
  color: #b3b3b3;
  font-family: Aeonik, sans-serif;
  font-size: 40px;
  line-height: 60px;
}

.text-intro.second {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 4rem;
}

.data-block-wrap {
  display: flex;
}

.data-block-wrap.left {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.data-block-wrap.right {
  justify-content: flex-end;
  align-items: center;
}

.data-block {
  border: 1px solid #8b8b8b;
  border-radius: .4rem;
  padding: 1.2rem;
}

.data-block.left-right {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  background-color: var(--background-secondary-dark);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
  display: flex;
}

.data-block.right-left {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  background-color: var(--background-secondary-dark);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 400px;
  display: flex;
}

.data-block.right-left.big {
  width: 100%;
}

.data-text {
  font-family: Aeonik, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 80px;
}

.data-text.green {
  color: var(--turquoise-400);
  font-weight: 500;
}

.data-text.red {
  color: #fa9ab2;
}

.text-block-130 {
  color: #b3b3b3;
  text-align: center;
  font-family: Aeonik, sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.text-block-130.right {
  text-align: center;
  height: auto;
  min-height: auto;
}

.text-block-130.right.yellow {
  color: #fff47e;
}

.text-block-130.right.purple {
  color: #a58ef0;
}

.text-block-130.right.green {
  color: var(--blue);
}

.div-block-281 {
  margin-bottom: 0;
}

.div-block-282 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-279-copy {
  flex: 1;
  max-width: 32rem;
  padding: 0;
}

.div-block-283 {
  margin-left: auto;
  margin-right: auto;
}

.lines {
  border-top: 1px #555;
  border-bottom: 1px solid #555;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 100svh;
  display: flex;
}

.lines.menu {
  width: 100%;
}

.lines-2 {
  border-top: 1px #555;
  border-bottom: 1px #555;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  min-height: 100svh;
  display: flex;
}

.lines-2.stats {
  min-height: auto;
}

.text-span-3 {
  color: #fff;
  font-weight: 500;
}

.report-head-2 {
  margin-bottom: 5px;
  font-family: Aeonik, sans-serif;
  font-size: 2rem;
  line-height: 2rem;
}

.report-head-3 {
  margin-bottom: 5px;
  font-family: Aeonik, sans-serif;
  font-size: 4rem;
  line-height: 6rem;
}

.div-block-280-copy {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 4rem;
  display: flex;
}

.div-block-284 {
  flex-flow: column;
  display: flex;
}

.text-block-131 {
  margin-bottom: 4rem;
  font-family: Aeonik, sans-serif;
  font-size: 4rem;
  line-height: 5rem;
}

.stats-type {
  display: flex;
}

.stats-type.left {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.stats-type.left.trends {
  margin-top: 4rem;
}

.stats-type.left.tips {
  margin-top: 0;
}

.stats-type.right {
  justify-content: flex-end;
  align-items: center;
}

.stats-type.btm {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.text-block-132 {
  text-align: center;
  font-size: 3rem;
  line-height: 3rem;
}

.div-block-285 {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.compare-text.green {
  color: #55d1bd;
  font-family: Aeonik, sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  position: static;
}

.compare-text.red {
  color: #fa9ab2;
  font-family: Aeonik, sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  position: static;
}

.image-73 {
  height: 1.6rem;
}

.stats-block {
  border: 1px solid #8b8b8b;
  border-radius: .4rem;
  padding: 1.2rem;
}

.stats-block.left-right {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  background-color: var(--background-secondary-dark);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
  display: flex;
}

.stats-block.right-left {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  background-color: var(--background-secondary-dark);
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.stats-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.stats-wrap.tips {
  margin-top: 2rem;
}

.section-stats {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 2rem;
  display: flex;
  position: relative;
}

.section-stats.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section-stats.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-stats.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section-stats.tips {
  min-height: auto;
  padding-bottom: 2rem;
}

.sticky-menu-head {
  z-index: 999;
  background-color: #000;
  height: 3.2rem;
  margin-top: 0;
  padding-top: 4rem;
  position: sticky;
  top: 28px;
}

.menu-wrapper {
  background-color: #000;
  justify-content: space-between;
  align-items: center;
  height: 3.2rem;
  display: flex;
}

.text-block-133 {
  color: #b3b3b3;
  font-family: Aeonik, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
}

.text-block-133:hover, .text-block-133.w--current {
  color: #fff;
}

.text-span-4, .text-span-5, .text-span-6 {
  color: #fff;
  font-weight: 500;
}

.b-n-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-286 {
  z-index: 90;
  background-color: #000;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  inset: auto 0% 0%;
}

.div-block-287 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 93.9531px;
  display: flex;
}

.div-block-287.next {
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  width: 88.9141px;
}

.text-block-134 {
  color: #fff;
  font-family: Aeonik, sans-serif;
  font-size: 1.4rem;
}

.image-74 {
  width: 28px;
}

.trend-text {
  color: #b3b3b3;
  text-align: center;
  margin-top: 1.2rem;
  font-family: Aeonik, sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.trend-text.right {
  text-align: center;
  height: auto;
  min-height: auto;
}

.trend-text.right.yellow {
  color: #fff47e;
}

.trend-text.right.purple {
  color: #a58ef0;
}

.trend-text.right.green {
  color: var(--blue);
}

.trend-text.no-marg {
  margin-top: 0;
}

.trend-data {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 3rem;
  line-height: 3rem;
}

.trend-data.no-marg {
  margin-top: 0;
}

.source-text {
  color: #949494;
  font-family: Aeonik, sans-serif;
  font-size: .8rem;
  font-style: italic;
  font-weight: 400;
}

.list-item {
  font-family: Aeonik, sans-serif;
  font-size: 1.2rem;
}

.bold-text {
  color: #b3b3b3;
  font-weight: 500;
}

.list-item-2 {
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

.list-item-cus {
  color: #b3b3b3;
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

.bold-cus {
  color: #ececec;
  font-weight: 500;
}

.list-item-3 {
  font-size: 1rem;
}

.div-block-286-copy {
  z-index: 90;
  z-index: 90;
  z-index: 90;
  z-index: 90;
  inset: auto 0% 0%;
  z-index: 90;
  inset: auto 0% 0%;
  inset: auto 0% 0%;
  z-index: 90;
  inset: auto 0% 0%;
  inset: auto 0% 0%;
  z-index: 90;
  inset: auto 0% 0%;
  background-color: #000;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  inset: auto 0% 0%;
}

.section-menu {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  display: flex;
  position: relative;
}

.section-menu.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section-menu.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-menu.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section-menu.metric {
  display: none;
}

.div-block-288 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.menu-block {
  border: 1px solid #8b8b8b;
  border-radius: .4rem;
  padding: 1.2rem;
}

.menu-block.left-right {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  background-color: var(--background-secondary-dark);
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 160px;
  text-decoration: none;
  display: flex;
}

.menu-block.left-right:hover {
  border-color: #fff;
}

.menu-block.right-left {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  background-color: var(--background-secondary-dark);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 400px;
  display: flex;
}

.menu-block.right-left.big {
  width: 100%;
}

.div-block-289 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.ph-banner {
  z-index: 99999;
  margin-top: 0;
  position: fixed;
  inset: 16% auto auto 2%;
}

.div-block-290 {
  padding-top: 12rem;
  padding-bottom: 4rem;
}

.heading-32 {
  color: var(--white);
  text-transform: capitalize;
  font-size: 4rem;
}

.text-block-135 {
  color: #4e4e4e;
  font-family: Aeonik, sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
}

.section-descption {
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-descption.background-colour-white {
  background-color: #fff;
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-descption.background-colour-black {
  background-color: var(--main-dark);
  min-height: auto;
  padding: 4.4rem 0;
}

.gloss-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.gloss-menu.back {
  justify-content: flex-start;
  align-items: center;
}

.link-9 {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  display: inline-block;
}

.link-9.prev {
  margin-right: 4px;
}

.link-10 {
  color: var(--secondary-text-dark);
  font-size: 1.4rem;
  text-decoration: none;
}

.link-10:hover {
  color: var(--main-dark);
  text-decoration: underline;
}

.div-block-291 {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.heading-33 {
  color: var(--white);
  font-size: 4rem;
}

.order-list-wrap {
  flex-flow: column;
  display: flex;
}

.text-block-136 {
  border-bottom: 1px solid var(--border-main);
  color: var(--main-dark);
  padding-bottom: .4rem;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4rem;
}

.link-11 {
  color: var(--main-dark);
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
  text-decoration: none;
}

.link-11:hover {
  color: var(--background-secondary-dark);
  text-decoration: none;
}

.div-block-292 {
  border-bottom: 1px solid var(--main-dark);
  width: 100%;
  margin-bottom: 0;
  padding-bottom: .4rem;
}

.collection-list-3 {
  flex: 1;
  margin-top: 2rem;
}

.collection-list-3.bottom {
  margin-top: 0;
}

.order-letter-wrap {
  border-bottom: 1px solid var(--border-main);
  padding-bottom: 1rem;
  display: none;
}

.text-block-137 {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 3rem;
  line-height: 2rem;
}

.empty-state {
  background-color: #ddd0;
}

.link-12 {
  color: var(--main-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  text-decoration: none;
}

.link-12:hover {
  color: var(--main-dark);
}

.collection-list-wrapper-8 {
  margin-top: 1rem;
}

.collection-list-wrapper-9 {
  display: flex;
}

.collection-item-2 {
  width: 100%;
  margin-bottom: 4rem;
}

.text-block-138 {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

.collection-item-3 {
  border-bottom: 1px solid var(--border-main);
  padding: .4rem .8rem;
}

.collection-item-3:hover {
  background-color: var(--snow);
  padding-left: .8rem;
  padding-right: .8rem;
}

.link-block-4 {
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.image-75 {
  width: 1.4rem;
  height: 1.4rem;
}

.section_tool_list {
  z-index: 91;
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section_tool_list.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 2rem;
  padding-top: 6rem;
  padding-bottom: 0;
}

.section_tool_list.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section_tool_list.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section_tool_list.gloss, .section_tool_list.gloss-main {
  min-height: auto;
  margin-top: 85px;
}

.tool-item-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px solid var(--border-main);
  border-radius: .4rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  display: flex;
}

.tool-content-wrap {
  flex: 1;
}

.tool-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.collection-list-4 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.tool-snippet {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

.div-block-293 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  display: flex;
}

.text-block-139 {
  color: var(--mauve-200);
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

.div-block-294 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link-13 {
  font-family: Aeonik, sans-serif;
}

.section-tools-chapters {
  z-index: 91;
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-tools-chapters.background-colour-white {
  background-color: #fff;
  min-height: 80svh;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section-tools-chapters.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-tools-chapters.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section-tools-chapters.gloss, .section-tools-chapters.gloss-main {
  min-height: auto;
  margin-top: 85px;
}

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

.chapter-item {
  border: 1px solid var(--border-main);
  background-color: var(--snow);
  border-radius: .4rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  display: flex;
}

.image-76 {
  width: 4rem;
}

.subcat-tag {
  color: var(--secondary-text-dark);
  text-align: center;
  margin-right: 0;
  font-family: Aeonik, sans-serif;
  display: block;
}

.div-block-295 {
  flex-flow: column;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.in-chap-link {
  color: var(--secondary-text-dark);
  text-decoration: none;
}

.in-chap-link:hover {
  color: var(--main-dark);
}

.tools-chap-header {
  text-align: center;
  font-size: 2rem;
  line-height: 2rem;
}

.link-14 {
  margin-top: 2rem;
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

.heading-34 {
  margin-bottom: 2rem;
}

.image-77 {
  width: 6rem;
  max-width: 6rem;
}

.list-section {
  display: flex;
}

.list-menu-wrapper {
  width: 320px;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  position: relative;
}

.tools-list-wrapper {
  flex: 1;
  position: relative;
}

.list-wrapper {
  grid-column-gap: 2.8rem;
  grid-row-gap: 2.8rem;
  justify-content: center;
  align-items: stretch;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.list-menu {
  border: 1px solid var(--border-main);
  background-color: var(--snow);
  border-radius: .4rem;
  flex-flow: column;
  padding: .8rem;
  display: flex;
  position: sticky;
  top: 8rem;
}

.text-block-140 {
  border-bottom: 1px solid var(--border-main);
  color: var(--main-dark);
  margin-bottom: .4rem;
  font-family: Aeonik, sans-serif;
  font-size: .8rem;
  line-height: 1.6rem;
}

.link-15 {
  color: var(--secondary-text-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  text-decoration: none;
}

.link-15:hover {
  color: var(--main-dark);
  text-decoration: none;
}

.section-ranking-intro {
  z-index: 91;
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-ranking-intro.background-colour-white {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-ranking-intro.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-ranking-intro.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section-ranking-intro.gloss, .section-ranking-intro.gloss-main {
  min-height: auto;
  margin-top: 85px;
}

.rich-text-block-2 {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
}

.rich-text-block-2 p {
  color: var(--secondary-text-dark);
}

.rich-text-block-2 ol {
  color: var(--secondary-text-dark);
  font-size: 1.3px;
  line-height: 2px;
}

.rich-text-block-2 li {
  color: var(--secondary-text-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.section-ranking-content {
  z-index: 91;
  color: #fff;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.section-ranking-content.background-colour-white {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-ranking-content.background-colour-white.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-ranking-content.customers.background-colour-dark {
  background-color: var(--main-dark);
}

.section-ranking-content.gloss, .section-ranking-content.gloss-main {
  min-height: auto;
  margin-top: 85px;
}

.section-ranking-content.rank-1 {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-ranking-content.rank-1.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-ranking-content.rank-2 {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-ranking-content.rank-2.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-ranking-content.rank-3 {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-ranking-content.rank-3.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-ranking-content.rank-4 {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-ranking-content.rank-4.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.section-ranking-content.grid {
  background-color: #fff;
  min-height: auto;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 4rem;
}

.section-ranking-content.grid.auto-vh {
  min-height: auto;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.rank-content-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rank-content-wrap.comp {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.heading-35 {
  margin-right: 12px;
  display: inline-block;
}

.heading-36 {
  display: inline-block;
}

.image-78 {
  width: 100%;
}

.ranking-chapters-wrap {
  border: 1px solid var(--border-main);
  background-color: var(--snow);
  border-radius: .4rem;
  max-width: 60rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.6rem;
}

.list-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--main-dark);
  flex-flow: column;
  font-family: Aeonik, sans-serif;
  display: flex;
}

.list-item-4 {
  color: var(--main-dark);
}

.text-block-141, .text-block-142, .text-block-143, .text-block-144 {
  color: var(--secondary-text-dark);
}

.image-79 {
  width: 6rem;
  max-width: 6rem;
}

.link-16 {
  font-size: 1.2rem;
  text-decoration: none;
}

.link-16:hover {
  text-decoration: underline;
}

.text-block-145 {
  color: var(--main-dark);
  margin-bottom: 2rem;
  font-family: Aeonik, sans-serif;
  font-size: 1.2rem;
  line-height: 2rem;
}

.list-6 {
  color: var(--secondary-text-dark);
  font-size: 1.3rem;
  line-height: 2rem;
}

.list-item-5 {
  color: var(--secondary-text-dark);
  font-size: 1.3rem;
}

.list-item-6 {
  color: var(--background-secondary-dark);
}

.heading-37 {
  line-height: 2rem;
}

.comparison-row {
  background-color: #fff;
  padding-top: 8rem;
  display: flex;
  position: sticky;
  top: 0;
}

.comparison-row.rank-2 {
  padding-top: 0;
  position: static;
}

.comparison-row.rank-1 {
  z-index: 1;
  padding-top: 0;
  position: relative;
}

.comparison-row.rank-3 {
  border-bottom: 1px solid var(--border-main);
  padding-top: 0;
  position: static;
}

.comparison-row.rank-4 {
  padding-top: 0;
  position: static;
}

.comparison-row.top {
  z-index: 99;
  border-bottom: 1px solid var(--border-main);
  padding-top: 8rem;
  top: 0;
}

.comparison-name {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-style: solid none none solid;
  border-width: 1px;
  border-color: var(--border-main);
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.2rem;
  display: flex;
}

.comparison-name.last {
  border-bottom-style: solid;
}

.comparison-pro, .comparison-con, .comparison-price {
  flex: 1;
}

.text-block-146 {
  color: var(--background-secondary-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.2rem;
  line-height: 2rem;
}

.text-block-146.top {
  font-family: Aeonik, sans-serif;
  font-weight: 500;
}

.comp-pro {
  border-style: solid none none solid;
  border-width: 1px;
  border-color: var(--border-main);
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.2rem;
  display: flex;
}

.comp-pro.last {
  border-bottom-style: solid;
}

.comp-con {
  border-style: solid none none solid;
  border-width: 1px;
  border-color: var(--border-main);
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.2rem;
  display: flex;
}

.comp-con.last {
  border-bottom-style: solid;
}

.comp-price {
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--border-main);
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.2rem;
  display: flex;
}

.comp-price.last {
  border-bottom-style: solid;
}

.rt-grid-comp p {
  color: var(--secondary-text-dark);
  font-size: 1rem;
  line-height: 1.6rem;
}

.rt-grid-comp ol, .rt-grid-comp li {
  color: var(--secondary-text-dark);
}

.web-link {
  color: var(--background-secondary-dark);
  font-family: Aeonik, sans-serif;
  font-size: 1.2rem;
  line-height: 2rem;
}

.web-link.top {
  font-family: Aeonik, sans-serif;
  font-weight: 500;
}

.web-link.comp {
  font-size: .8rem;
}

.be-cal-code-wrap {
  flex: 1;
  padding-top: 4rem;
}

.be-cal-code-wrap.marg-btm {
  padding-bottom: 4rem;
}

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

.written-content-wrap {
  flex: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block-298 {
  flex: 1;
}

.div-block-296-copy {
  display: flex;
}

.page-content-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  display: flex;
}

.page-content {
  position: relative;
}

.bec-header-wrap {
  margin-top: 91.5938px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.heading-38 {
  color: var(--white);
}

.paragraph-3, .paragraph-4, .bold-text-2, .paragraph-5, .paragraph-6, .paragraph-7 {
  color: var(--secondary-text-dark);
}

.list-item-7 {
  color: var(--secondary-text-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.list-item-8, .list-item-9, .list-item-10 {
  color: var(--secondary-text-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.paragraph-8, .paragraph-9 {
  color: var(--secondary-text-dark);
}

.list-item-11, .list-item-12, .list-item-13 {
  color: var(--secondary-text-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.paragraph-10, .paragraph-11 {
  color: var(--secondary-text-dark);
}

.list-item-14, .list-item-15, .list-item-16, .list-item-17 {
  color: var(--secondary-text-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

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

.h1-dark-bg {
  color: var(--white);
}

.code-embed {
  position: relative;
  top: 0;
  overflow: scroll;
}

.price-cal-embed {
  z-index: 1;
  position: relative;
  top: 0;
  overflow: scroll;
}

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

.padding.nav {
  padding-top: 2rem;
}

.content-wrap {
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
}

.content-wrap.hor {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row;
  padding-top: 13rem;
  padding-bottom: 6rem;
  display: flex;
}

.hero-pcfo {
  background-color: var(--mauve-200);
  height: auto;
  margin-top: -7rem;
}

.nav-bar {
  z-index: 999;
  background-color: var(--snow);
  border-bottom: 8px solid #1c1c1e;
  border-right: 8px solid #1c1c1e;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.image-80 {
  width: 125px;
}

.div-block-299 {
  z-index: 999;
  position: sticky;
  top: 0;
}

.button-2 {
  background-color: var(--main-dark);
  border-radius: 8px;
  font-family: Aeonik, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.button-2.mt-2 {
  margin-top: 2rem;
}

.button-2.marg {
  justify-content: center;
  align-items: center;
  width: 40%;
  height: auto;
  margin-top: 2rem;
  padding: 1vw;
  font-size: 1.6vw;
  display: flex;
}

.button-2.marg.purple {
  background-color: var(--mauve-200);
}

.text-span-7, .text-span-8, .text-span-9, .text-span-10, .text-span-11 {
  font-style: italic;
  font-weight: 500;
}

.heading-39 {
  font-size: 5.8vw;
}

.div-block-300 {
  flex: 1;
  position: relative;
}

.image-81 {
  width: 100%;
}

.mt-2 {
  margin-top: 2rem;
  padding-right: 4vw;
  font-family: Aeonik, sans-serif;
  font-size: 1.4vw;
  line-height: 2vw;
}

.div-block-301 {
  width: 50%;
  padding-bottom: 6rem;
  position: relative;
}

.div-block-302 {
  z-index: 1;
  position: sticky;
  top: 15rem;
}

.section {
  background-color: var(--main-dark);
  height: auto;
}

.heading-40 {
  color: var(--snow);
  text-align: center;
  font-size: 3.2vw;
  font-weight: 300;
  line-height: 3.2vw;
}

.heading-40.big {
  font-size: 4vw;
  font-weight: 400;
  line-height: 4vw;
}

.text-span-12 {
  font-style: italic;
  font-weight: 500;
}

.text-block-147 {
  color: #b3b3b3;
  text-align: center;
  margin-top: 2rem;
  font-family: Aeonik, sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 2vw;
}

.text-block-147.big {
  font-size: 2vw;
  line-height: 3.2vw;
}

.div-block-303 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.div-block-303.btn {
  justify-content: center;
  align-items: center;
}

.div-block-304 {
  background-color: var(--snow);
  border-bottom: 8px solid #fff47e;
  border-right: 8px solid #fff47e;
  border-radius: 16px;
  flex-flow: column;
  flex: 1;
  height: auto;
  min-height: 16vw;
  padding: 1.4vw;
  display: flex;
}

.div-block-304.orange {
  border-bottom-color: #e7be9c;
  border-right-color: #e7be9c;
}

.div-block-304.blue {
  border-bottom-color: #91c2f2;
  border-right-color: #91c2f2;
}

.text-block-148 {
  color: #344054;
  font-family: Aeonik, sans-serif;
  font-size: 1vw;
  line-height: 1.4vw;
}

.heading-41 {
  margin-bottom: 2vw;
  font-size: 2.4vw;
  line-height: 2.4vw;
}

.heading-41.big {
  font-size: 4vw;
  line-height: 4.8vw;
}

.heading-42, .heading-43 {
  margin-bottom: 2vw;
  font-size: 2.4vw;
  line-height: 2.4vw;
}

.text-span-13, .text-span-14, .text-span-15 {
  font-style: italic;
  font-weight: 500;
}

.track {
  background-color: #1c1c1e;
  height: 500vw;
  overflow: visible;
}

.track.mob {
  display: none;
}

.camera {
  width: 100vw;
  height: 100vh;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.frame {
  flex-flow: row;
  height: 100%;
  display: flex;
  overflow: visible;
}

.item {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 4rem 5rem 10rem;
  display: flex;
}

.item._1, .item._2, .item._3, .item._4 {
  display: flex;
}

.card {
  background-color: #91c2f2;
  border-radius: 8px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 6vw;
  display: flex;
}

.card.purple {
  background-color: #cbbafd;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 6vw;
  display: flex;
}

.card.yellow {
  background-color: #fff47e;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 6vw;
  display: flex;
}

.card.orange {
  background-color: #e7be9c;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 6vw;
  display: flex;
}

.card.green {
  background-color: #55d1bd;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 6vw;
  display: flex;
}

.div-block-305 {
  width: 100%;
}

.section-quote {
  background-color: #e5dfda;
  background-image: url('/images/Group-6.png');
  background-position: 90% 100%;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 100vh;
}

.quote-wrap {
  width: 64%;
  margin-top: 2rem;
  position: relative;
}

.text-block-149 {
  z-index: 2;
  font-family: Aeonik, sans-serif;
  font-size: 3.6vw;
  font-weight: 400;
  line-height: 4.8vw;
  display: inline-block;
  position: relative;
}

.text-block-149.callout {
  font-style: italic;
  font-weight: 500;
}

.text-block-150 {
  margin-top: 2rem;
  font-family: Aeonik, sans-serif;
  font-size: 2vw;
  font-weight: 500;
  line-height: 2.4vw;
}

.text-span-16 {
  font-style: italic;
  font-weight: 500;
}

.long-line {
  z-index: 1;
  width: 28vw;
  position: absolute;
  inset: 3.6vw 0 auto auto;
}

.image-82 {
  width: 8vw;
  position: absolute;
  inset: auto 0% 0%;
}

.text-span-17 {
  font-style: italic;
  font-weight: 500;
}

.div-block-306, .div-block-307 {
  margin-left: .8vw;
  margin-right: .8vw;
  display: inline-block;
  position: relative;
}

.text-span-18 {
  font-style: italic;
  font-weight: 500;
}

.div-block-308 {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.head-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-310 {
  width: 90%;
}

.card_content-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3.text-color-primary {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.text-size-tiny-2 {
  font-size: .75rem;
}

.text-size-tiny-2.text-color-secondary {
  color: #d2ff09;
}

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

.text-size-regular.text-color-primary {
  color: #bcbcbc;
}

.card-right {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 30px;
  display: flex;
}

.hero_card-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  top: 10rem;
}

.card-left {
  width: 50%;
  height: 100%;
}

.img-card {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.stacking-card {
  background-color: #010102;
  border: 1px solid #454b02;
  border-radius: 18px;
  justify-content: center;
  align-items: flex-start;
  width: 850px;
  height: 341px;
  display: flex;
  position: sticky;
  overflow: hidden;
  box-shadow: 0 -8px 20px 1px #fff3;
}

.stacking-card.is--fifth {
  margin-bottom: 1rem;
  top: 14rem;
}

.stacking-card.is--second {
  margin-bottom: 4rem;
  top: 11rem;
}

.stacking-card.is--first {
  margin-bottom: 5rem;
  top: 10rem;
}

.stacking-card.is--sixth {
  margin-bottom: 0;
  top: 15rem;
}

.stacking-card.is--fourth {
  margin-bottom: 2rem;
  top: 13rem;
}

.stacking-card.is--third {
  margin-bottom: 3rem;
  top: 12rem;
}

.image-83 {
  border-bottom: 12px solid #422e83;
  border-right: 12px solid #422e83;
  border-radius: 16px;
  width: 24vw;
  position: absolute;
  inset: auto auto 36vw -4vw;
}

.image-84 {
  border-right: 12px solid var(--turquoise-400);
  border-bottom: 12px solid var(--turquoise-400);
  border-radius: 16px;
  width: 24vw;
  position: absolute;
  inset: auto -2vw 16vw auto;
}

.image-85 {
  border-bottom: 12px solid #0e564a;
  border-right: 12px solid #0e564a;
  border-radius: 8px;
  width: 20vw;
  margin-right: 2vw;
}

.image-86 {
  border-bottom: 12px solid #0e564a;
  border-right: 12px solid #0e564a;
  border-radius: 8px;
  width: 20vw;
  margin-left: 2vw;
}

.image-87 {
  border-bottom: 12px solid #514475;
  border-right: 12px solid #514475;
  border-radius: 8px;
  width: 28vw;
}

.img-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.image-88 {
  width: 18vw;
}

.image-89 {
  background-color: #fff;
  border-bottom: 8px solid #1c1c1e;
  border-right: 8px solid #1c1c1e;
  border-radius: 16px;
  width: 24vw;
  position: absolute;
  inset: auto auto 12vw 4vw;
}

.image-90 {
  border-bottom: 8px solid #7a461a;
  border-right: 8px solid #7a461a;
  border-radius: 8px;
  width: 18vw;
}

.image-91 {
  border-bottom: 8px solid #7a461a;
  border-right: 8px solid #7a461a;
  border-radius: 8px;
  width: 18vw;
  position: absolute;
  inset: auto auto 8vw 4vw;
}

.image-92 {
  width: 24vw;
}

.container-1177 {
  flex-flow: column;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
}

.container-1178 {
  min-height: 200px;
  margin-top: 100px;
}

.form {
  flex-flow: column;
  display: flex;
}

.text-field {
  text-align: left;
  border: 1px solid #000;
  border-radius: 4px;
  flex: 0 auto;
  order: 0;
  align-self: center;
  min-height: 200px;
  margin-bottom: 10px;
  padding: 0;
  display: block;
}

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

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

.submit-button {
  text-align: center;
  background-color: #000;
  border-radius: 4px;
  width: 200px;
  min-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .section_hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero_grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .button.primary, .button.primary.mobile {
    display: block;
  }

  .button.primary.header {
    display: none;
  }

  .nav_button {
    color: #fff;
  }

  .section_quote {
    padding-top: 3rem;
  }

  .section_quote.background-colour-black {
    flex-flow: column;
  }

  .quote_grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1.8fr;
    grid-auto-flow: row;
    height: auto;
  }

  .quote_image_wrap.helacom, .quote_image_wrap.rosewood {
    height: 40rem;
  }

  .section_logos, .section-list {
    padding-top: 3rem;
  }

  .section-list.background-colour-white {
    min-height: auto;
  }

  .feature-blocks_wrapper {
    height: auto;
  }

  .feature-block-l.background-colour-dark {
    height: 52rem;
  }

  .feature-block-l.background-colour-light {
    flex-flow: column;
    height: 52rem;
  }

  .feature-content-large {
    width: auto;
  }

  .text-size-xl, .text-size-xl.text-colour-dark {
    text-decoration: none;
  }

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

  .feature-block-s.background-image {
    height: 40rem;
    min-height: auto;
  }

  .feature-block-s.background-color-dark, .feature-block-s.background-colour-light {
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
  }

  .feature-content-small, .feature-image-small.margin-top-medium {
    margin-top: 2rem;
  }

  .text-size-l {
    text-decoration: none;
  }

  .text-size-m.hide-mobile {
    display: none;
  }

  .section_customer-hero, .section_post-body {
    padding-top: 3rem;
  }

  .main-menu_wrap {
    display: none;
  }

  .main-menu_wrap.mobile {
    flex-flow: column;
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
    display: flex;
  }

  .featured-resources_wrap {
    flex-flow: column;
  }

  .section_articles {
    padding-top: 3rem;
  }

  .section_articles.background-colour-black {
    flex-flow: column;
  }

  .article-item {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column-reverse wrap;
    height: 32rem;
  }

  .article-info-content {
    border-radius: 0 0 .5rem .5px;
    flex: 1;
    height: auto;
  }

  .article-info-image {
    border-radius: .5px .5rem 0 0;
    flex: 1;
  }

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

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

  .padding-vertical.article-padding {
    padding-top: 124px;
    padding-bottom: 48px;
  }

  .section_article {
    padding-top: 3rem;
  }

  .section_article.background-colour-white {
    min-height: auto;
  }

  .footer_info {
    padding-top: 31px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer_grid {
    grid-column-gap: 25px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: stretch space-between;
    place-items: flex-start stretch;
    margin-bottom: 1rem;
    display: flex;
  }

  .footer-heading {
    font-size: 14px;
  }

  .page-padding {
    flex: 0 auto;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-24-copy {
    display: none;
  }

  .dd.mobile {
    border-bottom: 1px solid #b9c6d3;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    display: flex;
  }

  .dd-open {
    cursor: pointer;
    justify-content: space-between;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .div-block-110 {
    flex-direction: column;
    width: 100%;
    height: 0;
    display: flex;
    overflow: hidden;
  }

  .mobile-dropdown-item {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .div-block-111 {
    flex-direction: column;
    width: 100%;
    height: 0;
    display: flex;
    overflow: hidden;
  }

  .mobile_hamburger {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    cursor: pointer;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    display: flex;
  }

  .hb-top, .hb-middle, .hb-bottom {
    background-color: var(--main-dark);
    width: 100%;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .mobile-dropdown_wrap {
    flex-flow: column;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    overflow: hidden;
  }

  .changelog-head-wrap {
    border-bottom-style: solid;
    margin-bottom: 10px;
  }

  .text-block-105 {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    display: inline-block;
  }

  .div-block-203 {
    flex-direction: column;
  }

  .div-block-206 {
    margin-bottom: 60px;
  }

  .div-block-204 {
    margin-left: 0;
  }

  .section_title, .section_information {
    padding-top: 3rem;
  }

  .section_information.background-colour-white {
    min-height: auto;
  }

  .lang-switch-menu.box-shadow.mobile {
    display: none;
  }

  .dropdown-link {
    height: auto;
    margin-bottom: 0;
    padding: 15px 0;
    display: flex;
  }

  .language-switch-wrap {
    display: none;
  }

  .lang-switch-mob {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mob-lang-link {
    background-color: #fff0;
    height: auto;
    margin-bottom: 0;
    padding: 15px 0;
    display: flex;
  }

  .mob-lang-link:hover {
    background-color: #fff0;
  }

  .div-block-266 {
    flex-flow: column;
  }

  .main {
    flex-flow: column;
    height: auto;
  }

  .div-block-273, .div-block-278 {
    flex-flow: column;
  }

  .section-overview {
    padding-top: 3rem;
  }

  .text-block-129.big {
    font-size: 4rem;
    line-height: 6rem;
  }

  .section-highlight {
    padding-top: 3rem;
  }

  .div-block-282 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
  }

  .div-block-279-copy {
    display: none;
  }

  .div-block-283 {
    width: 100%;
  }

  .stats-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
  }

  .section-stats {
    padding-top: 3rem;
  }

  .sticky-menu-head {
    top: 28px;
  }

  .section-menu {
    padding-top: 3rem;
  }

  .div-block-288 {
    flex-flow: column;
  }

  .menu-block.left-right {
    width: 400px;
  }

  .section-descption {
    padding-top: 3rem;
  }

  .section-descption.background-colour-white {
    min-height: auto;
  }

  .section_tool_list {
    min-height: auto;
    padding-top: 8rem;
  }

  .tool-item-wrap {
    flex-flow: row;
  }

  .section-tools-chapters {
    min-height: auto;
    padding-top: 8rem;
  }

  .list-menu-wrapper {
    display: none;
  }

  .tools-list-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .section-ranking-intro, .section-ranking-content {
    min-height: auto;
    padding-top: 8rem;
  }

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

  .content-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .content-wrap.hor {
    flex-flow: column;
  }

  .content-wrap.stack {
    padding-bottom: 16rem;
  }

  .button-2.marg {
    width: 100%;
    font-size: 3.2vw;
    line-height: 6vw;
  }

  .heading-39 {
    font-size: 12vw;
    line-height: 14vw;
  }

  .mt-2 {
    font-size: 4vw;
    line-height: 6vw;
  }

  .div-block-301 {
    width: auto;
  }

  .heading-40, .heading-40.big {
    font-size: 6vw;
    line-height: 8vw;
  }

  .text-block-147 {
    font-size: 3.6vw;
    line-height: 5vw;
  }

  .text-block-147.big {
    font-size: 3.2vw;
    line-height: 4vw;
  }

  .div-block-303 {
    flex-flow: column;
  }

  .div-block-304 {
    padding: 4.4vw;
  }

  .text-block-148 {
    font-size: 3vw;
    line-height: 4.8vw;
  }

  .heading-41 {
    font-size: 5.2vw;
    line-height: 6vw;
  }

  .heading-41.big {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  .heading-42, .heading-43 {
    font-size: 5.2vw;
    line-height: 6vw;
  }

  .track {
    height: auto;
    display: none;
  }

  .track.mob {
    display: block;
  }

  .camera {
    height: auto;
    overflow: hidden;
  }

  .frame {
    flex-flow: column;
    height: auto;
    position: relative;
  }

  .item._1 {
    position: sticky;
    top: 0;
  }

  .section-quote {
    background-size: 32vh;
    height: auto;
    min-height: 800px;
  }

  .quote-wrap {
    width: 100%;
  }

  .text-block-149 {
    font-size: 5.6vw;
    line-height: 8vw;
  }

  .text-block-150 {
    font-size: 4.4vw;
    line-height: 6vw;
  }

  .div-block-308 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
  }

  .stacking-card {
    box-shadow: none;
    border-style: none;
    border-radius: 16px;
    width: 100%;
    height: auto;
  }

  .stacking-card.is--fifth {
    background-color: #91c2f2;
    width: 100%;
  }

  .stacking-card.is--second {
    background-color: #cbbafd;
    width: 100%;
  }

  .stacking-card.is--first {
    background-color: var(--turquoise-400);
    box-shadow: none;
    border-style: none;
    border-radius: 16px;
    width: 100%;
    height: auto;
  }

  .stacking-card.is--sixth {
    width: 85vw;
  }

  .stacking-card.is--fourth {
    background-color: #e7be9c;
    width: 100%;
  }

  .stacking-card.is--third {
    background-color: #fff47e;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .button.primary {
    display: block;
  }

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

  .nav_fixed {
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
  }

  .accordion-item-content {
    margin-right: 0;
  }

  .main-menu_wrap {
    display: none;
  }

  .global-home_link.w--current {
    width: 6rem;
  }

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

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

  .footer_grid {
    grid-row-gap: 4rem;
    flex-flow: column;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-image {
    object-fit: contain;
  }

  .footer-left {
    justify-content: space-between;
    align-items: flex-start;
  }

  .navbar {
    background-color: #ddd0;
  }

  .hamburger-menu-hm12 {
    padding: 0;
  }

  .top-bar-hm12, .middle-bar-hm12, .bottom-bar-hm12, .cross-bar-2-hm12 {
    background-color: var(--main-dark);
  }

  .hamburger-menu-hm12-2 {
    padding: 1rem;
  }

  .mobile_hamburger {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    cursor: pointer;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    display: flex;
  }

  .hb-top, .hb-middle, .hb-bottom {
    background-color: var(--main-dark);
    border-radius: 99px;
    flex: 0 auto;
    width: 100%;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .mobile-dropdown_wrap {
    height: 100vh;
    overflow: hidden;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .hero_content {
    min-width: auto;
  }

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

  .heading-h1-primary, .heading-h1-primary.heading-colour-dark {
    font-size: 2.5rem;
  }

  .padding-global.padding-section-large.table {
    padding-right: 0;
  }

  .quote_content.background-colour-dark, .quote_content.background-colour-light {
    padding: 1.4rem;
  }

  .intro_content {
    border-bottom: 1px solid var(--border-main);
    border-right-style: none;
    justify-content: center;
    align-items: center;
    padding: 1.4rem;
  }

  .logo-items_grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .logos_wrapper {
    flex-flow: column;
  }

  .feature-block-l.background-colour-dark {
    height: 44rem;
    padding: 1.4rem;
  }

  .feature-block-l.background-colour-light {
    height: 42rem;
    padding: 1.4rem;
  }

  .feature-image-large.position-absolute {
    max-width: 72%;
  }

  .text-size-xl.text-colour-dark, .text-size-xl.text-colour-light {
    font-size: 1.5rem;
  }

  .feature-block-s.background-image {
    height: 36rem;
  }

  .image-fill-wrap._01 {
    background-size: cover;
    height: 36rem;
  }

  .heading-h3-primary.heading-colour-light {
    margin-bottom: 0;
  }

  .button-wrapper.margin-top-m {
    flex-flow: column;
    width: 100%;
  }

  .button-wrapper.flex-verticle {
    padding: 2rem 1rem;
  }

  .heading-h2-primary.heading-colour-dark, .heading-h2-primary.heading-colour-light {
    font-size: 1.6rem;
  }

  .text-size-m {
    overflow-wrap: normal;
  }

  .text-size-m.tools {
    text-align: left;
    align-self: center;
  }

  .faq_item {
    padding: 1.4rem;
  }

  .pricing-block {
    width: auto;
  }

  .price_wrapper {
    padding: 1rem;
  }

  .feature-list_wrapper {
    padding: 2rem 1rem;
  }

  .mini-quote_slider {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    display: flex;
  }

  .heading-h1-small {
    font-size: 2.5rem;
  }

  .global-home_link.w--current {
    flex: 0 auto;
  }

  .cash-chart_wrap {
    width: 100%;
    padding-bottom: 64%;
  }

  .cash-chart_wrap._49 {
    width: 100%;
  }

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

  .image-71 {
    height: 220px;
  }

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

  .padding-vertical.article-padding {
    margin-left: 0;
  }

  .breadcrumb {
    overflow: hidden;
  }

  .text-size-tiny {
    font-size: 12px;
    line-height: 19px;
  }

  .article-hero-image {
    height: 220px;
  }

  .background-video {
    border-top-style: none;
    border-left-style: none;
    border-radius: 0;
  }

  .div-block-24 {
    display: none;
  }

  .footer_info {
    text-align: center;
    padding-top: 27px;
    font-size: 13px;
  }

  .footer-link {
    margin-bottom: 0;
  }

  .footer_grid {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-heading {
    margin-bottom: 10px;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer {
    text-align: left;
    padding: 0;
  }

  .div-block-24-copy {
    margin-bottom: 41px;
    display: flex;
  }

  .footer-left {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: row;
  }

  .dd {
    display: block;
  }

  .dd-open {
    display: flex;
  }

  .text-block-11 {
    font-size: 11px;
  }

  .mobile-dropdown_wrap {
    height: 0;
    display: flex;
  }

  .lang-switch-menu.box-shadow {
    position: static;
  }

  .lang-switch-menu.box-shadow.mobile {
    box-shadow: none;
  }

  .div-block-93 {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .text-block-107 {
    font-size: 11px;
  }

  .steps {
    width: auto;
  }

  .content {
    width: 100%;
  }

  .div-block-262 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .line {
    height: 224px;
  }

  .div-block-266 {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .text-block-120.light {
    width: auto;
  }

  .div-block-268 {
    height: 280px;
  }

  .div-block-272 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-273 {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .text-block-126.light {
    width: auto;
  }

  .div-block-275 {
    height: 280px;
  }

  .div-block-277 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-block-128-copy {
    font-size: 52px;
    line-height: 64px;
  }

  .div-block-278 {
    justify-content: space-between;
    align-items: center;
  }

  .div-block-279 {
    justify-content: flex-end;
    align-self: auto;
    align-items: center;
    max-width: none;
    padding-left: 0;
    display: block;
  }

  .div-block-280 {
    width: 100%;
  }

  .section-overview {
    min-height: auto;
  }

  .text-block-129 {
    font-size: 32px;
    line-height: 52px;
  }

  .text-block-129.big {
    font-size: 2rem;
    line-height: 3.2rem;
  }

  .text-intro {
    font-size: 28px;
    line-height: 40px;
  }

  .data-text {
    font-size: 3rem;
    line-height: 3rem;
  }

  .text-block-130, .text-block-130.right {
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .div-block-281 {
    margin-bottom: 0;
  }

  .div-block-282 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .div-block-283 {
    width: 100%;
  }

  .lines-2 {
    min-height: 50svh;
  }

  .report-head-2 {
    font-size: 32px;
    line-height: 44px;
  }

  .report-head-3 {
    font-size: 52px;
    line-height: 64px;
  }

  .div-block-280-copy {
    width: 100%;
  }

  .text-block-131 {
    margin-bottom: 0;
    font-size: 2.8rem;
    line-height: 4rem;
  }

  .stats-type.left, .stats-type.btm {
    flex-flow: column;
  }

  .stats-block.right-left {
    width: 100%;
  }

  .stats-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .sticky-menu-head {
    display: none;
  }

  .trend-text, .trend-text.right {
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .section-menu {
    min-height: auto;
  }

  .div-block-288 {
    flex-flow: column;
  }

  .menu-block.left-right {
    width: 100%;
    max-width: 280px;
    height: 80px;
  }

  .gloss-menu {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .tool-item-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-294 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .tools-list-wrapper {
    flex: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .rank-content-wrap.comp {
    overflow: scroll;
  }

  .comparison-name, .comp-pro, .comp-con, .comp-price {
    min-width: 250px;
  }

  .page-content-wrap {
    flex-flow: column-reverse;
  }

  .padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button-2.marg {
    font-size: 5.2vw;
    line-height: 10vw;
  }

  .heading-39 {
    font-size: 11vw;
  }

  .mt-2 {
    font-size: 5.2vw;
    line-height: 8vw;
  }

  .div-block-301 {
    padding-bottom: 2rem;
  }

  .heading-40, .heading-40.big {
    font-size: 8vw;
    line-height: 10vw;
  }

  .text-block-147, .text-block-147.big {
    font-size: 5.2vw;
    line-height: 7vw;
  }

  .text-block-148 {
    margin-top: 1rem;
    font-size: 4.4vw;
    line-height: 6vw;
  }

  .heading-41 {
    font-size: 7.4vw;
    line-height: 10vw;
  }

  .heading-41.big {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  .heading-42, .heading-43 {
    font-size: 7.4vw;
    line-height: 10vw;
  }

  .section-quote {
    background-size: 28vh;
  }

  .text-block-149 {
    font-size: 8vw;
    line-height: 10vw;
  }

  .div-block-308 {
    padding: 1rem;
  }

  .text-size-regular.text-color-primary {
    font-size: .8rem;
    line-height: 1.2em;
  }

  .card-right {
    width: 100%;
    height: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .card-left {
    width: 100%;
    height: 50%;
  }

  .stacking-card.is--fifth {
    flex-flow: column;
    height: 600px;
  }

  .stacking-card.is--second, .stacking-card.is--first {
    flex-flow: column;
    height: 520px;
  }

  .stacking-card.is--sixth {
    flex-flow: column;
    height: 420px;
  }

  .stacking-card.is--fourth {
    flex-flow: column;
    height: 520px;
  }

  .stacking-card.is--third {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 520px;
  }

  .image-85, .image-86 {
    width: 36vw;
  }

  .image-87 {
    width: 40vw;
  }

  .img-block {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .image-88 {
    width: 30vw;
  }

  .image-89 {
    width: 36vw;
    bottom: 20vw;
    left: 20vw;
  }

  .image-90 {
    width: 30vw;
  }

  .image-91 {
    width: 30vw;
    left: 20vw;
  }

  .image-92 {
    width: 36vw;
  }
}

#w-node-a29a7892-e0d3-b499-8654-592716d5445e-52efe189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_4fa95679-b73c-54d8-3f76-c318bdf5b8eb-52efe189 {
  grid-area: span 2 / span 3 / span 2 / span 3;
  place-self: stretch stretch;
}

#w-node-d57e6839-c3f4-38b2-fa4e-6e233ceb2605-52efe189, #w-node-c58477f4-863e-124e-273f-4dcb5eb5f9ec-52efe189, #w-node-d2b9936b-5fdd-8b29-6d5f-9e0069470921-52efe189, #w-node-e284facc-c520-75e9-58dd-a4e7f23eaed1-52efe189, #w-node-da4e26d4-6038-0ff9-dee7-65e93d33e8f3-52efe189, #w-node-_053274ec-9384-c543-ff30-a3c3c9c48944-52efe189 {
  place-self: center;
}

#w-node-ee88724f-abed-3ed4-c761-183ccb657aa0-cb657a8c {
  justify-self: center;
}

#w-node-f78736f1-599c-91cc-92ce-39fa31a6795e-31a6795a {
  place-self: stretch center;
}

#w-node-bff2a631-84dd-af22-23da-5267b799f0a8-cbbbc993 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-bff2a631-84dd-af22-23da-5267b799f0b3-cbbbc993 {
  grid-area: span 2 / span 3 / span 2 / span 3;
  place-self: stretch stretch;
}

#w-node-bff2a631-84dd-af22-23da-5267b799f0b4-cbbbc993, #w-node-bff2a631-84dd-af22-23da-5267b799f0b6-cbbbc993, #w-node-bff2a631-84dd-af22-23da-5267b799f0b8-cbbbc993, #w-node-bff2a631-84dd-af22-23da-5267b799f0ba-cbbbc993, #w-node-bff2a631-84dd-af22-23da-5267b799f0bc-cbbbc993, #w-node-bff2a631-84dd-af22-23da-5267b799f0be-cbbbc993 {
  place-self: center;
}

#w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d62668-e6f9ac12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d6266d-e6f9ac12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-b34733c8-3d37-7de0-f995-419db599e9ce-e6f9ac12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d62678-e6f9ac12 {
  grid-area: span 2 / span 3 / span 2 / span 3;
  place-self: stretch stretch;
}

#w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d62679-e6f9ac12, #w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d6267b-e6f9ac12, #w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d6267d-e6f9ac12, #w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d6267f-e6f9ac12, #w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d62681-e6f9ac12, #w-node-_0f08ec4d-847a-1a9f-dcb6-bd9084d62683-e6f9ac12 {
  place-self: center;
}

#w-node-fb606436-3f1f-17f4-dd43-0b6c1f3bb6bb-9ea288ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_359e3f19-8451-9dc8-246f-61a8e5680e06-3783744f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-b548843d-3b7d-8156-79de-a675ea666bf1-52efe189 {
    grid-area: span 5 / span 1 / span 5 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ee88724f-abed-3ed4-c761-183ccb657aa0-cb657a8c {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-RegularItalic.otf') format('opentype'), url('/fonts/Aeonik-AirItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Air';
  src: url('/fonts/Aeonik-Air.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/fonts/Aeonik-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}