@font-face {
  font-family: Inter Variable;
  src: url('../fonts/InterVariable-Italic.ttf') format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Inter Variable;
  src: url('../fonts/InterVariable.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --text-1: #2b2c30;
  --line-1: #e8e9ed;
  --blue: #1156eb;
  --base: #fcfcfd;
  --text-2: #5b5c63;
  --text-3: #8b8c93;
  --orange: #eb4b11;
  --green: #15bd3c;
}

body {
  color: var(--text-1);
  background-color: #fcfcfd;
  font-family: Inter Variable, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

h1 {
  color: var(--text-1);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 1.4;
}

h2 {
  color: var(--text-1);
  margin-top: 38px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
}

h3 {
  color: var(--text-1);
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

a {
  color: #1855c7;
  text-decoration: underline;
}

strong {
  color: var(--text-1);
  font-weight: 600;
}

.nav-button-more {
  color: #5b5c63;
  text-align: center;
  background-color: #2b2c3012;
  border: 1px solid #2b2c3014;
  border-radius: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 8px 12px;
  transition: background-color .2s;
}

.nav-button-more:hover {
  background-color: #2b2c3029;
}

.button-nav-mobile {
  display: none;
}

.logos-cells {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-separator {
  background-color: #2b2c3014;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.header-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.header-actions {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: none;
}

.header-actions.mobile {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header {
  z-index: 100;
  border-bottom: 1px solid var(--line-1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #fafafacc;
  height: 58px;
  padding-left: 24px;
  padding-right: 24px;
  position: sticky;
  top: 0;
}

.brand {
  color: #2b2c30;
}

.nav-dropdown {
  padding: 1px;
}

.nav-dropdown.w--open {
  background-color: #fff;
  border-radius: 14px;
  min-width: 260px;
  margin-top: 12px;
  padding: 18px;
  box-shadow: 0 6px 16px -4px #00000029, inset 0 0 0 1px #00000014;
}

.header-mobile {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.dropdown-none {
  margin-left: auto;
  margin-right: 0;
}

.header-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #2b2c30;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 12px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.header-link:hover {
  background-color: #2b2c3014;
}

.header-link.with-icon {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 4px;
  display: flex;
}

.header-link.with-icon.customers {
  z-index: 100;
  padding-bottom: 46px;
}

.header-link.hide {
  display: none;
}

.svg-nav {
  color: #8b8c93;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  display: flex;
}

.nav-logo-wrapper {
  z-index: 100;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 31px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.header-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--blue);
  color: var(--base);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s, box-shadow .2s;
  display: flex;
}

.header-button:hover {
  transform: scale(1.03);
}

.svg-book-a-demo {
  width: 16px;
}

.hero {
  background-color: #fff;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: auto;
  min-height: 680px;
  padding-top: 63px;
  position: relative;
  overflow: hidden;
}

.div-block-2 {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.h1-home {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
}

.section {
  border-top: 1px solid var(--line-1);
  padding-left: 24px;
  padding-right: 24px;
}

.section.hide {
  display: none;
}

.section.white {
  background-color: #fff;
  border-top-style: none;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 59px;
  padding-bottom: 59px;
  display: flex;
}

.container {
  border: 1px #000;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container.customers {
  border-left-style: none;
  border-right-style: none;
  flex-flow: column;
  display: flex;
}

.div-block-3 {
  border: 1px #000;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  padding-top: 31px;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  display: flex;
}

.customer-logos {
  grid-column-gap: 69px;
  grid-row-gap: 40px;
  border-top: 1px none var(--line-1);
  background-color: #fcfcfd;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100vw;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  overflow: hidden;
}

.customer-logo-wrapper {
  border-right: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 120px;
  padding: 31px 33px;
  display: flex;
}

.customer-logo-wrapper.last {
  border-bottom-style: none;
  border-right-style: none;
}

.block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-bottom: 1px solid var(--line-1);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 120px 80px;
  display: flex;
}

.text-block {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
}

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

.product-box {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-style: none solid solid none;
  border-width: 1px;
  border-color: var(--line-1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 62px 34px;
  display: flex;
}

.product-box.last {
  border-right-style: none;
}

.text-product {
  color: var(--text-2);
}

.text-product.main {
  color: var(--text-1);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

.italic-text {
  color: var(--text-2);
}

.background-video {
  z-index: 0;
  background-image: radial-gradient(circle closest-side at 50% 100%, #0000, #fcfcfd);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.icon-product {
  width: 44px;
  margin-bottom: 16px;
}

.h3-product-name {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--blue);
  color: var(--base);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 34px;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: inset 0 0 #fff3, 0 2px 6px #0003;
}

.button:hover {
  background-color: #3f3f3f;
}

.button.secondary {
  background-color: var(--base);
  box-shadow: inset 0ch 0 0 1px var(--line-1);
  color: var(--text-2);
}

.button.secondary:hover {
  background-color: var(--line-1);
}

.button.contact {
  flex: 1;
  width: 100%;
  margin-top: 0;
}

.button.contact:hover {
  background-color: var(--blue);
}

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

.h2-dec {
  color: var(--text-3);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.black {
  color: var(--text-1);
}

.block-logo {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px none var(--line-1);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: grid;
}

.block-logo.last {
  border-right-style: none;
}

.block-for-logo {
  border-style: none solid solid none;
  border-width: 1px;
  border-color: var(--line-1);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  display: flex;
}

.product-bank {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--line-1);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  display: flex;
}

.product-bank.last {
  border-right-style: none;
}

.block-re-eng {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-style: none solid none none;
  border-width: 1px;
  border-color: var(--line-1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 62px;
  display: flex;
}

.block-re-eng.last {
  border-right-style: none;
}

.h2-regen {
  color: var(--text-1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.text-block-3 {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.5;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.bock-compare {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px none var(--line-1);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 42px 49px;
  display: flex;
}

.bock-compare.last {
  border-right-style: none;
}

.div-block-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bullet {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--text-1);
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.compare-logo {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 34px;
  margin-bottom: 14px;
  display: flex;
}

.block-contact {
  border-bottom: 1px none var(--line-1);
  text-align: center;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 38px;
  display: flex;
}

.block-contact.vertical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.div-block-6 {
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 9px;
  padding: 57px;
}

.form-block {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 13px;
  flex: 1;
  max-width: 540px;
  margin-bottom: 0;
  padding: 41px;
  box-shadow: 0 12px 8px -8px #00000014;
}

.contact-info-wrapper {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 320px;
  margin: 30px 60px 30px 30px;
  display: flex;
}

.heading-2 {
  font-size: 18px;
}

.title-contact {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.text-contact {
  color: var(--text-2);
  line-height: 1.6;
}

.form-field-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
  display: flex;
}

.form-contact-label {
  text-align: left;
  width: 110px;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 400;
  display: block;
}

.form-field {
  border: 1px solid var(--line-1);
  color: var(--text-1);
  border-radius: 6px;
  flex: 1;
  margin-bottom: 0;
  box-shadow: 0 4px 6px -3px #00000014;
}

.form-field::placeholder {
  color: var(--text-3);
}

.form-field.text {
  height: 160px;
}

.form-field.country-code {
  flex: none;
  width: 58px;
}

.submit-button {
  flex: 1;
}

.text-hero {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.5;
}

.footer {
  border: 1px solid var(--line-1);
  color: var(--text-1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 34px 30px;
  display: flex;
}

.image {
  width: 80px;
}

.footer-link {
  grid-column-gap: 24px;
  grid-row-gap: 18px;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto auto auto minmax(auto, 1fr);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 28px;
  display: flex;
}

.link-footer {
  color: var(--text-3);
  -webkit-text-stroke-color: var(--text-2);
  text-decoration: none;
  transition: color .4s;
}

.link-footer:hover {
  color: var(--text-1);
}

.link-footer.w--current {
  color: var(--text-1);
  font-weight: 600;
}

.link-footer.title {
  color: var(--text-2);
  font-weight: 500;
}

.text-block-5 {
  color: var(--text-3);
}

.h2 {
  margin-top: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}

.express-hero {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.section-super-form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
}

.super-form-wrapper {
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 980px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 20px #0000000a;
}

.express-hero-container {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-right: 40px;
  display: flex;
}

.counter {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--line-1);
  color: var(--text-2);
  background-color: #f8f8fa;
  border-radius: 9px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 3px 12px 3px 3px;
  display: flex;
  box-shadow: 0 3px 4px -2px #00000014;
}

.conter-number {
  background-color: var(--text-1);
  color: var(--base);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: Departuremono, sans-serif;
}

.express-info-wrapper {
  width: 100%;
  margin-top: 38px;
  margin-right: 49px;
}

.text-span {
  color: var(--text-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  display: block;
}

.express-h1 {
  color: var(--text-1);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}

.div-block-9 {
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 8px;
  flex: none;
  width: 310px;
  padding: 34px;
  transform: rotate(3deg);
  box-shadow: 0 9px 20px -6px #00000014;
}

.express-how-to-bullet-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-bottom: 1px solid var(--line-1);
  width: 100%;
  color: var(--text-2);
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.express-how-to {
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 600;
}

.express-name-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.icon-product-copy {
  width: 32px;
}

.div-block-12 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.replace-this {
  width: 100%;
  height: 1200px;
}

.svg-number {
  flex: none;
  width: 14px;
  margin-top: 2px;
}

.svg-manual {
  width: 12px;
}

.express-logos-wrapper {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  color: var(--text-3);
  justify-content: flex-start;
  align-items: center;
  margin-top: 34px;
  font-weight: 500;
  display: flex;
}

.legal {
  width: 420px;
  margin: 121px auto;
}

.text-block-7 {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 600;
}

.section-about {
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding-left: 24px;
  padding-right: 24px;
}

.section-about.decoration {
  border: 1px #000;
}

.container-about {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--line-1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 33px;
  display: flex;
}

.container-about.none {
  border-bottom-style: none;
}

.container-about.super {
  border-bottom-style: none;
  padding: 13px 0;
}

.paragraph {
  color: var(--text-2);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.about-h1 {
  font-weight: 600;
  line-height: 1.4;
}

.about-h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.about-wrapper-numbers {
  grid-column-gap: 39px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 80%;
  display: grid;
}

.about-wrapper-number {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-number, .about-number-copy {
  background-color: var(--text-1);
  color: var(--base);
  border-radius: 6px;
  padding: 6px 25px;
  font-family: Departuremono, sans-serif;
  font-size: 24px;
}

.about-us {
  color: var(--text-2);
  margin-bottom: 8px;
  font-family: Departuremono, sans-serif;
  font-size: 14px;
}

.block-quote {
  background-color: var(--text-1);
  color: var(--base);
  border-left-style: none;
  border-radius: 11px;
  margin-top: 27px;
  margin-bottom: 27px;
  padding: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

.text-span-2 {
  color: #9a9aa3;
  font-size: 14px;
  line-height: 1.4;
}

.button-2 {
  background-color: var(--line-1);
  color: var(--text-2);
  border-radius: 20px;
  margin-top: 23px;
}

.hwe-h1 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
}

.text-block-8 {
  background-color: var(--text-1);
  width: 38px;
  height: 38px;
  color: var(--base);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  font-family: Departuremono, sans-serif;
  font-size: 18px;
  display: flex;
}

.text-block-8.sp {
  border-radius: 40px;
  width: auto;
  padding-left: 13px;
  padding-right: 13px;
}

.hwe-h2 {
  color: var(--text-1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.span-number {
  background-color: var(--text-3);
  color: var(--base);
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  font-family: Departuremono, sans-serif;
  font-size: 14px;
}

.text-how {
  color: var(--text-2);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.number-small {
  background-color: var(--text-2);
  width: 18px;
  height: 18px;
  color: var(--base);
  text-align: center;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-family: Departuremono, sans-serif;
  font-size: 12px;
  display: flex;
}

.number-small.sp {
  border-radius: 40px;
  width: auto;
  padding-left: 13px;
  padding-right: 13px;
}

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

.image-check {
  flex: none;
}

.section-compare {
  border-top: 1px none var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding-left: 24px;
  padding-right: 24px;
}

.section-compare.decoration {
  border: 1px #000;
}

.container-compare {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--line-1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 33px 33px;
  display: flex;
}

.container-compare.none {
  border-bottom-style: none;
}

.container-compare.super {
  border-bottom-style: none;
  padding: 13px 0;
}

.container-compare-nav-wrapper {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--line-1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #fcfcfdcc;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 45px 33px;
  display: flex;
}

.container-compare-nav-wrapper.none {
  border-bottom-style: none;
}

.container-compare-nav-wrapper.super {
  border-bottom-style: none;
  padding: 13px 0;
}

.link-compare {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 19px;
  display: flex;
}

.link-compare:hover {
  background-color: var(--line-1);
}

.link-compare.active {
  background-color: #fff;
  border: 1px solid #cdcedb;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 16px #0000001f;
}

.div-block-14 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.text-compare {
  max-width: 570px;
  color: var(--text-2);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.container-compare-table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-style: none none none solid;
  border-width: 1px;
  border-color: var(--line-1);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: stretch stretch;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 30px;
  display: grid;
}

.container-compare-table.none {
  border-bottom-style: none;
}

.container-compare-table.super {
  border-bottom-style: none;
  padding: 13px 0;
}

.compare-case {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-right: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.compare-case.section {
  border-top-style: none;
  justify-content: flex-start;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 24px;
  font-size: 22px;
  font-weight: 500;
}

.compare-case.grey {
  color: var(--text-3);
}

.compare-case.center {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--text-3);
  background-color: #fcfcfdcc;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 500;
  position: sticky;
  top: 0;
}

.locales-wrapper {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  border: 1px solid var(--line-1);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 5px 12px;
  display: flex;
}

.locales-list {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  display: flex;
}

.text-span-3 {
  background-color: var(--text-1);
  color: var(--base);
  border-radius: 6px;
  padding-left: 6px;
  padding-right: 6px;
  display: inline-block;
}

.customer-logos-about {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--line-1);
  border-left: 1px solid var(--line-1);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 43px;
  margin-bottom: 43px;
  display: block;
}

.logos-wrapper {
  border: 1px #000;
  display: flex;
}

.collection-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.collection-list.partner {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  justify-content: space-around;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tabs-menu {
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.client-tab {
  background-color: #ddd0;
  border-radius: 20px;
  padding: 8px 24px;
}

.client-tab:hover {
  background-color: #00000014;
}

.client-tab.w--current {
  color: var(--base);
  background-color: #222;
}

.tabs {
  align-self: center;
  width: 100vw;
}

.image-2 {
  width: 100%;
}

.image-3 {
  filter: grayscale();
}

.text-block-9 {
  display: flex;
}

.image-4 {
  width: 100%;
}

.omage {
  width: 100%;
  max-height: 100%;
}

.lottie-animation {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-10 {
  color: var(--text-3);
  text-align: center;
  margin-top: 44px;
  position: absolute;
  inset: 0% 0% auto;
}

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

.collection-list-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-pricing {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  max-width: 980px;
  color: var(--text-2);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 92px 20px;
  font-weight: 400;
  display: flex;
}

.card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 44px;
  display: flex;
  box-shadow: 0 8px 16px -8px #00000014;
}

.container-pricing-cards {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  display: grid;
}

.pricing-h1 {
  color: var(--text-1);
  text-align: center;
  font-weight: 600;
  line-height: 120%;
}

.div-block-16 {
  margin-top: 19px;
  margin-bottom: 19px;
}

.price {
  font-size: 22px;
  font-weight: 500;
}

.prcing-price {
  font-size: 12px;
  font-weight: 400;
}

.heading-4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.pricing-description {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.pricing-suite {
  background-color: #00000005;
  border: 1px solid #0000000a;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.pricing-subtitle {
  text-align: center;
  max-width: 390px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
}

.pricing-suite-title {
  margin-top: 20px;
  font-weight: 600;
}

.pricing-suite-text {
  color: var(--text-2);
  margin-top: 2px;
  padding-left: 15px;
}

.pricing-title {
  text-align: center;
  letter-spacing: 4px;
  font-size: 12px;
}

.logo-image {
  filter: grayscale();
}

.super {
  font-size: 16px;
  font-weight: 500;
}

.partners {
  width: 100%;
  max-width: 120px;
  max-height: 30px;
}

.success-message {
  background-color: #fff;
}

.text-span-4 {
  font-size: 44px;
}

.page-artilces {
  background-color: #e8e9ed3b;
  border-top: 1px solid #0000000d;
  padding: 60px 38px;
}

.container-articles {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.link-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border-left: 1px solid var(--line-1);
  max-width: 460px;
  color: var(--text-1);
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 24px;
  text-decoration: none;
  display: flex;
}

.text-block-11 {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.collection-item-2 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-block-12 {
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  display: flex;
}

.text-block-13 {
  color: var(--text-3);
  text-align: center;
}

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

.page-article {
  padding-bottom: 60px;
  padding-left: 80px;
  padding-right: 80px;
}

.container-article {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 580px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.article-title-type {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #5a5c62;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.article-title-type:hover {
  color: var(--text-1);
}

.svg-article {
  width: 16px;
}

.rich-text-block {
  color: var(--text-1);
  font-size: 16px;
  line-height: 160%;
}

.heading-5 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%;
}

.text-block-14 {
  margin-top: 12px;
  margin-bottom: 24px;
  padding-top: 0;
}

.text-block-15 {
  color: var(--text-2);
  text-align: left;
  line-height: 140%;
}

.div-block-17 {
  background-color: var(--text-1);
  width: 100%;
  height: 80px;
}

.link-block-2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--text-1);
  color: var(--base);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 16px 12px;
  text-decoration: none;
  display: flex;
}

.link-block-2:lang(fr) {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.empty-state-2 {
  background-color: #fff0;
}

.text-block-16 {
  text-align: center;
}

.div-block-18 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  background-color: #00000014;
  border: 1px solid #00000014;
  border-radius: 14px;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  display: none;
}

.div-block-19 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.image-5 {
  border-radius: 7px;
  flex: none;
  width: 40px;
  height: 32px;
}

.text-block-17 {
  font-weight: 600;
}

.section-libraty {
  padding-left: 24px;
  padding-right: 24px;
}

.library-container {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}

.library-nav {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--line-1);
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr min-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.div-block-20 {
  color: var(--text-2);
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.librarty-nav-title {
  color: var(--text-1);
  flex: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.library-nav-link {
  color: var(--text-2);
  border-radius: 6px;
  flex: none;
  padding: 6px 12px;
  text-decoration: none;
}

.library-nav-link:hover {
  background-color: #e9eaf1;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.search {
  border: 1px solid var(--line-1);
  border-radius: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 36px;
  margin-bottom: 0;
  margin-left: auto;
  display: flex;
  overflow: hidden;
}

.search-input {
  border: 1px #000;
  border-radius: 0;
  height: 36px;
  margin-bottom: 0;
  padding: 0 0 0 12px;
}

.search-button {
  background-color: var(--text-1);
  border: 1px #000;
  border-radius: 5px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2px;
  padding: 6px 12px;
  transition: all .2s;
}

.search-button:hover {
  background-color: #375cdf;
}

.library-content {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.rich-text-block-2 {
  color: var(--text-2);
  line-height: 1.6;
}

.heading-6 {
  color: var(--text-1);
}

.library-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border-bottom: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 13px;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: stretch;
  width: 380px;
  margin-left: 60px;
  padding: 24px;
  display: flex;
  box-shadow: 0 0 12px #00000014;
}

.link-list {
  border-bottom: 1px solid var(--line-1);
  color: var(--text-2);
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: block;
}

.link-list:hover {
  color: var(--text-1);
}

.link-list.code {
  color: var(--text-3);
  border-bottom-style: none;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 12px;
}

.link-list.none {
  color: var(--text-1);
  border-bottom-style: none;
  flex: 1;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
}

.heading-7 {
  text-align: left;
  margin-top: 28px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.heading-7.main {
  margin-top: 0;
  margin-bottom: 24px;
}

.div-block-21 {
  grid-column-gap: 34px;
  grid-row-gap: 14px;
  border: 1px solid var(--line-1);
  background-color: #2b2c300f;
  border-radius: 8px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  display: flex;
}

.info-label {
  margin-bottom: 4px;
  font-weight: 600;
}

.info-link {
  color: var(--text-2);
}

.heading-8 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.div-block-22 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-bottom: 18px;
  display: flex;
}

.div-block-23 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-9 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

._2 {
  color: var(--text-2);
  margin-top: 0;
  font-size: 16px;
}

.large {
  flex: 1;
}

.collection-item-3 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--text-1);
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.link {
  color: var(--text-1);
}

.collection-list-wrapper-2 {
  margin-top: 60px;
}

.collection-item-4 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border-bottom: 1px solid #8b8c933d;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.heading-10 {
  margin-top: 84px;
}

.text-block-18 {
  color: var(--text-2);
}

.text-block-19 {
  margin-top: 60px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

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

.button-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--base);
  background-color: #1857cc;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-3.black {
  border: 1px solid var(--text-1);
  background-color: var(--base);
  color: var(--text-1);
}

.div-block-25 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

.div-block-26 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: center;
  align-items: center;
  margin-bottom: 17px;
  display: flex;
}

.text-block-20 {
  margin-top: 60px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.image-6 {
  filter: invert();
}

.image-7 {
  object-fit: contain;
  object-position: 0% 50%;
  width: 160px;
  height: 80px;
}

.library-article {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-flow: column;
  display: flex;
}

.link-2 {
  border: 1px solid var(--line-1);
  color: var(--text-3);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  transition: all .2s;
}

.link-2:hover {
  background-color: var(--line-1);
}

.link-block-3 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  color: var(--text-1);
  border-bottom: 1px solid #00000029;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  display: flex;
}

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

.image-8 {
  object-fit: contain;
  object-position: 100% 50%;
  width: 100px;
  height: 68px;
}

.collection-list-wrapper-3 {
  margin: 60px auto;
}

.collection-list-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.library-landing-container {
  max-width: 540px;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
}

.heading-11 {
  margin-bottom: 13px;
}

.heading-12 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.paragraph-2 {
  color: var(--text-2);
  line-height: 1.5;
}

.div-block-29 {
  background-color: var(--line-1);
  width: 1px;
  height: 24px;
  margin-left: 13px;
}

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

.empty-state-3 {
  background-color: #fff0;
  margin-bottom: 25px;
  padding: 0;
}

.lib-empty {
  color: var(--text-3);
  background-color: #ddd0;
  margin-bottom: 28px;
  padding: 0;
  font-style: italic;
}

.collection-list-wrapper-4 {
  margin-top: 60px;
}

.div-block-31 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  color: var(--text-2);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  display: flex;
}

.empty-state-4 {
  color: #5b5c6300;
  padding: 0;
}

.div-block-32 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.image-9 {
  width: 50px;
}

.collection-item-5 {
  color: var(--text-1);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.link-3 {
  color: var(--text-1);
  -webkit-text-stroke-color: var(--text-1);
  text-decoration: none;
}

.div-block-33 {
  background-color: var(--line-1);
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.way {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--text-3);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.link-way {
  color: var(--text-3);
  text-decoration: none;
}

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

.text-block-21 {
  color: var(--text-3);
}

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

.ms-input-outer {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex: 1;
  display: flex;
}

.ms-input {
  color: #121331;
  background-color: #fff;
  border: 1px solid #12133140;
  border-radius: 5px;
  min-height: 40px;
  margin-bottom: 20px;
  padding: 8px 12px;
  transition: box-shadow .2s, border-color .2s;
  position: relative;
  box-shadow: 0 5px 10px -5px #0000001a;
}

.ms-input:hover {
  z-index: 2;
  box-shadow: none;
  border-color: #2962ff;
}

.ms-input::placeholder {
  color: #909090;
}

.ms-input.is-left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 60px;
  margin-right: -1px;
}

.ms-input.is-left.noe {
  width: 60px;
}

.ms-input.is-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex: 1;
}

.dot {
  background-color: #1156eb;
  border-radius: 30px;
  width: 6px;
  height: 6px;
}

.dot._2 {
  width: 8px;
  height: 8px;
}

.div-block-35 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.paragraph-3 {
  max-width: 680px;
  color: var(--text-2);
  text-align: center;
  line-height: 1.6;
}

.heading-13 {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.sub {
  background-color: var(--blue);
  border-radius: 30px;
  width: 6px;
  height: 6px;
}

.sub._2 {
  width: 8px;
  height: 8px;
}

.div-block-36 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 13px;
  display: flex;
}

.div-block-37 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--line-1);
  color: var(--text-1);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
  padding: 3px 3px 3px 18px;
  display: flex;
  box-shadow: 0 12px 20px #0000000d;
}

.link-block-4 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--blue);
  cursor: pointer;
  background-color: #1156ec1a;
  border: 1px solid #1156ec1a;
  border-radius: 20px;
  padding: 6px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link-block-4:hover {
  color: #fff;
  background-color: #1156ec;
}

.svg {
  width: 18px;
}

.tabs-menu-2 {
  z-index: 10;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffff6b;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  display: flex;
  position: sticky;
  top: 57px;
}

.sort-tab {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--text-2);
  background-color: #fff0;
  border-radius: 20px;
  flex: none;
  padding: 6px 16px;
  display: flex;
}

.sort-tab:hover {
  color: var(--text-1);
}

.sort-tab.w--current {
  background-color: var(--text-1);
  color: var(--base);
  font-weight: 500;
}

.collection-list-5 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tabs-content {
  padding: 0;
}

.tab-pane-tab-1 {
  margin: 0;
  padding: 30px 0;
}

.div-block-38 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--text-3);
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

.div-block-38._2 {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.div-block-38._3 {
  color: var(--text-1);
}

.div-block-39 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-end;
  width: 240px;
  display: flex;
}

.div-block-39:lang(fr) {
  width: 280px;
}

.div-block-39._2 {
  border: 1px solid var(--line-1);
  background-color: #e8e9ed70;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 60px;
  padding: 16px;
  font-size: 14px;
}

.svg-2 {
  width: 16px;
  color: var(--blue);
  margin-right: 3px;
}

.svg-2-copy {
  width: 16px;
  margin-right: 3px;
}

.text-block-22 {
  border: 1px solid var(--line-1);
  color: var(--text-2);
  border-radius: 20px;
  margin-top: 13px;
  padding: 4px 14px;
}

.text-block-22:hover {
  color: var(--text-1);
}

.line {
  background-color: var(--line-1);
  width: 100%;
  height: 1px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-top: 0;
  padding-bottom: 0;
}

.tabs-2 {
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 16px;
  width: 100%;
  padding-bottom: 30px;
  box-shadow: 0 14px 30px #0000000a;
}

.modal {
  z-index: 500;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #2b2c3026;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-41 {
  border: 1px solid var(--line-1);
  background-color: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  padding: 38px;
  position: relative;
  box-shadow: -2px 6px 20px #0000000d;
}

.submit-button-2 {
  background-color: var(--text-1);
  border-radius: 6px;
  width: 100%;
  margin-top: 19px;
}

.field-label {
  color: var(--text-2);
  text-transform: none;
  font-weight: 500;
}

.text-field {
  border: 1px solid var(--line-1);
  color: var(--text-1);
  border-radius: 7px;
}

.text-block-23 {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 500;
}

.success-message-2 {
  border: 1px solid var(--line-1);
  background-color: #0000000f;
  border-radius: 8px;
}

.text-span-5 {
  color: var(--text-1);
  font-size: 20px;
  font-weight: 600;
}

.text-block-24 {
  color: var(--text-2);
}

.div-block-42 {
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 12px;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

.line-2 {
  width: 0;
}

.svg-3 {
  width: 36px;
}

.svg-4 {
  width: 18px;
}

.div-block-43 {
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
}

.button-4 {
  background-color: var(--text-1);
  color: var(--base);
  border-radius: 8px;
}

.button-4:hover {
  background-color: var(--text-2);
}

.article-link {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.div-block-44 {
  width: 100%;
  height: 60px;
}

.div-block-45 {
  width: 100%;
  height: 80px;
}

.div-block-46 {
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  display: flex;
}

.div-block-47 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-48 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 380px;
  display: flex;
}

.text-block-25 {
  font-weight: 600;
}

.footer-link-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
}

.div-block-49 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  border-top: 1px solid var(--line-1);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
}

.div-block-50 {
  grid-column-gap: 12px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.newsletter {
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding-left: 28px;
  padding-right: 28px;
  display: flex;
}

.div-block-52 {
  position: absolute;
  inset: 0% 0% auto;
}

.text-block-26 {
  font-size: 19px;
}

.disclaimer {
  color: var(--text-3);
  margin-bottom: 0;
}

.div-block-53 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.switch-block {
  border: 1px solid var(--line-1);
  background-color: var(--base);
  border-radius: 14px;
  padding: 28px;
}

.switch-block.green {
  background-color: #0daf1c0d;
  border-color: #0daf1c47;
}

.switch-h1 {
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
}

.hd-swtich {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.svg-switch {
  width: 44px;
}

.svg-switch.green {
  color: #0daf1d;
}

.svg-switch.blue {
  color: var(--blue);
}

.svg-switch.red {
  color: #f50;
}

.text-switch-box {
  max-width: 570px;
  color: var(--text-2);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.div-block-55 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: column;
  margin-top: 28px;
  display: flex;
}

.image-10 {
  opacity: 1;
  filter: grayscale();
}

.swtich-intro {
  max-width: 640px;
  color: var(--text-2);
  margin-bottom: 19px;
  font-size: 16px;
  line-height: 1.5;
}

.green-link {
  color: #0daf1c;
}

.text-span-6 {
  color: #ff5501;
}

.switch-h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.link-4 {
  color: var(--blue);
  margin-top: 31px;
  text-decoration: none;
}

.header-button-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--base);
  background-color: #2b2c30;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 19px;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: inset 0 0 #fff3, 0 2px 6px #0003;
}

.header-button-copy:hover {
  background-color: #000;
}

.div-block-56 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border: 1px solid #00000014;
  border-radius: 9px;
  flex-flow: row;
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  width: 560px;
  padding: 16px;
  display: flex;
  box-shadow: 0 4px 6px -6px #0000001f;
}

.page-section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 38px;
  display: flex;
}

.div-block-58 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  width: 100%;
  color: var(--text-1);
  border-radius: 4px;
  flex-flow: column;
  padding: 11px 22px 11px 11px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.div-block-58:hover {
  background-color: #f3f3f5;
}

.div-block-58.icon {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.text-block-27 {
  font-weight: 500;
}

.text-block-28 {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.4;
}

.div-block-59 {
  color: var(--text-3);
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 10px;
  font-size: 12px;
}

.svg-18 {
  width: 18px;
}

.svg-18.blue {
  color: var(--blue);
  flex: none;
}

.secondary {
  background-color: #00000005;
  border-radius: 11px;
  flex-flow: column;
  flex: 1;
  padding: 10px;
  display: flex;
}

.div-block-60 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.dropdown-list {
  display: none;
}

.dropdown-list.w--open {
  background-color: #ddd0;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  margin-left: -83px;
  overflow: visible;
}

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

.page-container {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-light {
  color: var(--blue);
  background-color: #1156eb0f;
  border: 1px solid #1156eb1f;
  border-radius: 9px;
  padding: 9px 18px;
  font-size: 15px;
  text-decoration: none;
}

.button-light:hover {
  background-color: #1156eb1f;
}

.button-light.main {
  background-color: var(--blue);
  color: #fff;
}

.paragraph-4 {
  max-width: 620px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.4;
}

.heading-14 {
  margin-top: 11px;
  margin-bottom: 6px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
}

.div-block-62 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-top: 24px;
  display: flex;
}

.image-11 {
  width: 100%;
  max-width: 570px;
  height: 430px;
  transform-style: preserve-3d;
  border: 1px solid #0000000f;
  border-radius: 9px;
  overflow: hidden;
  transform: perspective(1000px)rotateX(15deg)rotateY(-31deg)rotateZ(9deg);
  box-shadow: 20px 15px 20px #0000000a;
}

.page-container-copy {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.page-container-grid {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 58px;
  padding-bottom: 58px;
  display: grid;
}

.heading-15 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
}

.div-block-63 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-64 {
  flex: none;
  max-width: 580px;
  height: 100%;
}

.div-block-65 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  margin-top: auto;
  display: flex;
}

.text-block-30 {
  color: var(--text-2);
  margin-top: 120px;
}

.heading-16 {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 28px;
}

.svg-big {
  width: 26px;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

.svg-big.red {
  color: var(--orange);
}

.svg-big.green {
  color: var(--green);
}

.page-container-title {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.page-container-title.center {
  justify-content: flex-start;
  align-items: center;
}

.div-block-66 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-67 {
  width: 100%;
  height: 60px;
}

.heading-17 {
  margin-bottom: 4px;
  font-size: 14px;
}

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

.div-block-69 {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.para {
  max-width: 620px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}

.div-block-70 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 28px;
  display: flex;
}

.div-block-71 {
  height: 30px;
}

.heading-14-copy {
  text-align: center;
  margin-top: 11px;
  margin-bottom: 6px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
}

.paragraph-4-copy {
  max-width: 620px;
  color: var(--text-2);
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
}

.code-embed {
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.number {
  text-align: right;
  width: 92px;
  height: 18px;
  margin-top: -4px;
}

.div-block-72 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #3daf67;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  display: flex;
}

.boom {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 58px;
  padding-bottom: 58px;
  display: flex;
  overflow: visible;
}

.div-block-73 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  flex-flow: column;
  flex: 1;
  width: 400px;
  display: flex;
}

.text-block-31 {
  color: #3eaf67;
  font-size: 40px;
  font-weight: 700;
}

.div-block-74 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-75 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.fdfd {
  max-width: 620px;
  color: var(--text-2);
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
}

.div-block-76 {
  width: 100%;
  max-width: 680px;
}

.page-container-use-case {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 58px;
  padding-bottom: 58px;
  display: grid;
}

.image-12 {
  width: 400px;
}

.container-sab {
  border: 1px #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-sab.customers {
  border-left-style: none;
  border-right-style: none;
  flex-flow: column;
  display: flex;
}

.heading-18 {
  text-align: center;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
}

.paragraph-5 {
  width: 100%;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.heading-19 {
  border-bottom: 1px dashed var(--line-1);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.div-block-77 {
  border: 1px solid var(--line-1);
  border-radius: 13px;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 15px;
}

.text-block-32 {
  color: var(--blue);
  margin-bottom: 5px;
  font-family: Departuremono, sans-serif;
  font-size: 12px;
}

.div-block-78 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  padding-top: 26px;
  display: flex;
}

.div-block-79 {
  width: 100%;
  height: 40px;
}

.heading-20 {
  width: 100%;
}

.text-block-60 {
  font-size: 27px;
  line-height: 130%;
}

.svg-cross-3 {
  color: #8b8c93;
  flex: none;
  width: 14px;
  height: 14px;
}

.white-block {
  background-color: #fff;
  border-radius: 12px;
  display: block;
  box-shadow: inset 0 0 0 1px #0000001f, 0 1px 20px -8px #00000029;
}

.white-block.faq {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 540px;
  padding: 38px;
  display: flex;
}

.question-wrapper {
  cursor: pointer;
  border-bottom: 1px solid #2b2c3014;
  width: 100%;
  transition: background-color .475s;
}

.question-content {
  overflow: hidden;
}

.question-trigger {
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px 14px 0;
  display: flex;
}

.faq-space {
  width: 100%;
  height: 44px;
}

.question {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.answer {
  color: #5b5c63;
  cursor: text;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.image-13 {
  width: 330px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-80 {
  width: 100%;
  height: 30px;
}

.text-block-61 {
  color: var(--text-3);
  font-family: Exo, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.text-span-7 {
  color: var(--blue);
  font-size: 28px;
}

.text-span-8 {
  color: #1a1a1a;
  font-size: 28px;
}

.text-span-9 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
}

.text-span-10 {
  color: #1156eb99;
  font-size: 24px;
  font-weight: 700;
}

.text-span-11 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
}

.dl-lp-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5% 60px;
}

.dl-lp-h1 {
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.dl-lp-sub {
  color: #444;
  max-width: 700px;
  margin-bottom: 36px;
  font-size: 1.15rem;
  line-height: 1.6;
}

.dl-lp-cta-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 41px;
  display: flex;
}

.dl-lp-btn-primary {
  color: #fff;
  background-color: #0b3d91;
  border-radius: 6px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
}

.dl-lp-btn-secondary {
  color: #0b3d91;
  border: 2px solid #0b3d91;
  border-radius: 6px;
  padding: 12px 26px;
  font-weight: 600;
  text-decoration: none;
}

.dl-lp-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 5%;
}

.dl-lp-cta-bottom {
  text-align: center;
  background-color: #f0f5ff;
  margin-top: 60px;
  padding: 64px 5%;
}

.inline-div-0, .inline-div-1, .inline-div-2 {
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
}

.inline-div-3 {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.button-updated {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--blue);
  color: var(--base);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: inset 0 0 #fff3, 0 2px 6px #0003;
}

.button-updated:hover {
  background-color: #3f3f3f;
}

.button-updated.secondary {
  background-color: var(--base);
  box-shadow: inset 0ch 0 0 1px var(--line-1);
  color: var(--text-2);
}

.button-updated.secondary:hover {
  background-color: var(--line-1);
}

.button-updated.contact {
  flex: 1;
  width: 100%;
  margin-top: 0;
}

.button-updated.contact:hover {
  background-color: var(--blue);
}

.image-14 {
  margin-bottom: 72px;
}

.heading-21 {
  font-size: 19px;
}

@media screen and (max-width: 991px) {
  .hero {
    padding-left: 38px;
    padding-right: 38px;
  }

  .h1-home {
    font-size: 40px;
  }

  .customer-logos {
    padding-left: 24px;
    padding-right: 24px;
  }

  .h2-dec {
    font-size: 26px;
  }

  .product-bank {
    padding: 42px;
  }

  .block-re-eng {
    padding: 36px;
  }

  .h2-regen {
    font-size: 24px;
  }

  .bock-compare {
    padding: 36px;
  }

  .block-contact {
    justify-content: space-around;
    padding-left: 24px;
    padding-right: 24px;
  }

  .form-block {
    max-width: 420px;
  }

  .contact-info-wrapper {
    width: 290px;
    margin-right: 24px;
  }

  .form-field-wrapper {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
  }

  .form-field.text {
    flex: none;
  }

  .footer {
    flex-flow: column;
    padding-left: 60px;
    padding-right: 60px;
  }

  .express-hero-container {
    padding-right: 0;
  }

  .express-h1 {
    line-height: 1.2;
  }

  .express-logos-wrapper {
    grid-row-gap: 18px;
    flex-flow: wrap;
  }

  .compare-case {
    padding: 16px;
  }

  .collection-list.partner {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
  }

  .container-pricing-cards {
    padding-left: 12px;
    padding-right: 12px;
  }

  .partners {
    max-width: 110px;
    max-height: 20px;
  }

  .library-nav {
    padding-left: 18px;
    padding-right: 18px;
    overflow: scroll;
  }

  .div-block-20, .librarty-nav-title, .librarty-nav-title.w--current, .library-nav-link, .library-nav-link.w--current {
    flex: none;
  }

  .search {
    flex: none;
    max-width: 290px;
  }

  .search-button {
    flex: none;
  }

  .tab-pane-tab-1 {
    padding: 30px;
  }

  .div-block-46 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    flex-flow: column;
  }

  .div-block-48 {
    min-width: 100%;
  }

  .footer-link-copy {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
  }

  .div-block-50 {
    grid-column-gap: 12px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .page-container {
    flex-flow: column;
  }

  .div-block-69 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .nav-button-more {
    text-align: center;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
  }

  .nav-button-more:hover {
    box-shadow: inset 81ch 0 0 -3px #ffffff1f, 0 5px 9px 2px #0003;
  }

  .button-nav-mobile {
    z-index: 110;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    padding: 8px;
    display: flex;
    position: relative;
  }

  .header-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 8px 24px;
    display: flex;
  }

  .header-actions {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    margin-left: 0;
    display: block;
  }

  .header-actions.mobile {
    display: none;
  }

  .header-nav {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-left: 0;
    display: flex;
  }

  .header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #fafafa;
    flex-flow: row;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    position: sticky;
    inset: 0% 0% auto;
  }

  .nav-dropdown.w--open {
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #fff0;
    border-radius: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    position: static;
  }

  .header-mobile {
    z-index: 100;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    background-color: #fffc;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100svw;
    height: 100svh;
    margin-left: 0;
    padding: 80px 24px 24px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .dropdown-none {
    margin-left: 0;
    margin-right: 0;
  }

  .header-link {
    text-align: left;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
  }

  .header-link.with-icon {
    color: #5b5c63;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header-link.login {
    text-align: center;
  }

  .brand-link {
    z-index: 110;
    position: relative;
  }

  .header-button {
    text-align: center;
    margin-top: 32px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
  }

  .header-button:hover {
    box-shadow: inset 81ch 0 0 -3px #ffffff1f, 0 5px 9px 2px #0003;
  }

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

  .section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .customer-logos {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .customer-logo-wrapper {
    border-bottom: 1px solid var(--line-1);
  }

  .customer-logo-wrapper.second {
    border-bottom-style: none;
  }

  .customer-logo-wrapper._3 {
    border-right-style: none;
  }

  .block {
    padding: 80px 42px;
  }

  .block-wrapper {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .product-box {
    border-right-style: none;
  }

  .button:hover {
    box-shadow: inset 81ch 0 0 -3px #ffffff1f, 0 5px 9px 2px #0003;
  }

  .block-wrapper-2 {
    grid-row-gap: 0px;
    flex-flow: column;
    display: flex;
  }

  .product-bank {
    order: -1;
  }

  .block-re-eng {
    border-bottom-style: solid;
    border-right-style: none;
    border-bottom-color: var(--line-1);
    padding-left: 42px;
    padding-right: 42px;
  }

  .bock-compare {
    padding-left: 42px;
    padding-right: 42px;
  }

  .block-contact {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 16px;
  }

  .form-block {
    width: 100%;
  }

  .contact-info-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin-bottom: 60px;
  }

  .h2 {
    font-size: 28px;
  }

  .express-hero-container {
    grid-column-gap: 68px;
    grid-row-gap: 68px;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    max-width: 550px;
    padding-top: 0;
    padding-right: 0;
  }

  .express-info-wrapper {
    margin-right: 0;
  }

  .express-h1 {
    font-size: 32px;
    line-height: 1.6;
  }

  .div-block-9 {
    text-align: left;
    transform: rotate(0);
  }

  .express-name-wrapper, .express-logos-wrapper {
    justify-content: center;
    align-items: center;
  }

  .container-compare-nav-wrapper {
    flex-flow: column;
  }

  .container-compare-table {
    grid-template-columns: 1fr 1fr;
  }

  .compare-case.center.first {
    display: none;
  }

  .customer-logos-about {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .collection-list.partner {
    flex-flow: wrap;
  }

  .lottie-animation {
    align-self: center;
    width: 100vw;
    margin-top: 45px;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-15 {
    align-self: center;
  }

  .card {
    max-width: 470px;
  }

  .container-pricing-cards {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .pricing-h1 {
    max-width: 300px;
    font-size: 26px;
  }

  .partners {
    max-width: 120px;
    max-height: 30px;
  }

  .link-block {
    border-left-style: none;
    padding-left: 0;
  }

  .collection-item-2 {
    border-bottom: 1px solid var(--line-1);
    flex-flow: column;
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .time-article, .div-block-20, .librarty-nav-title {
    flex: none;
  }

  .tabs-menu-2 {
    justify-content: flex-start;
    align-items: center;
    overflow: scroll;
  }

  .div-block-38._2, .div-block-39 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-43 {
    padding-left: 0;
    padding-right: 0;
  }

  .article-link {
    flex-flow: column;
  }

  .footer-link-copy {
    grid-column-gap: 46px;
    grid-row-gap: 24px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .div-block-53 {
    grid-template-columns: 1fr 1fr;
  }

  .header-button-copy {
    text-align: center;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
  }

  .header-button-copy:hover {
    box-shadow: inset 81ch 0 0 -3px #ffffff1f, 0 5px 9px 2px #0003;
  }

  .div-block-56 {
    background-color: #fff0;
    border-style: none;
    border-radius: 0;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    font-size: 15px;
  }

  .dropdown-list.w--open {
    margin-top: 0;
    margin-left: 0;
    position: relative;
  }

  .dropdown {
    width: 100%;
  }

  .page-container-grid {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-63 {
    grid-column-gap: 36px;
    grid-row-gap: 23px;
    flex-flow: wrap;
  }

  .div-block-69 {
    grid-template-columns: 1fr;
  }

  .heading-14-copy {
    max-width: 310px;
  }

  .boom {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
  }

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

  .div-block-75 {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
    flex-flow: wrap;
  }

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

  .page-container-use-case {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    grid-template-columns: 1fr 1fr;
  }

  .question-content {
    margin-right: 0;
  }

  .button-updated:hover {
    box-shadow: inset 81ch 0 0 -3px #ffffff1f, 0 5px 9px 2px #0003;
  }
}

@media screen and (max-width: 479px) {
  .nav-button-more {
    flex: 0 auto;
    order: -1;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .button-nav-mobile {
    justify-content: center;
    align-items: center;
  }

  .header-mobile {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .header-button {
    width: 100%;
    margin-top: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .h1-home {
    max-width: 370px;
    font-size: 28px;
  }

  .customer-logo-wrapper {
    width: 100px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .block {
    padding-left: 24px;
    padding-right: 24px;
  }

  .block-for-logo {
    padding: 16px;
  }

  .product-bank, .block-re-eng {
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-4 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .bock-compare {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bullet {
    font-size: 12px;
  }

  .form-block {
    padding: 24px;
  }

  .text-hero {
    font-size: 14px;
    line-height: 1.6;
  }

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

  .h2 {
    font-size: 24px;
  }

  .text-span {
    font-size: 14px;
  }

  .express-h1 {
    font-size: 24px;
  }

  .div-block-9 {
    width: 100%;
    max-width: 330px;
  }

  .section-about, .container-about {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-h1 {
    font-size: 24px;
  }

  .about-wrapper-numbers {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    place-items: start;
    width: 100%;
  }

  .hwe-h1 {
    font-size: 24px;
  }

  .section-compare {
    border-left: 1px #000;
    border-right: 1px #000;
    padding-left: 0;
    padding-right: 0;
  }

  .container-compare, .container-compare-nav-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-14 {
    grid-row-gap: 16px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .locales-wrapper {
    margin-left: 0;
  }

  .tabs-menu {
    justify-content: flex-start;
    align-items: center;
    padding-left: 13px;
    overflow: scroll;
  }

  .client-tab {
    flex: none;
  }

  .text-block-10 {
    margin-top: 22px;
  }

  .card {
    padding: 16px;
  }

  .page-artilces {
    justify-content: center;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
  }

  .page-article {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rich-text-block {
    font-size: 15px;
  }

  .heading-5 {
    font-size: 18px;
  }

  .link-block-2 {
    text-align: center;
  }

  .librarty-nav-title {
    flex: none;
  }

  .library-landing-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-35 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-37 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    padding-left: 8px;
  }

  .sort-tab {
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
  }

  .tab-pane-tab-1 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-38._2 {
    flex-flow: row;
  }

  .tabs-2 {
    width: 100vw;
  }

  .div-block-41 {
    padding: 24px;
  }

  .div-block-43 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-49 {
    flex-flow: wrap;
  }

  .div-block-50 {
    grid-template-columns: 1fr;
  }

  .lottie-animation-2 {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
  }

  .newsletter {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .switch-h1, .switch-h2 {
    font-size: 24px;
  }

  .header-button-copy {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropdown-list.w--open {
    margin-left: 0;
    position: relative;
  }

  .dropdown {
    width: 100%;
  }

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

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

  .page-container-grid {
    grid-template-columns: 1fr;
  }

  .div-block-67 {
    height: 20px;
  }

  .heading-14-copy {
    font-size: 26px;
  }

  .div-block-72 {
    flex-flow: column;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .boom, .page-container-use-case {
    grid-template-columns: 1fr;
  }

  .white-block.faq {
    padding: 24px;
  }
}

#w-node-_148ad15a-5377-4bec-deb2-e4ea08116595-8fe61346 {
  place-self: stretch stretch;
}

#w-node-_6e2ea2c5-d18b-7ba5-14b2-d7d238733d56-38733d50 {
  justify-self: center;
}

#w-node-_2d56c30b-b90c-0717-73cd-c2197e15875a-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587ac-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158804-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158848-7e158754 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (max-width: 767px) {
  #w-node-_2d56c30b-b90c-0717-73cd-c2197e15875a-7e158754 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2d56c30b-b90c-0717-73cd-c2197e15875d-7e158754 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_2d56c30b-b90c-0717-73cd-c2197e158766-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158770-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e15877a-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158784-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e15878e-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158798-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587a2-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587ac-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587af-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587b8-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587c1-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587ca-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158804-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158807-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158811-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e15881a-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158823-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e15882c-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158836-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e15883f-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158848-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e15884b-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158854-7e158754, #w-node-b609b46c-6098-1532-8215-063b83abf911-83abf8f9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2d56c30b-b90c-0717-73cd-c2197e15877a-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e158784-7e158754 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2d56c30b-b90c-0717-73cd-c2197e15878e-7e158754 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_2d56c30b-b90c-0717-73cd-c2197e158798-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587a2-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587af-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587b8-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587c1-7e158754, #w-node-_2d56c30b-b90c-0717-73cd-c2197e1587ca-7e158754 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Inter Variable';
  src: url('../fonts/InterVariable-Italic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Variable';
  src: url('../fonts/InterVariable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Departuremono';
  src: url('../fonts/DepartureMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}