:root {
  --black: #0f0f11;
  --primary: #ed1f41;
  --gradient-color-3: #f60307;
  --secondary: #ff7c54;
  --flowui-component-library-white: #f6f3db;
  --light-black: #222;
  --white-10: #ffffff1a;
  --dim-grey: #878d95;
  --nav-line-gradient-3: #a0fbcd;
  --light-grey: #f1f1f1;
  --relume-library-lite-rl-white: #f8f8f8;
  --untitled-ui-primary200: #e9d7fe;
  --accessible-components-dark-grey: #9b9b9b;
  --untitled-ui-gray300: #d0d5dd;
  --untitled-ui-primary600: #7f56d9;
  --untitled-ui-primary700: #6941c6;
  --untitled-ui-primary100: #f4ebff;
  --untitled-ui-gray700: #344054;
  --untitled-ui-gray50: #f9fafb;
  --untitled-ui-gray800: #1d2939;
  --untitled-ui-gray100: #f2f4f7;
  --untitled-ui-gray600: #475467;
  --untitled-ui-primary50: #f9f5ff;
  --untitled-ui-gray900: #101828;
  --accessible-components-white-smoke: whitesmoke;
  --bg-grey: #d4d4d4;
  --flowui-component-library-gray-900: #160042;
  --flowui-component-library-gray-500: #6b7094;
  --flowui-component-library-gray-100: #f7f9fd;
  --flowui-component-library-gray-700: #282556;
  --relume-library-lite-rl-black: black;
  --untitled-ui-primary300: #d6bbfb;
  --untitled-ui-primary500: #9e77ed;
  --conversion-flow-library--medium-purple: #b16cea;
  --conversion-flow-library--light-coral: #ff5e69;
  --conversion-flow-library--sandy-brown: #ffa84b;
  --waves-library--dark-elevation: #ede0d8;
  --waves-library--black: #131313;
  --elements-webflow-library--accent--primary-1: #4a3aff;
  --elements-webflow-library--neutral--800: #211f54;
  --elements-webflow-library--neutral--600: #6e7191;
  --elements-webflow-library--general--shadow-04: #14142b24;
  --elements-webflow-library--neutral--100: white;
  --flowui-component-library--gray-200: #f3f5fb;
  --elements-webflow-library--neutral--300: #eff0f6;
  --elements-webflow-library--general--shadow-02: #14142b14;
  --elements-webflow-library--secondary--color-1: #281ca5;
  --elements-webflow-library--general--shadow-01: #14142b0f;
  --elements-webflow-library--neutral--400: #dcddeb;
  --elements-webflow-library--secondary--color-2: #f2f1ff;
  --conversion-flow-library--coral: #ff8a56;
  --elements-webflow-library--general--shadow-03: #14142b1a;
  --untitled-ui-primary900: #42307d;
  --flowui-component-library-grey-300: #e4e6f1;
  --elements-webflow-library--neutral--200: #f7f7fc;
  --flowui-component-library--grey-600: #393b6a;
  --flowui-component-library--primary-base: #642eff;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--black);
  color: #fff;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.35s;
}

a:hover {
  color: #fff;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 400;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 16px;
}

li {
  font-size: 16px;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

blockquote {
  background-image: linear-gradient(
    135deg,
    var(--primary),
    var(--gradient-color-3) 49%,
    var(--secondary)
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-left: 2px solid #3de85dc2;
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 0 0 0 20px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.section-13 {
  z-index: 1;
  background-color: var(--flowui-component-library-white);
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}

.section-13.ligher-grey-bg {
  background-color: #f8f8f8;
  padding-top: 40px;
  padding-bottom: 100px;
  display: inline-block;
}

.section-13.ligher-grey-bg.zindex-3 {
  z-index: 3;
  background-color: var(--flowui-component-library-white);
  padding-top: 30px;
  padding-bottom: 10px;
}

.section-13.ligher-grey-bg.zindex-3.pt0 {
  background-color: #f1f0ec;
  padding-top: 0;
}

.section-13.ligher {
  background-color: var(--light-black);
}

.section-13.ligher.zindex-3 {
  z-index: 3;
  background-color: var(--black);
}

.section-13.pb0 {
  padding-bottom: 0;
}

.section-13.hide {
  display: none;
}

.container {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2em;
}

.container.nav-container {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

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

.container.animation-container {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.container.no-padding-bottom {
  padding-top: 4em;
  padding-bottom: 0;
}

.container.clients-container {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.container.customer-story {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.nav-menu-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.navbar {
  z-index: 101;
  background-color: #f6f3db;
  border-bottom: 0 #0000000d;
  height: 80px;
  position: fixed;
  inset: 0% 0% auto;
}

.hero-section {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 70px;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.hero-section.home-hero-section {
  height: 100vh;
  position: fixed;
}

.nav-menu {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  max-height: 36px;
  padding-top: 5px;
  display: flex;
}

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

.grid-6-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.grid-4-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-2-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  width: 100%;
}

.utility-page-wrap {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-top: 70px;
  display: flex;
}

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

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

.footer-link {
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.4s;
  position: relative;
  overflow: hidden;
}

.footer-link:hover {
  color: #fff;
}

.link-block-underline {
  background-color: #abb6d1;
  width: 100%;
  height: 1px;
  margin-top: 2px;
}

.footer {
  z-index: 1;
  background-color: var(--flowui-component-library-white);
  align-items: flex-start;
  padding-top: 1em;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.footer-content {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 3em;
  display: grid;
}

.footer-logo-link {
  opacity: 1;
  flex: 0 auto;
  transition-property: opacity;
  display: block;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-image {
  width: 100%;
  max-width: 100px;
  margin-left: 0;
}

.footer-heading {
  color: #ed1f41;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.made-by-section {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  border-top: 1px solid #0003;
  justify-content: space-between;
  padding-top: 2em;
  display: flex;
  overflow: hidden;
}

.nav-link-holder {
  padding-left: 10px;
  display: none;
}

.content {
  max-width: 600px;
  display: block;
}

.white-50pct {
  color: #ffffff80;
  text-align: justify;
  align-self: auto;
  font-size: 20px;
  font-weight: 300;
}

.contact-form-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.field-label {
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.success-message {
  border: 0px none var(--primary);
  color: #fff;
  background-color: #ffffff1a;
  border-radius: 8px;
  padding: 1em;
}

.error-message {
  text-align: center;
  background-color: #ffb5b533;
  border: 1px solid #ffb5b580;
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
}

.instructions-image {
  border-radius: 12px;
  width: 100%;
}

.change-log-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: var(--white-10);
  border-radius: 12px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  font-size: 16px;
  display: flex;
}

.menu-button {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 5px;
  display: none;
}

.copyright-text {
  color: #202020;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.copyright-link {
  background-image: url("../images/external-link.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 15px;
  margin-right: 5px;
  padding-left: 0;
  padding-right: 16px;
  font-weight: 500;
}

.copyright-link:hover {
  color: #fffc;
}

.rich-text {
  max-width: 720px;
}

.rich-text h5 {
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.3;
}

.rich-text strong {
  font-weight: 600;
}

.rich-text a {
  border-bottom: 1px solid #323232;
  line-height: 1.6;
  text-decoration: underline;
  transition-property: all;
}

.rich-text a:hover {
  color: var(--primary);
  border-bottom-color: #32323200;
  text-decoration: none;
}

.rich-text figure {
  background-color: #ffffff1a;
  border-radius: 3px;
  width: 100%;
  min-width: 100%;
  margin-top: 3em;
  margin-bottom: 4em;
  padding: 30px;
}

.rich-text blockquote {
  color: var(--primary);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.rich-text ul {
  margin-top: 30px;
  margin-bottom: 24px;
  padding-left: 32px;
}

.rich-text h3 {
  letter-spacing: 0.5px;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.3;
}

.rich-text img {
  width: 100%;
  min-width: 100%;
}

.rich-text figcaption {
  color: #fff9;
  letter-spacing: 0.2px;
  margin-top: 0;
  font-size: 12px;
  line-height: 24px;
}

.rich-text h1 {
  letter-spacing: 0.5px;
  margin-top: 3rem;
  margin-bottom: 1.3rem;
  font-size: 40px;
  font-weight: 600;
}

.rich-text p {
  letter-spacing: 0.2px;
  margin-top: 16px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

.rich-text h2 {
  letter-spacing: 0.5px;
  margin-top: 3rem;
  margin-bottom: 1.3rem;
  font-size: 36px;
  line-height: 1.3;
}

.rich-text ol {
  margin-top: 30px;
  margin-bottom: 24px;
  padding-left: 32px;
}

.rich-text h4 {
  letter-spacing: 0.5px;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 21px;
  line-height: 1.3;
}

.rich-text h6 {
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.rich-text li {
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.style-guide-tab-holder {
  border-radius: 5px;
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  transition-property: background-color;
  transition-duration: 0.675s;
}

.style-guide-tab-holder:hover {
  color: #fff;
  background-color: #ffffff0d;
}

.style-guide-tab-holder.w--current {
  color: #fff;
  background-color: #ffffff1a;
}

.style-guide-left-panel-holder {
  background-color: #ffffff1a;
  align-items: flex-start;
  width: 405px;
  display: flex;
}

.style-guide-title-holder {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-text {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 55px;
  font-weight: 600;
}

.paragraph-m {
  font-size: 24px;
  line-height: 1.2;
}

.style-guide-gray-background {
  background-color: #ffffff1a;
  border-radius: 12px;
}

.style-guide-left-panel {
  grid-row-gap: 25px;
  flex-direction: column;
  width: 100%;
  padding: 2em;
  display: flex;
  position: sticky;
  top: 50px;
}

.subscribe-button {
  color: var(--black);
  background-color: #fff;
  border: 0 solid #000;
  border-radius: 0 8px 8px 0;
  width: 100px;
  height: 100%;
  padding: 5px;
  font-weight: 400;
  transition: background-color 0.35s;
  position: absolute;
  inset: auto 0% 0% auto;
}

.subscribe-button:hover {
  background-color: #ffffffe6;
}

.headings-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.link-block-2 {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.4s;
}

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

.link-block-2.animation-03 {
  overflow: hidden;
}

.grid-holder {
  grid-row-gap: 30px;
  background-color: #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

.colors-container {
  background-color: #ffffff1a;
}

.subscribe-form-holder {
  width: 100%;
  max-width: 340px;
  margin-bottom: 0;
}

.style-guide-small-title {
  font-size: 16px;
}

.paragraph-container {
  width: 80%;
  margin-top: 10px;
}

.colors-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  display: flex;
}

.button-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2em;
  display: grid;
}

.font-details-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.aa-font {
  font-size: 130px;
}

.style-guide-empty-container {
  padding: 2em 2em 2em 1em;
}

.font-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #ffffff1a;
  border-radius: 12px;
  justify-content: space-between;
  margin-top: 2em;
  padding: 2em;
  display: flex;
}

.button {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--black);
  text-transform: none;
  background-color: #fff;
  background-image: linear-gradient(#f6f6f6, #ebebeb);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 48px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.35s, background-color 0.35s,
    opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.button:hover {
  opacity: 0.9;
  color: #0f0f11cc;
}

.button.with-icon {
  background-image: url("../images/White-Arrow.svg"),
    linear-gradient(73deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: left;
  background-position: 80%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 14px, auto;
  width: 190px;
  padding-right: 65px;
  transition-property: color, background-color, background-position;
}

.button.with-icon:hover {
  opacity: 1;
  color: #fff;
  background-position: 83%, 0 0;
}

.button.button-cta {
  background-image: none;
  border-radius: 100px;
  min-width: 250px;
}

.button.empty-button {
  color: #fff;
  background-color: #fff0;
  background-image: none;
  border: 1px solid #fff;
}

.button.empty-button:hover {
  color: #1e1e1f;
  background-color: #f8f8f8;
}

.button.download-button {
  text-transform: uppercase;
  height: 70px;
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 20px;
}

.borders {
  opacity: 1;
  border: 1px solid #fff3;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.borders.center {
  height: 100px;
}

.button-holder {
  grid-row-gap: 30px;
  background-color: #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  display: flex;
}

.subscribe-form {
  z-index: 1;
  width: 100%;
  position: relative;
}

.style-guide-main-panel {
  width: 100%;
  height: 100%;
  padding-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.headings-holder {
  background-color: #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

.subscribe-email {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fffc;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding: 10px 109px 10px 12px;
  line-height: 1;
  transition: background-color 0.35s, border-color 0.35s;
}

.subscribe-email:hover {
  background-color: #00000005;
}

.subscribe-email:focus {
  background-color: #ffffff1a;
  border-color: #fff;
}

.subscribe-email::placeholder {
  color: #fff6;
}

.sg---color-primary {
  background-color: var(--primary);
  width: 220px;
  height: 100px;
}

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

.sg---color-primary.gradient-color-3 {
  background-color: var(--gradient-color-3);
}

.style-guide-container {
  display: flex;
}

.style-guide-panel-title {
  color: var(--dim-grey);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.font-light {
  font-size: 24px;
  font-weight: 300;
}

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

.sg---color-description {
  grid-row-gap: 2px;
  flex-direction: column;
  padding: 15px;
  display: flex;
}

.style-guide-hero-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  padding: 2em;
  display: flex;
}

._404-content {
  margin-bottom: 20px;
}

.brand-logo {
  object-fit: cover;
  width: 100%;
  max-width: 150px;
  height: 100%;
}

.brand-link {
  z-index: 1;
  width: 80px;
  margin-left: 0;
  padding-left: 0;
  transition-property: opacity;
  position: relative;
}

.brand-link:hover {
  opacity: 0.9;
}

.nav-link {
  z-index: 1;
  color: #202020;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: exclusion;
  background-image: linear-gradient(to right, #6eff89, #715cff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 500;
}

.nav-link.w--current {
  color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #6eff89, #715cff);
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 20px;
  font-weight: 700;
}

.link-background {
  z-index: -1;
  background-image: linear-gradient(65deg, var(--primary), var(--secondary));
  border-radius: 100px;
  display: none;
  position: absolute;
  inset: 0%;
}

.link-background:hover {
  background-image: linear-gradient(65deg, var(--primary), var(--secondary));
}

.link-background.white-link-bg {
  background-color: #fff;
  background-image: none;
}

.hero-section-secondary {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 300px;
  padding-top: 70px;
  display: flex;
  position: relative;
}

.hero-text-secondary {
  margin-top: 0;
}

.hero-description-short-container {
  max-width: 60%;
}

.footer-brand-content {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-description {
  color: #202020;
  max-width: 260px;
  margin-top: -2em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-description.desc {
  color: #67779b;
  width: 100%;
  max-width: none;
  margin-top: -1em;
  font-family: Archivo, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.social-media-icons {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.social-media-icons.hide {
  display: none;
}

.social-media-link {
  z-index: 1;
  border-radius: 6px;
  padding: 5px;
  font-size: 16px;
  position: relative;
}

.social-media-icon {
  opacity: 0.7;
  filter: invert();
  width: 30px;
  height: 30px;
}

.hero-description {
  color: #67779b;
  max-width: 800px;
  margin: 10px auto 40px;
  font-family: Open Sans, sans-serif;
  font-size: 19px;
  line-height: 1.5;
}

.hero-description.no-margins {
  max-width: 1000px;
  margin-bottom: 0;
}

.hero-description.only-bottom-10-margins {
  margin-bottom: 10px;
  margin-left: 0;
}

.hero-description.secondary-pages {
  margin-left: 0;
}

.hero-content {
  z-index: 2;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.contact-form-content {
  flex-direction: column;
  display: block;
}

.contact-form {
  background-color: #0f0f11;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 3em;
}

.input-field {
  background-color: var(--light-black);
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border: 1px solid #ffffff1a;
  border-radius: 6px;
  height: 40px;
  margin-bottom: 0;
  padding: 10px;
  line-height: 1;
  transition: color 0.35s, border-color 0.35s, background-color 0.35s;
}

.input-field:hover {
  background-color: var(--black);
}

.input-field:focus {
  background-color: #ffffff0a;
  border-color: #fffc;
}

.input-field::placeholder {
  color: #fff6;
}

.input-field.textarea-field {
  height: auto;
  min-height: 120px;
  padding-top: 15px;
}

.link {
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: relative;
}

.link:hover {
  color: #fff;
}

.link.w--current {
  color: #000;
}

.link-with-line {
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.4s;
  position: relative;
  overflow: hidden;
}

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

.link-content {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.external-icon {
  width: 16px;
}

.license-box {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
  padding: 2em;
  display: flex;
}

.license-box-top {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-grey-content {
  background-color: var(--white-10);
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 1em;
  display: flex;
}

.client-logo {
  filter: grayscale(95%);
  object-fit: contain;
  width: 100%;
  min-width: 120px;
  max-width: 120px;
  height: 100%;
  max-height: 65px;
  padding-top: 1em;
  transition: filter 0.3s;
}

.client-logo:hover {
  filter: grayscale(0%);
}

.feather-icons-image {
  width: 100%;
  max-width: 400px;
}

.instruction-item {
  background-color: #ffffff1a;
  border-radius: 12px;
  padding: 2em;
}

.instructions-list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.trusted-by-container {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.trusted-by-grid-content {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20vw;
  display: flex;
}

.section-background {
  z-index: -1;
  background-color: var(--light-black);
  position: absolute;
  inset: 0%;
}

.footer-grid-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-grid-content.second {
  margin-top: 2em;
}

.protected-input-holder {
  margin-bottom: 10px;
}

.text-gradient-light {
  color: #3f3f3f;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 50px;
}

.hero-text-xl {
  text-transform: capitalize;
  margin-top: 0;
  font-size: 95px;
  font-weight: 800;
}

.text-gradient-colored {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(87deg, #67779b 15%, #ed1f41 57%, #ff7c54);
  -webkit-background-clip: text;
  background-clip: text;
  padding-left: 0.125em;
  font-size: 80px;
  line-height: 1.15;
}

.grid-clients {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-clients._1 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-clients._2,
.grid-clients._1 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.nav-line {
  background-image: linear-gradient(
    134deg,
    #77db8a,
    var(--gradient-color-3) 55%,
    var(--secondary)
  );
  opacity: 0.5;
  width: 100%;
  height: 1px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.hero-cricle-bg {
  width: 70vw;
  height: 70vw;
  position: absolute;
  top: -40vw;
  left: -40vw;
}

.main-hero-bg {
  z-index: 0;
  background-image: linear-gradient(
    83deg,
    var(--primary),
    var(--gradient-color-3) 28%,
    var(--gradient-color-3) 46%,
    #30b6ff 62%,
    #00f0ff 75%,
    var(--secondary)
  );
  filter: blur(350px);
  width: 50vw;
  max-width: none;
  height: 65vh;
  margin-top: -40%;
  position: absolute;
}

.hero-circle-bg-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  min-height: 800px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-animation {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  position: sticky;
  top: 69px;
}

.device {
  z-index: 1;
  object-fit: contain;
  width: 520px;
  max-width: none;
  height: 100%;
  position: relative;
}

.device-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-width: 500px;
  height: 100%;
  display: block;
  position: relative;
}

.dashboard-app {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 1.45%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.dashboard-app-holder {
  z-index: 0;
  perspective: 60vw;
  border-radius: 22px;
  position: absolute;
  inset: 5% 10% 6%;
  overflow: hidden;
}

.animation-section {
  z-index: 2;
  background-image: linear-gradient(
    to bottom,
    #0f0f1100,
    var(--black) 9%,
    var(--black)
  );
  min-height: 200vh;
  margin-top: 100vh;
  padding-top: 10%;
  position: relative;
  top: 0;
}

.main-hero-bg-holder {
  opacity: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
  display: flex;
  position: absolute;
  inset: -100vh 0% -100%;
  overflow: hidden;
}

.anim-icons-holder {
  z-index: 0;
  mix-blend-mode: overlay;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0 0% 0%;
  overflow: hidden;
}

.anim-icon {
  width: 85px;
}

.anim-icons-scale-holder {
  width: 100%;
  max-width: 820px;
  height: 100%;
  position: absolute;
  inset: 70px auto auto;
}

.anim-icon-holder {
  position: absolute;
  inset: -2% auto auto 6%;
}

.anim-icon-holder._2 {
  top: 28%;
  left: 11%;
}

.anim-icon-holder._3 {
  top: 60%;
  left: 1%;
}

.anim-icon-holder._4 {
  top: 0%;
  left: auto;
  right: 20%;
}

.anim-icon-holder._5 {
  top: 34%;
  left: auto;
  right: 17%;
}

.anim-icon-holder._6 {
  top: 60%;
  left: auto;
  right: 3%;
}

.text-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 2rem;
  display: flex;
}

.text-container.left-align {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 2em;
  font-style: normal;
}

.text-container.mb40 {
  margin-bottom: 0;
}

.text-container.mt40 {
  margin-top: 40px;
}

.grey-dim {
  color: var(--dim-grey);
  font-size: 15px;
}

.small-content {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.small-content.no-padding {
  padding-bottom: 0;
}

.small-content.no-auto-margin {
  text-align: left;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: flex-start;
  max-width: none;
  margin-left: 0;
  display: flex;
}

.card {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card.card-no-bottom-padding {
  box-shadow: none;
  max-width: none;
  height: 100%;
  padding-bottom: 0;
}

.card.feedback-card {
  min-height: 100%;
  padding: 1.5em;
  overflow: visible;
  box-shadow: 0 20px 40px #00000021, inset 0 1px 2px #ffffff1a;
}

.card.card-cta {
  grid-column-gap: 10em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.3fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card.job-position-card {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 2em;
  display: flex;
}

.card.team-social-media-card {
  min-height: auto;
  padding: 1.5em;
}

.card.card-tab-feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.card.pricing-card {
  z-index: 1;
  background-image: linear-gradient(140deg, #ef2843, #fe7452);
  height: 100%;
  padding: 2em;
}

.card.pricing-card:hover {
  background-color: #fff;
  background-image: linear-gradient(315deg, #ee2843, #fd7452);
}

.card.pricing-card.main-pricing-card {
  z-index: 3;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  height: 110%;
  top: -5%;
}

.card.card-no-bottom-padding {
  min-height: 700px;
  padding-bottom: 0;
}

.card.customer-story {
  padding: 0;
}

.card.customer-story.width60 {
  border-radius: 0;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: inset 0 1px 2px #ffffff1a;
}

.card.customer-story.width60.hide {
  display: none;
}

.card-noise-bg {
  z-index: 1;
  opacity: 0.03;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.card-title {
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 26px;
}

.card-title.no-margin-top {
  color: #3f3f3f;
  margin-top: 0;
  font-size: 22px;
  line-height: 1.3;
}

.card-description {
  color: var(--dim-grey);
  text-align: justify;
  max-width: 350px;
  font-weight: 400;
  display: block;
}

.card-colored-bg {
  z-index: -1;
  opacity: 1;
  background-image: linear-gradient(87deg, #ed1f41, #f6030782 44%, #ff7c54);
  position: absolute;
  inset: 0%;
}

.card-content {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-buttons-holder {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero-buttons-holder.left-aligned-buttons {
  justify-content: flex-start;
}

.preloader {
  z-index: 102;
  background-color: var(--flowui-component-library-white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-logo {
  z-index: 1;
  object-fit: contain;
  width: 100%;
  min-width: 0;
  max-width: 100px;
  max-height: none;
  display: block;
  position: relative;
}

.grid-2col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  padding-left: 70px;
  padding-right: 70px;
}

.card-side-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.list.list-cta {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1em;
  margin-bottom: 1em;
  display: grid;
}

.list-item-with-check {
  color: #fff;
  background-image: url("../images/check-circle.svg");
  background-position: 3px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 30px;
}

.iphone {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-height: 680px;
}

.card-image-iphone {
  z-index: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.grid-card-list-holder {
  grid-column-gap: 5.5em;
  grid-row-gap: 5.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.pricing-grid {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding: 0% 100px;
}

.pricing-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 0.75fr 0.5fr 0.5fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  max-height: 800px;
  display: grid;
}

.pricing-type {
  color: #fffc;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 16px;
}

.price {
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 56px;
  font-weight: 500;
}

.price.w100 {
  width: auto;
  font-size: 50px;
}

.pricing-button-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.pricing-features-holders {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fffc;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
  display: flex;
}

.pricing-feature-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-feature-image {
  filter: contrast(200%);
  color: #fff;
  mix-blend-mode: overlay;
  object-fit: contain;
  width: 18px;
  height: 15px;
  font-size: 18px;
}

.list-item {
  color: #fffc;
  background-image: url("../images/WhiteCheck.svg");
  background-position: 3px;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 22px;
}

.price-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: baseline;
  margin-top: 10px;
  display: flex;
}

._40pct-white-text {
  color: #fff6;
}

._40pct-white-text.w100 {
  width: auto;
}

.card-list-items-holder {
  width: 100%;
  max-width: none;
}

.sticky-content {
  position: sticky;
  top: 100px;
}

.feedback-item-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.slider-right-arrow {
  display: none;
}

.feedback-card-container {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  min-width: 100%;
  max-width: 35vw;
  height: 100%;
  min-height: 300px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.feedback-card-container:hover {
  text-decoration: none;
}

.slider-mask {
  width: 100%;
  height: auto;
  overflow: visible;
}

.feedback-image {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
}

.slider-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.feedback-image-circle {
  object-fit: cover;
  background-color: #0000;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  padding-top: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feedback-image-circle.feedback-color-green,
.feedback-image-circle.feedback-color-violet {
  background-color: #0000;
}

.feedback-image-circle.feedback-color-yellow {
  background-color: #0000;
  border-radius: 0;
  width: 150px;
  height: 75px;
}

.feedback-image-circle.feedback-color-rose {
  background-color: #0000;
}

.slide {
  cursor: default;
  width: 100%;
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.slider {
  background-color: #0000;
  min-width: 380px;
  max-width: 25vw;
  height: auto;
  overflow: visible;
}

.slider-left-arrow {
  display: none;
}

.feedback-author {
  color: #3f3f3f;
  letter-spacing: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: normal;
  font-weight: 600;
  display: flex;
}

.slider-nav {
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 3px;
  font-size: 9px;
  display: block;
  inset: auto 0% -50px 0;
}

.feedback-text {
  color: #8b8b8b;
  letter-spacing: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: normal;
  line-height: 1.4;
}

.feedback-name-and-position {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.feedback-position {
  color: #ffffff80;
  font-size: 14px;
}

.card-item-content {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  font-style: normal;
  display: flex;
  position: relative;
}

.card-item-content.social-media-link-card-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.heading-4-style {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 600;
}

.feature-icon {
  color: #98caff;
  object-fit: contain;
  background-color: #f1f1f126;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  padding: 8px;
  font-size: 12px;
}

.play-icon-holder {
  z-index: 2;
  cursor: pointer;
  background-color: #fff;
  border-radius: 300px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-top: -71px;
  margin-left: -71px;
  transition: box-shadow 0.2s;
  display: flex;
  position: absolute;
  inset: 50% auto auto 50%;
}

.play-icon-holder:hover {
  box-shadow: 0 0 9px 8px #00000080;
}

.play-icon-image {
  position: relative;
  left: 7px;
}

.pricing-tabs {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.pricing-tabs.hide {
  display: none;
}

.pricing-tabs-content {
  width: 100%;
  overflow: visible;
}

.pricing-tab-pane {
  padding-top: 20px;
}

.yearly-link-discount {
  border: 1px solid #fff3;
  border-radius: 100px;
  margin-bottom: 0;
  margin-left: 4px;
  padding: 2px 5px;
  font-size: 70%;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: -1px;
}

.secondary-page-title {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 53px;
}

.secondary-page-holders {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.secondary-page-holders.left-align {
  text-align: left;
  align-items: flex-start;
}

.grid-3-features {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.preloader-bg {
  z-index: -5;
  background-image: linear-gradient(
    173deg,
    var(--primary),
    var(--gradient-color-3) 28%,
    var(--gradient-color-3) 46%,
    #30b6ff 62%,
    #00f0ff 75%,
    var(--secondary)
  );
  opacity: 0.65;
  filter: blur(120px);
  width: 30vw;
  max-width: none;
  height: 30vw;
  display: block;
  position: absolute;
}

.secondary-hero-image-holder {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  position: relative;
}

.secondary-hero-image-holder.bottom-padding {
  padding-bottom: 5em;
}

.secondary-hero-image-holder.no-bottom-padding {
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.secondary-hero-gradient {
  z-index: 0;
  filter: blur(150px);
  background-image: linear-gradient(
    83deg,
    #ed1f41,
    #f60307 28% 46%,
    #ff8a23 62%,
    #fb6950 79%,
    #ff7c54
  );
  width: 100%;
  max-width: none;
  height: 60%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 30% 0% auto;
}

.secondary-image-holder {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 554px;
  display: flex;
  position: relative;
  right: auto;
  overflow: hidden;
}

.secondary-image-holder.hide {
  display: none;
}

.features-image-gradient {
  z-index: 2;
  background-image: linear-gradient(
    180deg,
    #11110f00,
    var(--flowui-component-library-white) 81%,
    #f6f3db
  );
  height: 41%;
  position: absolute;
  inset: auto 0% -1%;
}

.text-hidden {
  perspective: 291px;
  font-size: 16px;
  overflow: hidden;
}

.hero-text-1 {
  font-size: 16px;
}

.featured-card-image-holder {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 4em;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.featured-card-image-holder.customer-story {
  border-radius: 0;
  min-height: 0;
  max-height: 500px;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.features-card-image-border {
  background-image: linear-gradient(#ffffff4f, #fff0);
  border-radius: 8px;
  position: absolute;
  inset: 0%;
}

.features-card-heading {
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 26px;
}

.features-card-sx-heading {
  color: #ed1f41;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 22px;
}

.card-side-content-items {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 2em;
  display: flex;
}

.card-colored-bg-2 {
  z-index: -1;
  opacity: 1;
  position: absolute;
  inset: 0%;
}

.cta-button-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2em;
  display: flex;
}

.image-anim-container {
  border-radius: 10px;
  justify-content: space-between;
  align-items: stretch;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-anim-container._100-pct {
  height: 100%;
  min-height: 40vh;
}

.grid-10cols {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.company-hero-button-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2em;
  display: flex;
}

.big-text {
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.team-link {
  color: #fff;
  text-align: center;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: flex;
}

.team-link:hover {
  text-decoration: none;
}

.team-link.active-team-link {
  width: 30vw;
}

.team-image-holder {
  z-index: 1;
  background-image: linear-gradient(#2220, #ffffff1a);
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.team-image-holder.front {
  z-index: auto;
  inset: 0%;
}

.team-image-holder.back {
  z-index: auto;
  transform-style: preserve-3d;
  background-image: none;
  height: 100%;
  padding-top: 0%;
  position: relative;
  inset: 0%;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}

.team-image {
  object-fit: contain;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transform: scale(1.5);
}

.team-image.team-image-active {
  width: 100%;
  height: 100%;
}

.team-name {
  color: #211f54;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

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

.team-list._5-columns {
  grid-column-gap: 0em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 51.8em;
  margin-top: 1.5em;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.team-list._4-columns {
  grid-column-gap: 2em;
  grid-row-gap: 0px;
  grid-auto-flow: row dense;
  justify-items: stretch;
  width: 100%;
  max-width: 45em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.team-collection-item {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.card-item-gradient {
  z-index: 0;
  opacity: 0;
  background-image: linear-gradient(132deg, #f85d7f, #6b81fa);
  position: absolute;
  inset: 0%;
}

.card-item-gradient.gradient-2 {
  background-image: linear-gradient(132deg, #5238ff, #a0fbcd);
}

.job-position-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 15px;
  display: flex;
}

.flexbox-last-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.job-position-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 30px;
  grid-auto-columns: 1fr;
  place-content: space-around start;
  place-items: center start;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  display: grid;
}

.job-position-link {
  background-image: linear-gradient(#222529, #222529);
  border-radius: 18px;
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-items: stretch;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #2b333d;
}

.job-position-link:hover {
  text-decoration: none;
}

.job-position-link.fadein-into-view {
  padding-top: 30px;
}

.post-collection-item {
  display: block;
}

.blog-grid {
  grid-column-gap: 3em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-wrapper {
  display: block;
}

.post-link {
  width: 100%;
  padding-bottom: 0;
}

.post-link:hover {
  text-decoration: none;
}

.blog-item-image-container {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 1em;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.post-item-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog-item-overlay {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 30%;
  font-size: 28px;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-item-category {
  background-image: linear-gradient(84deg, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.blog-item-date {
  color: #ffffff80;
  margin-right: 20px;
}

.blog-item-title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
}

.blog-item-overlay-bg {
  z-index: -1;
  background-image: linear-gradient(to top, var(--secondary), #6a54ff00 96%);
  opacity: 0.6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.insights-image-holder {
  perspective: 350px;
  min-height: 50vh;
  position: relative;
}

.insights-person-holder {
  mix-blend-mode: multiply;
  background-image: linear-gradient(#fff0, #ffffff1a);
  border-radius: 5px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.insights-person-holder._2 {
  border: 1px solid var(--nav-line-gradient-3);
  top: 30%;
  left: 10%;
}

.insights-person-holder._3 {
  top: 3%;
  left: 40%;
}

.insights-person-holder._4 {
  border: 1px solid var(--secondary);
  top: 36%;
  left: 40%;
}

.insights-person-holder._5 {
  border: 1px solid var(--gradient-color-3);
  top: 60%;
  left: 10%;
}

.insights-person-holder._6 {
  top: 15%;
  left: 64%;
  transform: scale(0.9);
}

.insights-person-holder._7 {
  border: 1px solid var(--light-grey);
  top: 70%;
  left: 50%;
  transform: scale(1.1);
}

.insights-person-holder._8 {
  top: 46%;
  left: 70%;
}

.insights-person-holder._9 {
  inset: auto 0% 0% auto;
}

.insight-person {
  object-fit: contain;
  width: 70%;
  height: 70%;
  position: absolute;
}

.insights-hero-gradient-holder {
  opacity: 0.2;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0%;
}

.insights-persons-gradient {
  z-index: -1;
  background-image: linear-gradient(
    83deg,
    var(--primary),
    var(--gradient-color-3) 28%,
    var(--gradient-color-3) 46%,
    #30b6ff 62%,
    #00f0ff 75%,
    var(--secondary)
  );
  opacity: 0.5;
  filter: blur(150px);
  width: 100%;
  max-width: none;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 20% 0% auto;
}

.richtext-left {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-icon.small {
  z-index: 1;
  width: 20px;
  position: relative;
}

.stretch-content-horizontal {
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.social-icon-holder {
  background-color: #ffffff1a;
  border-radius: 41px;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  margin-bottom: 12px;
  margin-right: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.post-details-sticky {
  position: sticky;
  top: 100px;
}

.horizontal-line {
  background-color: var(--light-black);
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.horizontal-line.post-details {
  background-color: #fff3;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.social-icon-background {
  z-index: 0;
  background-image: linear-gradient(
    135deg,
    var(--primary),
    var(--gradient-color-3) 39%,
    var(--secondary)
  );
  position: absolute;
  inset: 0%;
}

.social-icons {
  flex-direction: column;
  display: flex;
}

.featured-blog-sub-content {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.post-image-details {
  border-radius: 10px;
  width: 100%;
}

.heading-display {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}

.card-item {
  background-image: linear-gradient(#222529, #222529);
  border-radius: 18px;
  flex-direction: row;
  flex: 1;
  justify-content: space-around;
  padding: 30px 25px;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #2b333d;
}

.card-item:hover {
  text-decoration: none;
}

.card-item.fadein-into-view {
  padding-top: 30px;
}

.post-details-grid {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  width: 100%;
}

.post-details-main-grid {
  grid-template-rows: auto;
  grid-template-columns: 100px 1fr;
}

.post-details-gradient {
  z-index: -1;
  background-image: linear-gradient(
    83deg,
    var(--primary),
    var(--gradient-color-3) 28%,
    var(--gradient-color-3) 46%,
    #30b6ff 62%,
    #00f0ff 75%,
    var(--secondary)
  );
  opacity: 0.3;
  filter: blur(150px);
  width: 70%;
  max-width: none;
  height: 60vh;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 150px 0% auto -20%;
}

.team-member-grid-social-media {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-gradient-bg-holder {
  z-index: -1;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  height: 40vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.footer-link-new-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  display: flex;
  position: relative;
}

.new-badge {
  background-image: linear-gradient(139deg, var(--primary), var(--secondary));
  text-transform: uppercase;
  border-radius: 3px;
  margin-left: 5px;
  padding: 2px 5px;
  font-size: 60%;
  position: relative;
  top: 1px;
}

.footer-name {
  color: #fff3;
  letter-spacing: -0.5vw;
  text-transform: uppercase;
  mix-blend-mode: overlay;
  padding-left: 3vw;
  padding-right: 3vw;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 16vw;
  font-style: italic;
  font-weight: 900;
  position: relative;
}

.footer-name._1,
.footer-name._2,
.footer-name._3 {
  color: #0003;
}

.footer-name-infinit {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 20vw;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
  overflow: hidden;
}

.footer-name-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1000vw;
  padding-left: 3vw;
  padding-right: 3vw;
  display: flex;
  position: absolute;
  inset: 0%;
}

.footer-gradient-background {
  opacity: 0.5;
  filter: blur(150px);
  background-image: linear-gradient(
    83deg,
    #ed1f41,
    #f60307 28% 46%,
    #ff8a23 62%,
    #fb6950 79%,
    #ff7c54
  );
  width: 100%;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0%;
}

.company-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.dashboard-app-perspective {
  transform-style: preserve-3d;
  position: absolute;
  inset: 0%;
  transform: none;
}

.dashboard-app-perspective._2 {
  height: 100%;
  inset: 0% 0% auto;
}

.blog-cta-image {
  margin-bottom: 1em;
}

.footer-cricle-bg {
  width: 180vw;
  max-width: none;
  height: 180vw;
  position: absolute;
}

.instructions-code {
  color: #fffc;
  background-color: #ffffff0d;
  border-radius: 12px;
  padding: 1em;
  font-style: italic;
}

.ios-app {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.ios-app-holder {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.nav-last-button-holder.phone {
  display: none;
}

.nav-menu-list-items {
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  display: flex;
}

.clients-list {
  z-index: 2;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 9938vw;
  display: flex;
  position: relative;
  overflow: visible;
}

.nav-text-gradient {
  background-image: linear-gradient(
    87deg,
    var(--primary),
    #30b6ff 50%,
    var(--secondary)
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 16px;
}

.tabs {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  display: flex;
}

.tabs-menu {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--light-black);
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 44px;
  padding: 4px;
  display: flex;
}

.tab-link {
  opacity: 0.45;
  color: #ffffff80;
  background-color: #fff0;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 36px;
  padding: 0 1.5em;
  font-size: 15px;
  transition: background-color 0.35s, color 0.35s;
  display: flex;
}

.tab-link:hover {
  color: #fffc;
  background-color: #ffffff0d;
}

.tab-link.w--current {
  opacity: 1;
  color: #fff;
  background-color: #f2efe7;
  width: 120px;
  box-shadow: 0 1px 5px #c7c3b8;
}

.tabs-content,
.tab-pane {
  width: 100%;
  overflow: visible;
}

.tab-card-grid {
  float: none;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--relume-library-lite-rl-white);
  color: #ed1f41;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  position: static;
}

.tab-feature-image {
  object-fit: cover;
  object-position: 0% 100%;
  width: 100%;
  max-width: none;
  height: 100%;
}

.tab-feature-image-holder {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  min-height: 150px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-right: -2em;
  display: flex;
}

.cta-clients {
  margin-left: -4em;
  margin-right: -4em;
  overflow: hidden;
}

.footer-download-buttons {
  grid-column-gap: 2em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.download-icon {
  width: 20px;
}

.features-hero-holder._1 {
  position: relative;
  top: 100px;
}

.features-hero-holder._1.hide {
  height: 300px;
  display: none;
}

.features-hero-holder._2.hide {
  display: none;
}

.features-hero-holder._3 {
  position: relative;
  top: 50px;
}

.features-hero-holder._3.hide {
  display: none;
}

.features-side-phones-holder {
  z-index: 1;
  background-color: #f6f3db;
  border-radius: 8px;
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.phone-grid-item {
  width: 100%;
  display: block;
  position: relative;
}

.ios-side-app-holder {
  border-radius: 20px;
  position: absolute;
  inset: 5% 10% 6%;
  overflow: hidden;
}

.features-side-phones-rotated {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 160%;
  margin-left: -200px;
  display: grid;
  position: absolute;
  inset: 0%;
  transform: scale(0.6) translate(-210px, -160px) rotate(-38deg);
}

.features-side-phones-left {
  width: 100%;
  margin-top: -800px;
}

.features-side-phones-mid {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
  top: -40%;
}

.features-side-phones-right {
  width: 100%;
  margin-top: -400px;
}

.side-iphone {
  width: 100%;
}

.feedback-image-holder {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0;
}

.team-image-gradient {
  opacity: 1;
  background-color: #e6e1c0;
  border-radius: 165px;
  width: 100%;
  height: 200%;
  display: inline-block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.team-image-gradient-holder {
  z-index: -1;
  opacity: 0.5;
  border-radius: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.team-member-job-position {
  color: #ff7585;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
}

.team-wrapper {
  width: 100%;
  display: block;
}

.symbol-color {
  color: #fff;
  background-color: #008548;
  padding-left: 5px;
  padding-right: 5px;
}

.buy-template-holder {
  z-index: 20;
  grid-column-gap: 10px;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.buy-template-link {
  grid-column-gap: 10px;
  opacity: 0.8;
  border: 1px solid #0003;
  border-radius: 6px;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.4s, opacity 0.4s, box-shadow 0.475s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.buy-template-link:hover {
  opacity: 1;
  color: #000;
  border-color: #4253ff;
  text-decoration: none;
  box-shadow: 0 6px 20px #0000003b;
}

.buy-this-template-button-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border-radius: 6px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  display: flex;
}

.buy-this-template-content {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.buy-this-template-text {
  color: #000;
  font-weight: 400;
}

.buy-webflow-template-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.webflow-icon {
  background-image: url("../images/webflow-blue-icon.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: block;
}

.buy-template-price {
  font-weight: 700;
}

.team-image-gradient-active {
  background-image: linear-gradient(
    to bottom,
    var(--light-black) 50%,
    var(--secondary)
  );
  opacity: 1;
  border-radius: 165px;
  width: 100%;
  height: 200%;
  display: inline-block;
  position: absolute;
  inset: -100% 0% 0%;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 2em;
}

.accordion-item-trigger {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: 1;
  cursor: pointer;
  justify-content: flex-start;
  align-items: flex-start;
  transition: opacity 0.35s;
  display: flex;
}

.accordion-item-trigger:hover {
  opacity: 0.7;
}

.accordion-icon {
  margin-top: 8px;
}

.accordion-arrow-bottom {
  width: 23px;
  min-width: 23px;
}

.accordion-item-content {
  width: 100%;
  padding-left: 30px;
  overflow: hidden;
}

.grid-faq {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
}

.accordion-title {
  margin-top: 0;
  font-size: 32px;
  font-weight: 600;
}

.dropdown {
  display: none;
}

.dropdown-toggle {
  color: #fff;
  width: 8.5em;
  margin-left: 10px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-toggle:hover {
  border-radius: 20px;
}

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

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

.dropdown-list.w--open {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #5858584d;
  border-radius: 10px;
  top: 50px;
}

.dropdown-link {
  color: var(--light-grey);
  font-size: 14px;
}

.dropdown-link:hover {
  color: var(--nav-line-gradient-3);
}

.dropdown-link-2 {
  color: var(--light-grey);
  font-size: 14px;
}

.dropdown-link-2:hover {
  color: var(--untitled-ui-primary200);
}

.dropdown-link-3 {
  color: var(--light-grey);
  font-size: 14px;
}

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

.grey20 {
  color: var(--dim-grey);
  text-align: center;
  max-width: 900px;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 400;
  display: block;
}

.grey20.uui-text-size-large-2 {
  text-align: center;
}

.justify-grey-dim {
  text-align: justify;
}

.small-secondary-text {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1;
}

.bold-text-2 {
  color: var(--light-grey);
  font-size: 22px;
  font-weight: 400;
}

.udesly-crt-glitch {
  font-size: 3rem;
  line-height: 1.2;
}

.udesly-code-snippet {
  display: none;
}

.udesly-typewriter-effect {
  text-align: center;
  font-size: 3rem;
  line-height: 1;
}

.udesly-paragraph {
  color: #afafaf;
}

.udesly-text-black {
  color: var(--accessible-components-dark-grey);
  font-size: 0.8rem;
  line-height: 2;
}

.udesly-seconds-left {
  background-image: linear-gradient(225deg, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  mix-blend-mode: lighten;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.5rem;
}

.udesly-unit-wrapper {
  text-align: center;
}

.udesly-minutes-left,
.udesly-hours-left,
.udesly-days-left {
  font-size: 2rem;
}

.udesly-countdown-wrapper {
  justify-content: space-around;
  width: 705px;
  margin-bottom: 0;
  padding-top: 10px;
  display: flex;
}

.udesly-date-block {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  display: none;
}

.icon-grey,
.icon-embed-xxsmall,
.icon-embed-xxsmall-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.fs_numbercount-1_message {
  color: var(--accessible-components-dark-grey);
}

.fs_numbercount-1_text {
  text-align: center;
}

.fs_numbercount-1_number {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.fs_numbercount-1_card {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  display: grid;
}

.fs_numbercount-1_wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  text-align: left;
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  padding: 2rem;
  display: grid;
  position: relative;
}

.fs_numbercount-1_embed {
  margin-bottom: 0;
}

.fs_numbercount-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.bold-text-3 {
  font-size: 25px;
}

.text-gradient-light-title {
  color: #f02d44;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  font-size: 56px;
}

.grey20-subtitle {
  color: var(--dim-grey);
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

.uui-button {
  grid-column-gap: 0.5rem;
  border: 1px solid var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary600);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  border-color: var(--untitled-ui-primary700);
  background-color: var(--untitled-ui-primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui-primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui-primary100);
}

.uui-button-secondary-gray {
  grid-column-gap: 0.5rem;
  border: 1px solid var(--untitled-ui-gray300);
  color: var(--untitled-ui-gray700);
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray:hover {
  background-color: var(--untitled-ui-gray50);
  color: var(--untitled-ui-gray800);
}

.uui-button-secondary-gray:focus {
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui-gray100);
  background-color: #fff;
}

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

.uui-button-row.button-row-center {
  justify-content: center;
}

.uui-text-size-medium {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-space-xxsmall {
  width: 100%;
  min-height: 0.5rem;
}

.uui-heading-xxsmall {
  color: var(--light-grey);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.uui-space-small {
  width: 100%;
  min-height: 1.5rem;
}

.uui-icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-icon-featured-outline-large {
  border: 0.5rem solid var(--untitled-ui-primary50);
  background-color: var(--untitled-ui-primary100);
  color: var(--untitled-ui-primary600);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.uui-layout84_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-layout84_right {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.uui-layout84_image-blob {
  z-index: -1;
  color: var(--untitled-ui-gray50);
  width: 34rem;
  height: auto;
  position: absolute;
  top: 12%;
}

.uui-layout84_image {
  object-fit: cover;
  height: 100%;
  max-height: 40rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-left: 1rem;
}

.uui-layout84_image-wrapper {
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.uui-layout84_left {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.uui-layout84_content-bottom {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: grid;
}

.uui-text-size-large {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-space-xsmall {
  width: 100%;
  min-height: 1rem;
}

.uui-heading-medium {
  color: var(--untitled-ui-gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-heading-subheading {
  color: var(--untitled-ui-primary600);
  margin-bottom: 0.75rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-max-width-large {
  width: 100%;
  max-width: 48rem;
}

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

.uui-layout84_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-padding-vertical-xhuge {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

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

.uui-page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-layout14_image {
  width: 48rem;
  min-width: 48rem;
  position: absolute;
  inset: auto auto auto 3rem;
}

.uui-layout14_image-wrapper {
  background-color: var(--untitled-ui-gray100);
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 33rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.uui-layout14_item-list {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  margin-bottom: 2.5rem;
}

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

.card-image-mac {
  z-index: 1;
  width: 48.8em;
  position: relative;
  overflow: hidden;
}

.mac-app-holder {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.feature-icon-2 {
  color: #fafafa;
  object-fit: contain;
  background-color: #f1f1f126;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  padding: 5px;
}

.udesly-crt-glitch-2 {
  font-size: 3rem;
  line-height: 1.2;
}

.udesly-glitched {
  text-align: left;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.udesly-overflow-hidden {
  overflow: hidden;
}

.udesly-code-snippet-2 {
  display: none;
}

.udesly-izar-effect {
  text-align: center;
  min-height: 4rem;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1;
}

.udesly-text-effect-wrapper {
  height: 4rem;
}

.udesly-morph {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
}

.udesly-text-morph-block {
  text-align: center;
  height: 4rem;
  position: relative;
}

.text-gradient-colourful {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 41px;
}

.text-gradient-colorful {
  background-image: linear-gradient(
    87deg,
    var(--primary),
    var(--gradient-color-3) 57%,
    var(--secondary)
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
}

.greywhite20 {
  color: var(--bg-grey);
  text-align: justify;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.div-block-2 {
  margin-top: 80px;
  padding-top: 0;
  padding-bottom: 50px;
}

.progress-bar {
  background-color: #f1f1f126;
  border-radius: 20px;
  width: 100%;
  padding-bottom: 0;
}

._751progress {
  background-color: #4ffef8;
  border-radius: 20px;
  width: 75%;
  padding-bottom: 7px;
}

._752progress {
  background-color: #fd4ffe;
  border-radius: 20px;
  width: 75%;
  padding-bottom: 7px;
}

._801progress {
  background-color: var(--secondary);
  border-radius: 20px;
  width: 80%;
  padding-bottom: 7px;
}

._951progress {
  background-color: #1bea9e;
  border-radius: 20px;
  width: 95%;
  padding-bottom: 7px;
}

._501progress {
  background-color: #f8b26b;
  border-radius: 20px;
  width: 50%;
  padding-bottom: 7px;
}

._502progress {
  background-color: #f86b6b;
  width: 50%;
  padding-bottom: 7px;
}

.progresstext {
  color: var(--light-grey);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.white-50pct-center {
  color: #ffffff80;
}

.text-gradient-light-benefit {
  color: #222938;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: 698px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 50px;
}

.feedback-div {
  width: 1.5em;
}

.feedback-div.hide {
  display: none;
}

.talk-to-us {
  background-image: linear-gradient(
    87deg,
    var(--primary),
    var(--gradient-color-3) 57%,
    var(--secondary)
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 95px;
}

.nav-link-holder-home,
.nav-link-holder-talk-to-us {
  padding-left: 10px;
}

.link-background-white {
  z-index: -1;
  background-image: linear-gradient(65deg, var(--primary), var(--secondary));
  border-radius: 100px;
  position: absolute;
  inset: 0%;
}

.link-background-white.white-link-bg {
  background-color: #fff;
  background-image: none;
}

.card-device-combination {
  z-index: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.device-app-holder {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.uui-heroheader06_image-02 {
  z-index: 2;
  width: 15.25rem;
  min-width: 15.25rem;
  position: absolute;
  inset: auto 0% 1% -8%;
}

.uui-heroheader06_image-01 {
  border: 0.25rem solid var(--untitled-ui-gray900);
  border-radius: 0.625rem;
  width: 48rem;
  min-width: 48rem;
  position: absolute;
  inset: 0% auto 0% 12%;
}

.uui-heroheader06_image-01.shadow-xxlarge.hide-mobile-landscape {
  border-width: 0.8rem;
  border-color: var(--black);
  bottom: 1%;
  left: 8%;
}

.uui-heroheader06_image-wrapper {
  height: 100%;
  min-height: 36rem;
  position: relative;
}

.uui-button-row-2 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-space-large {
  width: 100%;
  min-height: 3rem;
}

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

.uui-text-size-xlarge {
  color: var(--untitled-ui-gray600);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.uui-space-small-2 {
  width: 100%;
  min-height: 1.5rem;
}

.uui-heading-xlarge {
  color: var(--untitled-ui-gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.2;
}

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

.uui-padding-vertical-xhuge-2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

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

.uui-page-padding-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-section_heroheader06 {
  background-color: var(--untitled-ui-gray50);
  overflow: hidden;
}

.device-combination {
  z-index: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ios-device-holder {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 5% 9.5% 5% 9%;
  overflow: hidden;
}

.ios-device-img {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.ipad-device-holder {
  border-radius: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.ipad-device-img {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 87%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.uui-button-2 {
  grid-column-gap: 0.5rem;
  border: 1px solid var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary600);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-2:hover {
  border-color: var(--untitled-ui-primary700);
  background-color: var(--untitled-ui-primary700);
}

.uui-button-2:focus {
  background-color: var(--untitled-ui-primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui-primary100);
}

.uui-button-secondary-gray-2 {
  grid-column-gap: 0.5rem;
  border: 1px solid var(--untitled-ui-gray300);
  color: var(--untitled-ui-gray700);
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray-2:hover {
  background-color: var(--untitled-ui-gray50);
  color: var(--untitled-ui-gray800);
}

.uui-button-secondary-gray-2:focus {
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui-gray100);
  background-color: #fff;
}

.uui-button-row-3 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-button-row-3.button-row-center {
  justify-content: center;
}

.uui-text-size-medium-2 {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.uui-space-xxsmall-2 {
  width: 100%;
  min-height: 0.5rem;
}

.uui-heading-xxsmall-2 {
  color: var(--untitled-ui-gray900);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-space-small-3 {
  width: 100%;
  min-height: 1.5rem;
}

.uui-icon-1x1-xsmall-2 {
  color: #f9fafb;
  width: 1.5rem;
  height: 1.5rem;
}

.uui-icon-featured-outline-large-2 {
  color: #7f56d9;
  background-color: #0000;
  background-image: linear-gradient(0deg, #f02f44cc, #fe7453cc);
  border: 0.5rem solid #f1f0ec;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.uui-layout84_item-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: static;
}

.uui-layout84_item-2._1 {
  padding-left: 0;
  position: relative;
  left: 60px;
}

.uui-layout84_item-2._4 {
  position: relative;
  right: 60px;
}

.uui-layout84_right-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.uui-layout84_image-blob-2 {
  z-index: -1;
  color: var(--untitled-ui-gray50);
  background-color: #0000;
  width: 30rem;
  height: auto;
  position: absolute;
  top: 12%;
}

.uui-layout84_image-2 {
  object-fit: cover;
  height: 100%;
  max-height: 40rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-left: 1rem;
}

.uui-layout84_image-2.hide {
  display: block;
}

.uui-layout84_image-wrapper-2 {
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.uui-layout84_left-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.uui-layout84_content-bottom-2 {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.75fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  margin-top: 4rem;
  margin-bottom: 0;
  display: grid;
}

.uui-text-size-large-2 {
  color: #8b8b8b;
  text-align: center;
  letter-spacing: normal;
  max-width: 800px;
  margin-top: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.uui-space-xsmall-2 {
  width: 100%;
  min-height: 1rem;
}

.uui-heading-medium-2 {
  color: var(--untitled-ui-gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-heading-subheading-2 {
  color: var(--untitled-ui-primary600);
  margin-bottom: 0.75rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-max-width-large-2 {
  width: 100%;
  max-width: 48rem;
  margin-top: 40px;
  padding-top: 0;
}

.uui-text-align-center-2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.uui-layout84_component-2 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-padding-vertical-xhuge-3 {
  padding-top: 40px;
  padding-bottom: 100px;
}

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

.uui-page-padding-3 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ios-device-holder-center {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.ios-device-img-center {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.booking-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #67779b, #707070 50%, #202020);
  -webkit-background-clip: text;
  background-clip: text;
  border: 0 #fa3d3d00;
  font-size: 41px;
}

.uui-text-size-medium-3 {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-icon-featured-outline-large-3 {
  border: 0.5rem solid var(--untitled-ui-primary50);
  background-color: var(--untitled-ui-primary100);
  color: var(--untitled-ui-primary600);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.uui-layout82_item {
  flex-direction: column;
  align-items: center;
}

.uui-layout82_list {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  width: 100%;
}

.uui-space-medium {
  width: 100%;
  min-height: 2rem;
}

.uui-text-size-large-3 {
  color: #67779b;
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.uui-layout82_content {
  flex-direction: column;
  align-items: center;
}

.uui-layout82_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 0.5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.uui-padding-vertical-xhuge-4 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.efi-arrow-icon {
  width: 40px;
  height: 40px;
}

.efi-ft-10-feature {
  cursor: pointer;
  background-color: #eee;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  min-height: 400px;
  padding: 10px 20px 20px;
  transition: all 0.7s;
  display: flex;
}

.efi-ft-10-feature:hover {
  filter: invert();
}

.efi-ft-10-features-grid {
  grid-column-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.ft-10-text-block {
  font-size: 18px;
  font-weight: 700;
}

.ft-10-tab-link {
  background-color: #0000;
  padding-left: 0;
  padding-right: 20px;
}

.ft-10-tab-link.w--current {
  color: #bdbdbd;
  background-color: #0000;
  padding-left: 0;
  padding-right: 20px;
}

.efi-ft-10-tabs-menu {
  margin-bottom: 30px;
}

.efi-ft-10-grid {
  grid-template-rows: auto;
  margin-bottom: 100px;
}

.efi-ft-10-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.efi-ft-10 {
  padding: 100px 3%;
}

.efi-accordion-paragraph {
  color: #202020;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.efi-ft-09-content {
  overflow: hidden;
}

.efi-h4 {
  font-size: 24px;
}

.efi-ft-09-bar {
  color: #1a1e27;
  border-bottom: 1px solid #00000012;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
}

.efi-ft-09-accordion-wrap {
  cursor: pointer;
  padding-left: 0;
  padding-right: 0;
}

.efi-ft-09-accordion-bottom-bar {
  width: 100%;
  height: 1px;
}

.efi-ft-09-accordion {
  margin-left: auto;
  margin-right: auto;
}

.efi-ft-09-grid {
  grid-column-gap: 75px;
  grid-template-rows: auto;
  margin-bottom: 75px;
}

.efi-ft-09-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.efi-ft-09 {
  padding: 100px 3%;
}

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

.f-gallery-image-side {
  height: 400px;
}

.f-gallery-lightbox-small {
  width: 100%;
}

.f-gallery-image-x-tall {
  height: 550px;
}

.f-gallery-lightbox {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-gallery-three-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

.f-h3-heading {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-heading-detail-small {
  color: var(--flowui-component-library-gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-margin-bottom-08 {
  margin-bottom: 8px;
}

.f-title-wrapper-center {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.f-margin-bottom-48 {
  margin-bottom: 48px;
}

.f-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-section-large {
  padding: 92px 5%;
  position: relative;
}

.f-paragraph-regular {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.f-icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color 0.2s;
  display: flex;
}

.f-career-icon-wrapper {
  background-color: var(--flowui-component-library-gray-100);
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.f-career-detail {
  grid-column-gap: 12px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.f-career-detail-row {
  grid-column-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.f-paragraph-large {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.f-career-button-primary {
  background-color: var(--flowui-component-library-gray-900);
  color: var(--flowui-component-library-white);
  text-align: center;
  letter-spacing: -0.02em;
  border-radius: 48px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.f-career-button-primary:hover {
  background-color: var(--flowui-component-library-gray-700);
}

.f-career-badge {
  background-color: var(--flowui-component-library-gray-100);
  color: var(--flowui-component-library-gray-500);
  text-align: center;
  border-radius: 24px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
}

.f-h5-heading {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.4;
}

.f-career-title-wrapper {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.f-career-top-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.f-career-content-wrapper {
  width: 100%;
}

.f-career-card {
  border: 1px solid #e4e6f1;
  border-radius: 12px;
  align-items: flex-start;
  padding: 40px;
  transition: box-shadow 0.3s;
  display: flex;
}

.f-career-card:hover {
  box-shadow: 0 48px 140px -48px #393b6a29;
}

.f-grid-one-column {
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.f-career-tab-content {
  margin-left: 10%;
}

.f-career-tab-link {
  color: #1b114a;
  letter-spacing: -0.01em;
  background-color: #0000;
  border-radius: 4px;
  min-width: 295px;
  margin-bottom: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.f-career-tab-link.w--current {
  background-color: #f3f5fb;
}

.f-career-tab-menu-vertical {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.f-career-tabs {
  flex-direction: row;
  display: flex;
}

.f-margin-bottom-12 {
  margin-bottom: 12px;
}

.f-margin-bottom-32 {
  margin-bottom: 32px;
}

.card-copy {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-copy.card-no-bottom-padding {
  padding-bottom: 0;
}

.card-copy.feedback-card {
  min-height: 100%;
  padding: 1.5em;
}

.card-copy.card-cta {
  grid-column-gap: 10em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.3fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-copy.job-position-card {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 2em;
  display: flex;
}

.card-copy.team-social-media-card {
  min-height: auto;
  padding: 1.5em;
}

.card-copy.card-tab-feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.card-copy.pricing-card {
  height: 100%;
  padding: 2em;
}

.card-copy.pricing-card.main-pricing-card {
  height: 110%;
  top: -5%;
}

.ios-device-perspective {
  transform-style: preserve-3d;
  position: absolute;
  inset: 0%;
  transform: none;
}

.ios-device-perspective._2 {
  height: 100%;
  inset: 0% 0% auto;
}

.nav-link-dropdown {
  z-index: 1;
  color: #fffc;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 30px 10px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: relative;
}

.nav-link-dropdown:hover {
  background-image: linear-gradient(65deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 20px;
}

.nav-link-dropdown.w--current {
  color: #fff;
  border-radius: 20px;
}

.rl-text-style-regular {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_layout28_spacing-block-1 {
  width: 100%;
  padding-bottom: 1rem;
}

.rl-heading-style-h4 {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.rl_layout28_tabs-link {
  background-color: #0000;
  border-left: 2px solid #0000;
  padding: 0 0 0 2rem;
  display: block;
}

.rl_layout28_tabs-link.w--current {
  border-left-color: var(--relume-library-lite-rl-black);
  opacity: 1;
  background-color: #0000;
}

.rl_layout28_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

.rl-padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.rl_section_layout28 {
  background-color: var(--relume-library-lite-rl-white);
}

.text-gradient-light-copy {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 41px;
}

.darkblue20 {
  color: var(--dim-grey);
  text-align: justify;
  margin-bottom: 50px;
  font-size: 20px;
}

.heading-3 {
  font-size: 44px;
}

.fn-button-secondery {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 137px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color 0.25s;
  display: flex;
}

.fn-button-secondery:hover {
  background-color: #3e4545;
}

.fn-button {
  color: #0f1213;
  text-align: center;
  background-color: #df0;
  border: 1px solid #df0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity 0.25s, border-color 0.25s;
  display: flex;
}

.fn-button:hover {
  opacity: 0.9;
  border-color: #0f1213;
}

.fn-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.fh-features-image-wrapper {
  border-radius: 24px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.fn-featured-tabs-content-wrapper {
  width: 100%;
}

.fn-featured-tabs-content {
  width: 45%;
  display: flex;
  position: absolute;
  inset: 0% 15px 0% auto;
}

.fn-tabs-paragraph {
  text-align: justify;
  flex: none;
  overflow: hidden;
}

.fn-tabs-link-title-icon {
  color: #df0;
  object-fit: contain;
  width: 19px;
  height: 19px;
}

.fn-tabs-link-title {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #cdd3d2;
  align-items: center;
  display: flex;
}

.fn-tabs-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #939b9b;
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  transition: opacity 0.25s;
  display: flex;
}

.fn-tabs-link:hover {
  opacity: 0.8;
  color: #939b9b;
}

.fn-tabs-link.w--current {
  background-color: #0f1213;
}

.fn-featured-tabs-menu {
  flex-direction: column;
  display: flex;
}

.fn-featured-tabs {
  width: 100%;
  margin-bottom: 32px;
  position: static;
}

.fn-paragraph {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-heading-2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}

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

.fn-container-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.fn-container-grid.relative {
  min-height: 700px;
  position: relative;
}

.fn-section {
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.left-brain-tab-title {
  color: var(--untitled-ui-gray900);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.mac-frame {
  object-fit: cover;
  height: 100%;
  max-height: 40rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-left: 1rem;
}

.mac-device-holder-center {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.mac-device-img-center {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.grid-3-features-2 {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-item-content-2 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.text-gradient-light-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
}

.grey-dim-2 {
  color: #878d95;
}

.container-4 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.white-50pct-2 {
  color: #ffffff80;
}

.card-side-content-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.text-gradient-light-3 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 39px;
}

.section-2 {
  z-index: 1;
  background-color: #0f0f11;
  padding-top: 30px;
  padding-bottom: 10px;
  position: relative;
}

.ios-app-holder-2 {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.iphone-2 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-height: 680px;
}

.ios-app-2 {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.grid-3-features-3 {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-item-content-3 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.feature-icon-3 {
  background-image: linear-gradient(
    to bottom,
    var(--primary),
    #6958fa 46%,
    var(--secondary)
  );
  -webkit-text-fill-color: transparent;
  object-fit: contain;
  -webkit-background-clip: text;
  background-clip: text;
  width: 35px;
  height: 35px;
  font-size: 16px;
}

.heading-4-style-2 {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
}

.grey-dim-3 {
  color: #878d95;
}

.features-card-heading-2 {
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 26px;
}

.text-gradient-light-4 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 41px;
}

.icon-grey-2 {
  color: #ed1f41;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.grey-dim-4 {
  color: #878d95;
  font-size: 16px;
}

.grid-3-features-4 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-3-features-4.hide {
  display: none;
}

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

.features-card-heading-3 {
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 26px;
}

.text-gradient-light-5 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #67779b, #707070 50%, #202);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 22px;
}

.text-span-4 {
  color: var(--bg-grey);
  font-size: 14px;
}

.text-span-5.text-gradient-colorful {
  font-size: 24px;
  font-weight: 500;
}

.mac-app-holder-2 {
  object-fit: contain;
  width: 45em;
  height: 24.5em;
  position: absolute;
  top: 7%;
  left: -1%;
}

.ios-device-holder-reunion {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 5% 9.5% 5% 9%;
  overflow: hidden;
}

.ios-device-img-reunion {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.mac-app {
  z-index: -1;
  object-fit: contain;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.nav-link-holder-about-us {
  padding-left: 10px;
}

.mac-app-holder-3 {
  width: 45em;
  height: 25.5em;
  position: absolute;
  top: 7%;
  left: 5%;
}

.dropdown-link-4 {
  color: var(--light-grey);
  font-size: 14px;
}

.dropdown-link-4:hover {
  color: #8ae89c;
}

.dropdown-link-5 {
  color: var(--light-grey);
  font-size: 14px;
}

.dropdown-link-5:hover {
  color: var(--untitled-ui-primary300);
}

.dropdown-link-6 {
  color: var(--light-grey);
  font-size: 14px;
}

.dropdown-link-6:hover {
  color: #56fc75;
}

.dropdown-link-7 {
  color: var(--light-grey);
  font-size: 14px;
}

.dropdown-link-7:hover {
  color: var(--untitled-ui-primary500);
}

.dropdown-link-8 {
  color: var(--light-grey);
  font-size: 14px;
}

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

.button-download {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--black);
  text-transform: none;
  background-color: #fff;
  background-image: linear-gradient(#f6f6f6, #ebebeb);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.35s, background-color 0.35s,
    opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.button-download:hover {
  opacity: 0.9;
  color: #0f0f11cc;
}

.button-download.with-icon {
  background-image: url("../images/White-Arrow.svg"),
    linear-gradient(73deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: left;
  background-position: 80%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 14px, auto;
  padding-right: 65px;
  transition-property: color, background-color, background-position;
}

.button-download.with-icon:hover {
  opacity: 1;
  color: #fff;
  background-position: 83%, 0 0;
}

.button-download.button-cta {
  background-image: none;
  border-radius: 100px;
  min-width: 250px;
}

.button-download.empty-button {
  color: #fff;
  background-color: #fff0;
  background-image: none;
  border: 1px solid #fff;
}

.button-download.empty-button:hover {
  background-color: #ffffff1a;
}

.button-download.download-button {
  text-transform: uppercase;
  height: 70px;
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 20px;
}

.text-gradient-colored-small {
  background-image: linear-gradient(
    87deg,
    var(--primary),
    var(--gradient-color-3) 57%,
    var(--secondary)
  );
  color: #000;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 95px;
  line-height: 0;
}

.progress-div {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.secondary-page-title-talk-to-us {
  margin-top: 0;
  margin-bottom: 0;
}

.button-say-hello {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--black);
  text-transform: none;
  background-color: #fff;
  background-image: linear-gradient(#f6f6f6, #ebebeb);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.35s, background-color 0.35s,
    opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.button-say-hello:hover {
  opacity: 0.9;
  color: #0f0f11cc;
}

.button-say-hello.with-icon {
  background-image: url("../images/White-Arrow.svg"),
    linear-gradient(73deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: left;
  background-position: 80%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 14px, auto;
  padding-right: 65px;
  transition-property: color, background-color, background-position;
}

.button-say-hello.with-icon:hover {
  opacity: 1;
  color: #fff;
  background-position: 83%, 0 0;
}

.button-say-hello.button-cta {
  background-image: none;
  border-radius: 100px;
  min-width: 250px;
}

.button-say-hello.empty-button {
  color: #fff;
  background-color: #fff0;
  background-image: none;
  border: 1px solid #fff;
}

.button-say-hello.empty-button:hover {
  background-color: #ffffff1a;
}

.button-say-hello.download-button {
  text-transform: uppercase;
  height: 70px;
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 20px;
}

.container-5 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.container-5.clients-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.feedback {
  z-index: 1;
  background-color: var(--black);
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
}

.feedback.ligher-grey-bg {
  background-color: var(--light-black);
  display: block;
  overflow: hidden;
}

.feedback.ligher-grey-bg.zindex-3 {
  z-index: 3;
}

.feedback.ligher {
  background-color: var(--light-black);
}

.feedback.ligher.zindex-3 {
  z-index: 3;
}

.grid-clients-first {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-clients-first._1 {
  display: none;
}

.hero-content-2 {
  z-index: 2;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.text-gradient-colored-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(87deg, #3de85d, #03f6f4 57%, #6a54ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 100px;
}

.hero-text-3 {
  font-size: 16px;
}

.hero-buttons-holder-2 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.button-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #0f0f11;
  text-transform: none;
  background-color: #fff;
  background-image: linear-gradient(#f6f6f6, #ebebeb);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.35s, background-color 0.35s,
    opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.button-2:hover {
  opacity: 0.9;
  color: #0f0f11cc;
}

.button-2.with-icon {
  color: #fff;
  text-align: left;
  background-image: url("../images/White-Arrow.svg"),
    linear-gradient(73deg, #3de85d, #6a54ff);
  background-position: 80%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 14px, auto;
  padding-right: 65px;
  transition-property: color, background-color, background-position;
}

.button-2.with-icon:hover {
  opacity: 1;
  color: #fff;
  background-position: 83%, 0 0;
}

.hero-text-4 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 55px;
  font-weight: 600;
}

.hero-text-4.text-gradient-light {
  font-size: 70px;
}

.grid-3-features-5 {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-item-content-4 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.heading-4-style-3 {
  margin-top: 10px;
  font-size: 27px;
  font-weight: 600;
}

.grey-dim-5 {
  color: #878d95;
  text-align: justify;
  font-size: 16px;
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: block;
}

.footer-image-2 {
  width: 100%;
  max-width: 120px;
}

.container-6 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em 2em;
}

.subscribe-button-2 {
  color: #0f0f11;
  background-color: #fff;
  border: 0 solid #000;
  border-radius: 0 8px 8px 0;
  width: 100px;
  height: 100%;
  padding: 5px;
  font-weight: 400;
  transition: background-color 0.35s;
  position: absolute;
  inset: auto 0% 0% auto;
}

.subscribe-button-2:hover {
  background-color: #ffffffe6;
}

.new-badge-2 {
  text-transform: uppercase;
  background-image: linear-gradient(139deg, #3de85d, #6a54ff);
  border-radius: 3px;
  margin-left: 5px;
  padding: 2px 5px;
  font-size: 60%;
  position: relative;
  top: 1px;
}

.footer-content-2 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 3em;
  display: grid;
}

.footer-logo-link-2 {
  opacity: 1;
  flex: 0 auto;
  transition-property: opacity;
  display: inline-block;
}

.footer-logo-link-2:hover {
  opacity: 0.8;
}

.success-message-2 {
  color: #fff;
  background-color: #ffffff1a;
  border: 0 #3de85d;
  border-radius: 8px;
  padding: 1em;
}

.social-media-icon-2 {
  opacity: 0.7;
  filter: invert();
  width: 20px;
  height: 20px;
}

.link-background-2 {
  z-index: -1;
  background-image: linear-gradient(65deg, #3de85d, #6a54ff);
  border-radius: 100px;
  position: absolute;
  inset: 0%;
}

.button-3 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #0f0f11;
  text-transform: none;
  background-color: #fff;
  background-image: linear-gradient(#f6f6f6, #ebebeb);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.35s, background-color 0.35s,
    opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.button-3:hover {
  opacity: 0.9;
  color: #0f0f11cc;
}

.button-3.download-button {
  text-transform: uppercase;
  height: 70px;
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 20px;
}

.card-item-content-5 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.grey-dim-6 {
  color: #878d95;
  text-align: justify;
}

.mobile-content-tms {
  display: none;
}

.card-colored-bg-3 {
  z-index: -1;
  opacity: 1;
  background-color: #d0d5dd;
  position: absolute;
  inset: 0%;
  box-shadow: 0 1px 20px #00183f4d;
}

.mobile-content-dep,
.mobile-content-crm {
  display: none;
}

.content-dapp {
  max-width: 600px;
}

.card-col {
  z-index: -1;
  background-image: linear-gradient(
    87deg,
    var(--primary),
    #03f6f4b3 44%,
    var(--secondary)
  );
  opacity: 1;
  position: absolute;
  inset: 0%;
}

.mobile-content-smg {
  display: none;
}

.content-erp {
  max-width: 600px;
}

.mobile-content-erp,
.mobile-content-dapp {
  display: none;
}

.mac-app-holder-4 {
  object-fit: cover;
  width: 45em;
  height: 25.5em;
  position: absolute;
  top: 7%;
  left: -6%;
}

.card-image {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-image.card-no-bottom-padding {
  padding-bottom: 0;
}

.card-image.feedback-card {
  min-height: 100%;
  padding: 1.5em;
}

.card-image.card-cta {
  grid-column-gap: 10em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.3fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-image.job-position-card {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 2em;
  display: flex;
}

.card-image.team-social-media-card {
  min-height: auto;
  padding: 1.5em;
}

.card-image.card-tab-feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.card-image.pricing-card {
  height: 100%;
  padding: 2em;
}

.card-image.pricing-card.main-pricing-card {
  height: 110%;
  top: -5%;
}

.card-image.card-no-bottom-padding {
  min-height: 700px;
  padding-bottom: 0;
}

.mobile-content-smg-copy {
  display: none;
}

.card-mac {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  max-width: 600px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-mac.card-no-bottom-padding {
  max-width: 450px;
  height: 100%;
  padding-bottom: 0;
}

.card-mac.feedback-card {
  min-height: 100%;
  padding: 1.5em;
}

.card-mac.card-cta {
  grid-column-gap: 10em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.3fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-mac.job-position-card {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 2em;
  display: flex;
}

.card-mac.team-social-media-card {
  min-height: auto;
  padding: 1.5em;
}

.card-mac.card-tab-feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.card-mac.pricing-card {
  height: 100%;
  padding: 2em;
}

.card-mac.pricing-card.main-pricing-card {
  height: 110%;
  top: -5%;
}

.card-mac.card-no-bottom-padding {
  min-height: 700px;
  padding-bottom: 0;
}

.small-card {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 0;
  padding: 4em 4em 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.small-card.card-no-bottom-padding {
  max-width: 450px;
  height: 100%;
  padding-bottom: 0;
}

.small-card.feedback-card {
  min-height: 100%;
  padding: 1.5em;
}

.small-card.card-cta {
  grid-column-gap: 10em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.3fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.small-card.job-position-card {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 2em;
  display: flex;
}

.small-card.team-social-media-card {
  min-height: auto;
  padding: 1.5em;
}

.small-card.card-tab-feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.small-card.pricing-card {
  height: 100%;
  padding: 2em;
}

.small-card.pricing-card.main-pricing-card {
  height: 110%;
  top: -5%;
}

.small-card.card-no-bottom-padding {
  min-height: 700px;
  padding-bottom: 0;
}

.mobile-content-mlm {
  display: none;
}

.text-span-7 {
  text-decoration: none;
}

.text-span-8 {
  color: #202020;
  font-weight: 500;
}

.genius-img-holder {
  z-index: -1;
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 3% 6% 0%;
  overflow: hidden;
}

.genius-img {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.card-image-iphone-copy {
  z-index: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.udesly-code-snippet-3 {
  display: none;
}

.udesly-izar-effect-2 {
  text-align: left;
  min-height: 4rem;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.2;
}

.udesly-text-effect-wrapper-2 {
  height: 4rem;
}

.udesly-code-snippet-4 {
  display: none;
}

.udesly-izar-effect-3 {
  text-align: left;
  min-height: 4rem;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.2;
}

.udesly-text-effect-wrapper-3 {
  height: 4rem;
  margin-bottom: 15px;
}

.countdown-div {
  justify-content: center;
  display: flex;
}

.udesly-vega-effect {
  color: #000;
  text-align: left;
  white-space: normal;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1;
}

.udesly-text-effect-wrapper-4 {
  height: 4rem;
}

.heading-5 {
  margin-top: 20px;
}

.nav-link-ttu {
  z-index: 1;
  color: #fffc;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: relative;
}

.nav-link-ttu:hover,
.nav-link-ttu.w--current {
  color: #fff;
}

.text-block-2,
.text-block-3 {
  font-size: 14px;
}

.text-block-3:active {
  color: #fff;
  text-align: left;
}

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

.rl_gallery21_slide-nav {
  height: 1.75rem;
  font-size: 0.5rem;
  inset: auto auto 0% 0%;
}

.rl_gallery21_arrow-icon {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.rl_gallery21_arrow-right {
  border: 1px solid var(--relume-library-lite-rl-black);
  background-color: var(--relume-library-lite-rl-white);
  color: var(--relume-library-lite-rl-black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.rl_gallery21_arrow-left {
  border: 1px solid var(--relume-library-lite-rl-black);
  background-color: var(--relume-library-lite-rl-white);
  color: var(--relume-library-lite-rl-black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 4rem 0% auto;
}

.rl_gallery21_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.rl_gallery21_image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.rl_gallery21_lightbox-link {
  width: 100%;
}

.rl_gallery21_slide {
  padding-right: 2rem;
}

.rl_gallery21_mask {
  width: 50%;
  overflow: visible;
}

.rl_gallery21_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 5rem;
  position: relative;
}

.rl_gallery21_spacing-block-1 {
  width: 100%;
  padding-bottom: 0;
}

.rl-text-style-medium {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_blog33_spacing-block-2 {
  color: var(--black);
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.rl-heading-style-h2 {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.rl_gallery21_heading-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  display: grid;
}

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

.rl-padding-section-large-2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.rl-padding-global-2 {
  width: 100%;
  min-width: 800px;
  padding-left: 5%;
  padding-right: 5%;
}

.rl_section_gallery21 {
  background-color: var(--relume-library-lite-rl-white);
  border-radius: 30px;
  min-width: 800px;
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: visible;
}

.waves-image-gallery-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.waves-small-image-wrap-gallery-3 {
  border-radius: 8px;
  height: 70%;
  position: relative;
  overflow: hidden;
}

.waves-big-image-wrap-gallery-3 {
  border-radius: 8px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.waves-medium-image-wrap-gallery-3 {
  border-radius: 8px;
  height: 80%;
  position: relative;
  overflow: hidden;
}

.waves-bottom-gird-gallery-3 {
  grid-template-rows: auto;
  grid-template-columns: 0.9fr 0.8fr 1.2fr 0.7fr;
  width: 120vw;
  height: 39vh;
  margin-bottom: 0;
}

.waves-top-grid-gallery-3 {
  grid-template-rows: auto;
  grid-template-columns: 0.7fr 1.2fr 0.8fr 0.9fr;
  width: 120vw;
  height: 39vh;
  margin-bottom: 16px;
}

.waves-master-gallery-3 {
  height: auto;
  position: sticky;
  top: 10vh;
  overflow: hidden;
}

.waves---section-medium {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-span-12 {
  color: #fff;
}

.text-container-team {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2em;
  display: flex;
}

.text-container-team.left-align {
  text-align: left;
  align-items: flex-start;
  padding-bottom: 2em;
  font-style: normal;
}

.text-container-copy {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-container-copy.left-align {
  text-align: left;
  align-items: flex-start;
  padding-bottom: 2em;
  font-style: normal;
}

.waves-image-gallery-1 {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
}

.waves---paragraph-big {
  font-size: 20px;
  line-height: 130%;
}

.waves-text-wrap-gallery-1 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.waves-column-gallery-1 {
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

.waves-grid-gallery-1 {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.5fr;
}

.waves-master-gallery-1 {
  width: 100%;
  max-width: 1122px;
  margin-left: auto;
  margin-right: auto;
}

.waves---main-container {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-2 {
  padding-top: 0;
  padding-bottom: 100px;
}

.lightbox-link {
  max-height: 500px;
}

.cf-pricing-plan-pointer-text-18px {
  color: #000c;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.cf-pricing-plan-check-icon {
  width: 28px;
  height: 28px;
  margin-right: 16px;
}

.cf-pricing-plan-pointers {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.cf-pricing-plan-pointers.no-margin {
  margin-bottom: 0;
}

.cf-pricing-plan-pointer-container {
  margin-top: 40px;
}

.cf-body---18px {
  color: #000c;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}

.cf-h3-heading-40px {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
}

.cf-h3-heading-40px.margin-bottom-32px {
  margin-bottom: 32px;
}

.cf-different-tabs-content {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.cf-different-tab-image {
  background-color: var(--light-grey);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  width: 32px;
  height: auto;
  margin-right: 16px;
}

.cf-different-tab-link {
  opacity: 0.3;
  letter-spacing: -0.01em;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  display: flex;
}

.cf-different-tab-link.w--current {
  opacity: 1;
  background-color: #0000;
}

.cf-different-menu {
  flex-direction: column;
  width: 85%;
  max-width: 540px;
  margin-right: 1%;
  display: flex;
}

.cf-different-tabs {
  width: 100%;
  height: 100%;
  display: flex;
}

.cf-different-bottom-container {
  width: 100%;
}

.cf-italic-text {
  font-style: italic;
  font-weight: 700;
}

.cf-h2-heading-56px {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

.cf-different-upper-container {
  margin-bottom: 64px;
}

.cf-wrapper-1160 {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.cf-wrapper-1160.different-flex {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 160px;
  padding-bottom: 60px;
}

.cf-different-section {
  color: #fff;
}

.div-block-9 {
  align-items: center;
  display: flex;
}

.container-7 {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #f1f1f1d4;
  background-image: url("../images/it-team-sixteen.jpg");
  background-position: 0 0;
  background-size: cover;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.div-block-10 {
  z-index: 2;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #0f0f1124;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
}

.div-block-11 {
  background-color: var(--untitled-ui-gray300);
  border-radius: 2px;
  width: 100%;
  height: 100%;
}

.div-block-12 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 40px 40px 0;
  display: flex;
  position: relative;
}

.text-list {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-4 {
  color: var(--black);
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.div-block-13 {
  background-color: #0000;
  height: auto;
  padding: 40px;
}

.text-description {
  color: #717171;
  max-width: 700px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text-description.no-margins {
  max-width: 1000px;
  margin-bottom: 0;
}

.text-description.only-bottom-10-margins {
  margin-bottom: 10px;
  margin-left: 0;
}

.text-description.secondary-pages {
  margin-left: 0;
}

.text-description-1 {
  color: #474747;
  padding-top: 20px;
  padding-left: 10px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.text-container-2 {
  border-bottom: 1.5px solid #b4b4b4;
  padding: 20px 10px 30px;
}

.text-container-2.no-border-bottom {
  border: 0 solid #000;
}

.lightbox-link-2 {
  height: 100%;
}

.container-8 {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #d0d5dd;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 500px;
}

.lightbox-link-3 {
  height: 100%;
}

.number-title {
  color: var(--black);
  font-family: Open Sans, sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.number-description {
  color: #474747;
  padding-top: 5px;
  padding-left: 0;
  font-family: Archivo, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.text-container-number {
  border-bottom: 1.5px solid #b4b4b4;
  padding: 10px;
}

.text-container-number.no-border-bottom {
  border: 0 solid #000;
}

.content-milestone {
  max-width: 600px;
  display: block;
}

.div-block-13-duplicate {
  background-color: #0000;
  height: auto;
  padding: 40px 40px 20px;
}

.new-badge-co {
  background-image: linear-gradient(139deg, var(--primary), var(--secondary));
  text-transform: uppercase;
  border-radius: 3px;
  margin-left: 5px;
  padding: 2px 5px;
  font-size: 60%;
  position: relative;
  top: 1px;
}

.new-badge-big {
  background-image: linear-gradient(139deg, var(--primary), var(--secondary));
  text-transform: uppercase;
  border-radius: 3px;
  max-width: 4.3em;
  margin-left: 5px;
  padding: 5px 10px;
  font-size: 60%;
  position: static;
  top: 85px;
  left: 180px;
}

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

.features-card-sx-heading-dep {
  margin-bottom: 20px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 20px;
}

.waves-small-image-wrap-gallery-4,
.waves-small-image-wrap-gallery-3-copy {
  border-radius: 8px;
  height: 70%;
  position: relative;
  overflow: hidden;
}

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

.margin-negative {
  margin-bottom: -1.5em;
}

.grid-clients-list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-clients-list._1 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  overflow: visible;
}

.grid-clients-list._2 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-clients-list._2.hide {
  display: none;
}

.grid-clients-list-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-clients-list-2._1 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-clients-list-2._2 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-clients-list-2._1 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  overflow: visible;
}

.grid-clients-list-2._2 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.mobile-content-fos {
  display: none;
}

.link-background-talk {
  z-index: -1;
  border: 1.8px none var(--light-grey);
  background-image: linear-gradient(65deg, #ed1f41, #ff7c54);
  border-radius: 7px !important;
  position: absolute;
  inset: 0%;
}

.link-background-talk:hover {
  background-color: #0000;
  background-image: linear-gradient(65deg, var(--primary), var(--secondary));
}

.link-background-talk.white-link-bg {
  background-color: #fff;
  background-image: none;
}

.partner-section {
  z-index: 1;
  background-color: var(--flowui-component-library-white);
  max-width: none;
  padding-top: 10px;
  padding-bottom: 30px;
  display: none;
  position: relative;
  overflow: hidden;
}

.partner-section.ligher-grey-bg {
  background-color: var(--light-black);
  padding-top: 30px;
  padding-bottom: 80px;
}

.partner-section.ligher-grey-bg.zindex-3 {
  z-index: 3;
  background-color: var(--light-black);
  padding-bottom: 10px;
}

.partner-section.ligher {
  background-color: var(--light-black);
}

.partner-section.ligher.zindex-3 {
  z-index: 3;
}

.not-sticky-content {
  position: static;
  top: 100px;
}

.div-block-15 {
  background-color: #a72727;
}

.clients-logo-list {
  z-index: 0;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 10000vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-link-holder-product {
  padding-left: 10px;
  display: block;
}

.client-div {
  width: 1em;
}

.team-wrapper-copy {
  width: 100%;
  display: none;
}

.content-price {
  width: 100%;
  max-width: none;
  display: block;
}

.nav-link-holder-about-us-copy {
  padding-left: 10px;
}

.text-block-8 {
  color: #202020;
  text-decoration: none;
}

.container-9 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.container-9.clients-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.white-50pct-3 {
  color: #67779b;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.section-3 {
  z-index: 1;
  background-color: #0f0f11;
  position: relative;
}

.trusted-by-container-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.client-logo-2 {
  object-fit: contain;
  width: 100%;
  max-width: 160px;
  height: 100%;
  max-height: 65px;
}

.clients-list-2 {
  z-index: 2;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 10000vw;
  display: flex;
  position: relative;
}

.feedbacktwo {
  z-index: 1;
  background-color: var(--black);
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
}

.feedbacktwo.ligher-grey-bg {
  background-color: var(--light-black);
  display: block;
  overflow: hidden;
}

.feedbacktwo.ligher-grey-bg.zindex-3 {
  z-index: 3;
}

.feedbacktwo.ligher {
  background-color: var(--light-black);
}

.feedbacktwo.ligher.zindex-3 {
  z-index: 3;
}

.feedback-two {
  z-index: 1;
  background-color: var(--black);
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
}

.feedback-two.ligher-grey-bg {
  background-color: var(--relume-library-lite-rl-white);
  display: block;
  overflow: hidden;
}

.feedback-two.ligher-grey-bg.zindex-3 {
  z-index: 3;
}

.feedback-two.ligher-grey-bg.hide {
  display: none;
}

.feedback-two.ligher {
  background-color: var(--light-black);
}

.feedback-two.ligher.zindex-3 {
  z-index: 3;
}

.text-container-3 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feedback-div-2 {
  width: 2em;
}

.container-10 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2em;
}

.container-10.clients-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.clients-list-3 {
  z-index: 2;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 10000vw;
  display: flex;
  position: relative;
  overflow: visible;
}

.grey20-subtitle-2 {
  color: #878d95;
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
}

.feedback-2 {
  z-index: 1;
  background-color: #0f0f11;
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
}

.feedback-2.ligher-grey-bg {
  background-color: #222;
}

.container-11 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2em;
}

.container-11.clients-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.clients-list-4 {
  z-index: 2;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 10000vw;
  display: flex;
  position: relative;
  overflow: visible;
}

.grey20-subtitle-3 {
  color: #878d95;
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
}

.mac-app-holder-5 {
  width: 45em;
  height: 25.5em;
  position: absolute;
  top: 7%;
  left: 5%;
}

.white-50pct-one {
  color: #67779b;
  text-align: justify;
  align-self: auto;
  font-size: 19px;
  font-weight: 400;
}

.white-50pct-one.with-bg {
  color: #fff;
  background-color: #ff3e3e;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 18px;
}

.bold-text-5,
.bold-text-6,
.bold-text-7 {
  color: #67779b;
}

.body-2 {
  background-color: #f6f3db;
}

.bold-text-8,
.bold-text-9 {
  color: #202020;
  font-weight: 400;
}

.bold-text-10 {
  color: #202020;
  text-align: justify;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

.heading-6 {
  text-align: center;
  max-width: 800px;
  font-size: 56px;
}

.link-2 {
  color: #202020;
  font-weight: 500;
}

.bold-text-11 {
  font-size: 85px;
}

.image-2 {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
  max-height: 480px;
  display: inline-block;
}

.div-block-16 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 0 50px 40px;
  display: flex;
  position: relative;
}

.mobile-holder {
  z-index: 0;
  perspective: 60vw;
  border-radius: 22px;
  position: absolute;
  inset: 5% 10% 6%;
  overflow: hidden;
}

.mobile-app-perspective {
  transform-style: preserve-3d;
  position: absolute;
  inset: 0%;
  transform: none;
}

.mobile-app-perspective._2 {
  height: 100%;
  inset: 0% 0% auto;
}

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

.div-block-17 {
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 900px;
  position: relative;
}

.text-span-13 {
  color: #707195;
  -webkit-text-stroke-color: #191919;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.how-it-works-left-wrap {
  z-index: 0;
  border: 1px solid var(--light-grey);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fffcfcbf;
  background-image: radial-gradient(
    circle,
    #9b676700,
    #7f688b00 34%,
    #e1284a00 69%,
    #fe795300
  );
  border-radius: 20px;
  flex-flow: column;
  width: 50%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 20px;
  display: flex;
  position: relative;
  inset: 0;
  box-shadow: 0 8px 20px #776b6b33;
}

.tab-text-wrapper.one {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 100%;
  padding: 0 30px 15px;
  display: flex;
  position: relative;
}

.tab-text-wrapper.one.hide {
  display: none;
}

.tab-text-wrapper.three {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 100%;
  padding: 30px 30px 0;
  display: flex;
  position: relative;
}

.tab-text-wrapper.three.hide {
  display: none;
}

.icon-small {
  width: 50px;
  height: 50px;
}

.tabs-title {
  color: #3f3f3f;
  margin-top: 15px;
  font-size: 22px;
  line-height: 1.3;
}

.tabs-title._2 {
  color: #3f3f3f;
  font-size: 23px;
}

.tabs-title._3 {
  color: #3f3f3f;
  font-size: 22px;
}

.tabs-title._4 {
  color: #3f3f3f;
  font-size: 24px;
}

.short-paragraph {
  color: #666;
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.line-two-b {
  background-color: var(--light-grey);
  width: 1px;
  height: auto;
  margin-bottom: 40px;
  position: absolute;
  inset: 0 0 0 auto;
}

.line-two-b.bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

.line-one-b {
  z-index: 3;
  background-color: #fff;
  border: 1px #fff;
  width: auto;
  height: 1px;
  margin-right: 0;
  position: absolute;
  inset: auto 0% 0%;
}

.line-one-b.right {
  margin-left: 40px;
  margin-right: 0;
}

.line-one-b.relative {
  position: relative;
  top: 0%;
  left: 0;
}

.line-one-b.hide {
  height: 1px;
  display: none;
  position: relative;
  top: 0%;
  left: 0%;
}

.div-block-18 {
  margin-top: 0;
  position: relative;
  overflow: visible;
}

.div-block-19 {
  background-image: linear-gradient(#8d8d8d24, #8d8d8d24),
    linear-gradient(#f95f4d1f, #f95f4d1f);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.text-span-14 {
  color: #67779b;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #ef2843, #45474b 0%, #919191);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Archivo, sans-serif;
  font-size: 50px;
}

.text-span-14.red {
  background-image: linear-gradient(90deg, #ef2843, #f02d44 0%, #fe7553);
}

.text-span-15 {
  font-size: 50px;
}

.text-gradient-light-6 {
  opacity: 0.95;
  color: #3f3f3f;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 22px;
  font-weight: 600;
}

.text-gradient-light-6.purple {
  background-image: linear-gradient(135deg, #67779b, #ff5c34ab 100%, #ab4c3769);
}

.card-description-2 {
  color: #666;
  letter-spacing: 0;
  max-width: 350px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.tabs-content-2 {
  width: 100%;
  overflow: visible;
}

.tab-feature-image-holder-2 {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  min-height: 210px;
  margin-top: 1em;
  margin-bottom: -3em;
  margin-right: -2em;
  display: flex;
}

.tab-feature-image-holder-2._5 {
  margin-right: -3.3em;
}

.card-2 {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-2.card-tab-feature {
  background-image: radial-gradient(
    circle farthest-side at 100% 100%,
    #ffb8b375,
    #f1f0ec 65%
  );
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1.5em 2em 3em;
  display: flex;
  box-shadow: 0 5px 40px #7e6b6969, inset 0 1px 2px #ffffff1a;
}

.tabs-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.tabs-2.hide {
  display: none;
}

.tab-card-grid-2 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: visible;
}

.tabs-menu-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #f1eee569;
  background-image: linear-gradient(270deg, #ff030800, #fd72521a);
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 44px;
  padding: 4px;
  display: flex;
}

.tab-feature-image-2 {
  object-fit: contain;
  object-position: 0% 100%;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  max-height: 250px;
}

.tab-feature-image-2._2 {
  max-height: 190px;
  padding-bottom: 20px;
  padding-right: 40px;
}

.tab-feature-image-2._3 {
  max-height: none;
  padding-bottom: 10px;
  padding-right: 40px;
}

.tab-feature-image-2._5 {
  max-height: 199px;
}

.tab-feature-image-2._6 {
  max-height: 230px;
}

.tab-feature-image-2._4 {
  margin-bottom: -20px;
  margin-right: 0;
  padding-right: 35px;
}

.card-noise-bg-2 {
  z-index: -1;
  opacity: 1;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #fff0;
  position: absolute;
  inset: 0%;
}

.text-block-9 {
  color: #f02d44d9;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.text-block-10 {
  color: #fc3d25d9;
  font-weight: 500;
}

.div-block-20 {
  padding-top: 10px;
  padding-left: 10px;
}

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

.image-4 {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.image-6,
.image-7 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-nav,
.right-arrow,
.left-arrow {
  display: none;
}

.slider-3 {
  background-color: #0000;
  height: 100%;
  overflow: hidden;
}

.slide-2 {
  overflow: hidden;
}

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

.div-block-21 {
  width: 1.7em;
  height: 1.7em;
}

.div-block-21.p2 {
  padding: 3px;
}

.div-block-21._1-4em {
  width: 1.4em;
  height: 1.5em;
}

.text-span-16 {
  font-size: 17px;
}

.text-span-17 {
  font-size: 30px;
}

.text-span-18 {
  color: #fff6;
  letter-spacing: 0.02em;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}

.text-span-19 {
  color: #fff6;
  font-size: 20px;
}

.text-block-11 {
  color: #32393b;
}

.text-block-12 {
  color: #202020;
}

.text-block-13 {
  color: #67779b;
  font-size: 13px;
}

.text-block-14 {
  color: #242423;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.text-block-14.hover_color {
  color: #202020;
}

.text-block-14.hover_color:hover {
  color: #7583a0;
}

.text-block-15,
.text-block-16 {
  color: #202020;
}

.ios-app-holder-3 {
  border-radius: 20px 20px 0 0;
  position: absolute;
  inset: 4% 6% 0%;
  overflow: hidden;
}

.div-block-22 {
  width: 50%;
  position: relative;
  top: 0%;
}

.div-block-23 {
  height: 50%;
}

.div-block-24 {
  width: 43%;
  height: 100%;
  position: relative;
}

.image-9 {
  width: 100%;
  height: 100%;
  position: absolute;
}

.div-block-25 {
  background-image: linear-gradient(#00000024, #00000024);
  width: 100%;
  height: 100%;
  position: absolute;
}

.device-holder-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  height: 70vh;
  display: block;
  position: relative;
}

.lottie-animation {
  height: 100%;
}

.heading-7 {
  max-width: 698px;
  font-size: 50px;
}

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

.pricing-compare-item-header {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom: 1px solid #ffc4c4;
  border-left: 1px solid #ffc4c4;
  border-right: 1px solid #ffc4c4;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: center;
  min-height: 70px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.pricing-compare-item-header.with-bg {
  background-color: #ffb24d12;
  border-radius: 20px;
  align-items: center;
  height: auto;
  min-height: 70px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 12px 30px;
}

.pricing-compare-item-header.round-border {
  border: 1px solid #ffc4c4;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.pricing-compare-item-header.category-style {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom-style: none;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: end;
  min-height: 50px;
  padding: 0;
}

.pricing-compare-item-header.bottom-round-border {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.text-center {
  text-align: center;
  background-color: #0000;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-right: 0;
}

.text-center.right-top-corner {
  background-color: #fce5df;
  border-top-right-radius: 20px;
}

.text-center.foodlink {
  background-color: #fce5df;
  height: 100%;
}

.text-center.foodlink.bottom-right-round {
  border-bottom-right-radius: 20px;
}

.pricing-info-title {
  color: #464646;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

.pricing-info-title.red {
  color: var(--primary);
  font-size: 18px;
}

.pricing-count {
  color: #464646;
  font-size: 26px;
}

.pricing-count.red {
  color: var(--primary);
}

.pricing-compare-title {
  color: var(--primary);
  background-color: #0000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 8px;
  padding-left: 25px;
  font-size: 18px;
  font-weight: 500;
}

.pricing-compare-header {
  background-color: #0000;
  background-image: none;
  border-radius: 20px;
  margin-bottom: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 30px;
}

.pricing-compare-header.cta {
  background-color: var(--primary);
  background-image: linear-gradient(167deg, #ef29438c, #fb8b6fbf 56%);
  border-radius: 20px;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 15px;
  box-shadow: 0 10px 40px #00000042;
}

.pricing-compare-wrap {
  margin-bottom: 0;
}

.pricing-compare-icon {
  height: 25px;
}

.text-block-17 {
  color: var(--black);
  padding-left: 40px;
  font-size: 18px;
  line-height: 1.4;
}

.pricing-text {
  color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 500;
  display: flex;
}

.pricing-text.good {
  color: var(--primary);
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
}

.text-span-20 {
  color: #8b8b8b;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.div-block-26 {
  padding-top: 10px;
  padding-left: 10px;
}

.text-span-22 {
  color: #fff6;
  letter-spacing: 0.02em;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}

.button-4 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--gradient-color-3);
  text-transform: none;
  background-color: #fff;
  background-image: linear-gradient(#f6f6f6, #ebebeb);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 48px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.35s, background-color 0.35s,
    opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.button-4:hover {
  opacity: 0.9;
  color: #0f0f11cc;
}

.button-4.empty-button {
  color: #fff;
  background-color: #fff0;
  background-image: none;
  border: 1px solid #fff;
}

.button-4.empty-button:hover {
  color: #1e1e1f;
  background-color: #f8f8f8;
}

.feature-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  margin-top: 0;
  padding-bottom: 4em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.single-feaure-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.5fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 25px;
  display: block;
}

.single-feaure-wrap.terbalik {
  grid-template-columns: 1fr 0.5fr;
}

.feature-content-wrap {
  background-color: #faf8f8;
  border-radius: 20px;
  padding: 10px 20px 20px;
}

.feature-content-wrap.last {
  border-radius: 20px;
  padding-top: 10px;
}

.feature-icon-wrap {
  background-color: #85858526;
  border-radius: 100%;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.feature-icon-wrap.hide {
  display: none;
}

.feature-title {
  color: #3f3f3f;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.feature-excerpt {
  color: #8b8b8b;
  letter-spacing: 0.2px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.feature-image-wrap {
  border: 1px none var(--light-grey);
  background-color: #fff0;
  border-radius: 0;
  width: auto;
  height: 450px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.feature-image-wrap._2 {
  width: 500px;
  height: auto;
  margin-top: 40px;
}

.feature-icon-new {
  color: #98caff;
  object-fit: fill;
  background-color: #0000;
  border-radius: 0;
  width: 35px;
  max-width: none;
  height: 35px;
  padding: 0;
  font-size: 12px;
}

.text-span-23 {
  color: var(--primary);
  font-weight: 500;
}

.text-span-24 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
}

.image-11 {
  object-fit: cover;
  border-radius: 45px;
  width: 100%;
  height: 100%;
}

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

.div-block-27 {
  background-color: #f1f0ec;
  border-radius: 20px;
  justify-content: center;
  width: 100%;
  display: flex;
}

.image-13 {
  height: 600px;
  position: static;
}

.div-block-28 {
  padding-left: 45px;
}

.background-video {
  text-align: left;
  object-fit: fill;
  object-position: 100% 50%;
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.cf-logo-background-text {
  color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#ffffff12, #fff0 90%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: PT Serif, serif;
  font-size: 300px;
  font-weight: 600;
  line-height: 320px;
  display: block;
  position: absolute;
  inset: 3% 0% auto;
}

.cf-logos-image {
  object-fit: contain;
}

.cf-logo-image-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 178px;
  height: 100px;
  margin-bottom: 32px;
  margin-right: 47px;
  display: flex;
}

.cf-logo-image-container.last {
  margin-right: 0;
}

.hide {
  display: none;
}

.cf-logos-contain {
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 855px;
  display: flex;
  position: relative;
}

.cf-logos-heading {
  z-index: 10;
  color: #fff;
  text-align: center;
  max-width: 620px;
  margin-bottom: 60px;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  position: relative;
}

.cf-logo-wrapper {
  background-color: #0d0e10;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 56px;
  display: flex;
  position: relative;
}

.cf-logo-section-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cf-feature-pointer-text-20px {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.cf-choose-feature-check-icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
}

.cf-pricing-plan-pointers-2 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.cf-pricing-plan-pointers-2.no-margin {
  margin-bottom: 0;
}

.cf-choose-feature-bold-text-16px {
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.cf-choose-feature-wrapper {
  background-color: #fff;
  border-radius: 13px;
  width: 100%;
  max-width: 480px;
  margin-top: 35px;
  padding: 48px 40px;
  box-shadow: 0 10px 70px #53535312;
}

.cf-choose-feature-heading-32px {
  color: #000;
  letter-spacing: -0.01em;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}

.cf-choose-feature-name-container {
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
}

.cf-choose-feature-container {
  position: relative;
}

.cf-bottom-line-image {
  width: 100%;
  max-width: 340px;
  position: absolute;
  inset: auto auto -60px 50px;
}

.cf-choose-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
  position: relative;
}

.cf-green-vs-circle {
  z-index: 11111;
  background-image: linear-gradient(
    135deg,
    var(--conversion-flow-library--medium-purple),
    var(--conversion-flow-library--light-coral) 49%,
    var(--conversion-flow-library--sandy-brown)
  );
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: auto;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  display: flex;
  position: absolute;
  inset: 20% 0% 0%;
}

.cf-choose-bottom-container {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.cf-20px-text {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 32px;
}

.cf-20px-text.max-width-520px {
  color: #000;
  max-width: 520px;
}

.cf-italic-text-2 {
  font-style: italic;
  font-weight: 700;
}

.cf-h2-heading-56px-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

.cf-choose-upper-section {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-bottom: 64px;
  display: flex;
}

.cf-wrapper-1161 {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.cf-wrapper-1161.choose-flex {
  flex-direction: column;
  padding-top: 180px;
  padding-bottom: 180px;
}

.features-metrics {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-12 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

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

.features-title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.features-title-small {
  font-size: 24px;
  line-height: 32px;
}

.rl-button-link-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.rl-button-link {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  border: 1px none var(--relume-library-lite-rl-black);
  color: var(--relume-library-lite-rl-black);
  text-align: center;
  background-color: #0000;
  padding: 0.25rem 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.rl-button-secondary {
  border: 1px solid var(--relume-library-lite-rl-black);
  background-color: var(--relume-library-lite-rl-white);
  color: var(--relume-library-lite-rl-black);
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
}

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

.rl_layout192_spacing-block-3 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl-text-style-medium-2 {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_layout192_spacing-block-2 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.rl-heading-style-h2-2 {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.rl_layout192_spacing-block-1 {
  width: 100%;
  padding-bottom: 1rem;
}

.rl-text-style-subheading {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

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

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

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

.rl-padding-global-3 {
  padding-left: 5%;
  padding-right: 5%;
}

.rl_section_layout192 {
  background-color: var(--relume-library-lite-rl-white);
}

.waves---heading-3-no-margins {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves-icon-32 {
  width: 32px;
  height: 32px;
}

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

.waves-tile-small-feature-7 {
  grid-row-gap: 16px;
  background-color: var(--waves-library--dark-elevation);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  display: flex;
}

.image-vertical-feature-7 {
  width: 100%;
}

.waves-inside-tile-vertical-features-7 {
  z-index: 2;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
}

.waves-vertical-tile-features-7 {
  grid-row-gap: 24px;
  background-color: var(--waves-library--dark-elevation);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 0;
  display: flex;
}

.waves-image-wide-feature-7 {
  z-index: 1;
  object-fit: contain;
  object-position: 50% 100%;
  width: 50%;
  max-height: 100%;
  margin-top: auto;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.waves-inside-wide-feature-7 {
  z-index: 2;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 365px;
  display: flex;
  position: relative;
}

.waves-wide-tile-features-7 {
  background-color: var(--waves-library--dark-elevation);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  min-height: 410px;
  padding: 36px 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.waves---grid-features-7 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 80px;
}

.waves---cta-dark {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s;
  display: flex;
}

.waves---cta-dark:hover {
  background-color: #131313e6;
}

.waves---heading-2-no-margins {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---sides-heading-button {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.waves---main-container-2 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
  display: none;
}

.waves---section-medium-3 {
  background-color: var(--flowui-component-library-white);
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-block-18,
.text-block-19,
.text-block-20,
.text-block-21,
.text-block-22 {
  color: #000;
}

.features-metrics-2 {
  color: #000;
  background-color: #f5f7fa00;
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-13 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-2 {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.features-block-2 {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-title-2 {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.features-title-small-2 {
  font-size: 24px;
  line-height: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.brix---link-content-text-center {
  color: var(--elements-webflow-library--neutral--600);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.f-image-cover-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.f-content-image-tall {
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  height: 620px;
  overflow: hidden;
}

.f-button-neutral {
  background-color: var(--flowui-component-library-gray-900);
  color: var(--flowui-component-library-white);
  text-align: center;
  letter-spacing: -0.02em;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
  display: flex;
}

.f-button-neutral:hover {
  background-color: var(--flowui-component-library-gray-700);
}

.f-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.f-paragraph-regular-2 {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.f-sub-heading-small {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -0.03em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.f-margin-bottom-49 {
  margin-bottom: 8px;
}

.f-icon-regular-2 {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color 0.2s;
  display: flex;
}

.f-content-icon-square {
  background-color: var(--flowui-component-library-gray-100);
  color: var(--flowui-component-library-gray-900);
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.f-content-list-item-large {
  grid-column-gap: 24px;
  align-items: flex-start;
  display: flex;
}

.f-content-list-wrapper-small {
  grid-row-gap: 48px;
  flex-direction: column;
  max-width: 300px;
  margin-bottom: 48px;
  display: flex;
}

.f-content-divider {
  background-color: var(--flowui-component-library--gray-200);
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.f-paragraph-large-2 {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.f-h3-heading-2 {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-margin-bottom-16 {
  margin-bottom: 16px;
}

.f-heading-detail-small-2 {
  color: var(--flowui-component-library-gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-margin-bottom-50 {
  margin-bottom: 12px;
}

.f-grid-two-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.f-container-regular-2 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-section-large-2 {
  padding: 92px 5%;
  position: relative;
}

.fn-button-secondery-2 {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 137px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color 0.25s;
  display: flex;
}

.fn-button-secondery-2:hover {
  background-color: #3e4545;
}

.fn-button-2 {
  color: #0f1213;
  text-align: center;
  background-color: #df0;
  border: 1px solid #df0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity 0.25s, border-color 0.25s;
  display: flex;
}

.fn-button-2:hover {
  opacity: 0.9;
  border-color: #0f1213;
}

.fn-button-wrapper-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.fn-cover-image-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.fh-features-image-wrapper-2 {
  border-radius: 24px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.fn-featured-tabs-content-wrapper-2 {
  width: 100%;
}

.fn-featured-tabs-content-2 {
  width: 60%;
  display: flex;
  position: absolute;
  inset: 0% 15px 0% auto;
}

.fn-tabs-paragraph-2 {
  flex: none;
  overflow: hidden;
}

.fn-tabs-link-title-icon-2 {
  color: #df0;
  object-fit: contain;
  width: 19px;
  height: 19px;
}

.fn-tabs-link-title-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #cdd3d2;
  align-items: center;
  display: flex;
}

.fn-tabs-link-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #939b9b;
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  transition: opacity 0.25s;
  display: flex;
}

.fn-tabs-link-2:hover {
  opacity: 0.8;
  color: #939b9b;
}

.fn-tabs-link-2.w--current {
  background-color: #0f1213;
}

.fn-featured-tabs-menu-2 {
  flex-direction: column;
  display: flex;
}

.fn-featured-tabs-2 {
  width: 100%;
  margin-bottom: 32px;
  position: static;
}

.fn-paragraph-2 {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-heading-3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}

.fn-column-2 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.fn-container-grid-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.fn-container-grid-2.relative {
  position: relative;
}

.fn-section-2 {
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.fn-link-arrow {
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 18px;
  margin-left: 10px;
  display: flex;
}

.fn-link-with-arrow {
  color: #df0;
  align-items: center;
  margin-top: auto;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: underline;
  display: flex;
}

.fn-heading-4 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
}

.fn-features-card {
  color: #ecf0ef;
  background-color: #0f1213;
  border: 1px solid #0f1213;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  text-decoration: none;
  transition: border-color 0.25s;
  display: flex;
}

.fn-features-card:hover {
  color: #ecf0ef;
  border-color: #df0;
}

.fn-paragraph-no-margin {
  color: #cdd3d2;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  overflow: hidden;
}

.brix---logo-strip-image-card {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  box-shadow: 0 1px 12px 0 var(--elements-webflow-library--general--shadow-02);
  border-radius: 16px;
  width: 284px;
  margin: 14px 16px;
}

.brix---logo-strip-full-width {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

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

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

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

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

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

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

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

.brix---paragraph-default-2 {
  color: #67779b;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

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

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

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

.brix---square-icon {
  border-radius: 16px;
  max-width: 60px;
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

.brix---grid-content-v15 {
  grid-column-gap: 110px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 0.6fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.brix---mg-bottom-0 {
  text-align: left;
  margin-bottom: 0;
}

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

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

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

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

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

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

.brix---badge-secondary-small-bold {
  border: 1px solid var(--elements-webflow-library--neutral--400);
  background-color: var(--elements-webflow-library--neutral--100);
  box-shadow: 0 2px 12px 0 var(--elements-webflow-library--general--shadow-01);
  color: var(--elements-webflow-library--neutral--800);
  text-align: center;
  border-radius: 40px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  display: inline-block;
}

.brix---badge-wrapper-top-right {
  position: absolute;
  inset: 20px 20px auto auto;
}

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

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

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

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

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

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

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

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

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

.brix---pricing-content-v10-popular {
  padding: 40px 50px;
}

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

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

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

.brix---pricing-content-v10 {
  padding: 40px 42px;
  position: relative;
}

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

.brix---grid-2-columns---pricing-v10 {
  grid-column-gap: 32px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 0.63fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

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

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

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

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

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

.f-button-neutral-2 {
  background-color: var(--flowui-component-library-gray-900);
  color: var(--flowui-component-library-white);
  text-align: center;
  letter-spacing: -0.02em;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
  display: flex;
}

.f-button-neutral-2:hover {
  background-color: var(--flowui-component-library-gray-700);
}

.f-button-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.f-paragraph-regular-3 {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.f-sub-heading-small-2 {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -0.03em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.f-margin-bottom-51 {
  margin-bottom: 8px;
}

.f-icon-regular-3 {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color 0.2s;
  display: flex;
}

.f-content-icon-square-2 {
  background-color: var(--flowui-component-library-gray-100);
  color: var(--flowui-component-library-gray-900);
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.f-content-list-item-large-2 {
  grid-column-gap: 24px;
  align-items: flex-start;
  display: flex;
}

.f-content-list-wrapper-small-2 {
  grid-row-gap: 48px;
  flex-direction: column;
  max-width: 300px;
  margin-bottom: 48px;
  display: flex;
}

.f-content-divider-2 {
  background-color: var(--flowui-component-library--gray-200);
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.f-paragraph-large-3 {
  color: var(--elements-webflow-library--neutral--600);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.f-h3-heading-3 {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-margin-bottom-52 {
  margin-bottom: 16px;
}

.f-heading-detail-small-3 {
  color: var(--flowui-component-library-gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-margin-bottom-53 {
  margin-bottom: 12px;
}

.f-content-text-wrapper {
  max-width: 460px;
}

.f-image-cover-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.f-content-image-tall-2 {
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  height: 620px;
  overflow: hidden;
}

.f-grid-two-column-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.f-container-regular-3 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-section-large-3 {
  padding: 92px 5%;
  position: relative;
}

.f-content-list-item {
  grid-column-gap: 16px;
  color: var(--flowui-component-library-gray-900);
  align-items: center;
  display: flex;
}

.f-content-list-wrapper {
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 32px;
  margin-bottom: 42px;
  display: flex;
}

.f-margin-bottom-54 {
  margin-bottom: 12px;
}

.f-content-image-wrapper-large {
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  height: 460px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brix---grid-content-section-v6 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

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

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

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

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

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

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

.tab-pane-2 {
  width: 100%;
  overflow: visible;
}

.text-gradient-light-7 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
}

.card-description-3 {
  color: #ffffff80;
  max-width: 350px;
}

.tabs-content-3 {
  width: 100%;
}

.tab-feature-image-holder-3 {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  min-height: 240px;
  margin-top: 2em;
  margin-bottom: -3em;
  margin-right: -2em;
  display: flex;
}

.card-3 {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-3.card-tab-feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.tabs-3 {
  box-sizing: content-box;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: visible;
}

.tab-card-grid-3 {
  box-sizing: border-box;
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  mix-blend-mode: normal;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: static;
  overflow: visible;
}

.section-4 {
  z-index: 1;
  background-color: #f6f3db;
  position: relative;
}

.card-noise-bg-3 {
  z-index: -1;
  opacity: 0.03;
  background-image: url("../images/Noisy.png");
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.tabs-menu-3 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #222;
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 44px;
  padding: 4px;
  display: flex;
}

.small-content-2 {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2em;
}

.small-content-2.no-padding {
  padding-bottom: 0;
}

.small-content-2.no-auto-margin {
  margin-left: 0;
}

.tab-link-2 {
  color: #ffffff80;
  background-color: #fff0;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 1.5em;
  font-size: 15px;
  transition: background-color 0.35s, color 0.35s;
  display: flex;
}

.tab-link-2:hover {
  color: #fffc;
  background-color: #ffffff0d;
}

.tab-link-2.w--current {
  color: #fff;
  background-color: #fff3;
}

.tab-feature-image-3 {
  object-fit: cover;
  object-position: 0% 100%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 120px;
  left: 100px;
  overflow: visible;
  transform: scale(1.3);
}

.text-container-4 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-14 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.trusted-by-container-3 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.trusted-by-grid-content-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20vw;
  display: flex;
}

.container-15 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.container-15.clients-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.text-gradient-light-8 {
  color: #222938;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.card-description-4 {
  color: #191919;
  max-width: 350px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.tabs-content-4 {
  width: 100%;
  overflow: visible;
}

.tab-feature-image-holder-4 {
  object-fit: fill;
  object-position: 50% 50%;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  min-height: 240px;
  margin-top: 0;
  margin-bottom: -3em;
  margin-right: -2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.white-50pct-4 {
  color: #67779b;
  -webkit-text-stroke-color: #67779b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}

.card-4 {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-4.card-tab-feature {
  background-color: #f8f8f8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 3em 2em;
  display: flex;
}

.section-5 {
  z-index: 1;
  background-color: #f6f3db;
  border: 1px solid #f6f3db;
  position: relative;
}

.tab-link-3 {
  color: #ffffff80;
  background-color: #fff0;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 1.5em;
  font-size: 15px;
  transition: background-color 0.35s, color 0.35s;
  display: flex;
}

.tab-link-3:hover {
  color: #fffc;
  background-color: #ffffff0d;
}

.tab-link-3.w--current {
  color: #fff;
  background-color: #fff3;
}

.text-container-5 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-container-5.left-align {
  text-align: left;
  align-items: flex-start;
}

.container-16 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.section-6 {
  z-index: 1;
  background-color: #f8f8f8;
  position: relative;
}

.container-17 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.card-item-content-6 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.feature-icon-4 {
  object-fit: contain;
  width: 45px;
  height: 40px;
}

.heading-4-style-4 {
  color: #191919;
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
}

.grey-dim-7 {
  color: #878d95;
  font-size: 18px;
}

.text-gradient-light-9 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
}

.feedback-card-container-2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  min-width: 0;
  max-width: 25vw;
  height: 100%;
  min-height: 300px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.feedback-card-container-2:hover {
  text-decoration: none;
}

.feedback-card-container-2.hide {
  display: none;
}

.slider-container-2 {
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.white-50pct-5 {
  color: #f8faff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.card-5 {
  z-index: 1;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.card-5.feedback-card {
  min-height: 100%;
  padding: 1.5em;
}

.slider-4 {
  cursor: default;
  background-color: #0000;
  min-width: 380px;
  max-width: 25vw;
  height: auto;
  overflow: visible;
}

.section-7 {
  z-index: 1;
  background-color: #0f0f11;
  position: relative;
}

.section-7.ligher-grey-bg {
  background-color: #222938;
  padding-bottom: 5em;
  overflow: hidden;
}

.feedback-image-holder-2 {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0;
}

.feedback-image-circle-2 {
  background-color: #d7d7d9;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  padding-top: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feedback-image-circle-2.feedback-color-rose {
  background-color: #ffc7d6;
}

.feedback-image-circle-2.feedback-color-green {
  background-color: #bef0c6;
}

.feedback-image-circle-2.feedback-color-yellow {
  background-color: #ffd9a2;
}

.feedback-image-circle-2.feedback-color-violet {
  background-color: #dbd1fc;
}

.feedback-image-2 {
  object-fit: cover;
  border-radius: 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
}

.feedback-text-2 {
  color: #fffc;
}

.slide-3 {
  cursor: default;
  width: 100%;
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-18 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em 0;
}

.feedback-author-2 {
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  margin-bottom: 0;
  font-weight: 600;
  display: flex;
}

.feedback-name-and-position-2 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.brix---btn-primary-3 {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #222938;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.brix---btn-primary-3:hover {
  color: #fff;
  background-color: #f02d44;
  transform: translate3d(0, -3px, 0.01px);
}

.brix---badge-secondary-small-bold-2 {
  color: #211f54;
  text-align: center;
  background-color: #fff;
  border: 1px solid #dcddeb;
  border-radius: 40px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px #14142b0f;
}

.brix---color-neutral-809 {
  color: #fff;
}

.brix---btn-primary-white-2 {
  color: #222938;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #fff;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.brix---btn-primary-white-2:hover {
  color: #f02d44;
  background-color: #f8f8f8;
  transform: translate3d(0, -3px, 0.01px);
}

.brix---color-neutral-810 {
  color: #211f54;
}

.brix---card-pricing-popular-2 {
  background-color: #222938;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 2px 7px #14142b0f;
}

.section-8 {
  z-index: 1;
  background-color: #f8f8f8;
  padding-top: 4em;
  padding-bottom: 0;
  position: relative;
}

.brix---card-2 {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  box-shadow: 0 2px 7px #14142b0f;
}

.brix---color-neutral-811 {
  color: #6e7191;
}

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

.brix---subtitle-4 {
  color: #4a3aff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.no-margin {
  color: #191919;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  line-height: 1.5;
}

.two-column-wrapper {
  z-index: 100;
  grid-column-gap: 80px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.column-two {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.column-two.assymetrical {
  width: 15%;
}

.home-feature-item-new {
  width: 100%;
}

.image-style-solo {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 600px;
}

.column-one {
  width: 50%;
  height: 100%;
}

.column-one.assymetrical {
  width: 95%;
}

.text-white {
  color: #fff;
}

.section-9 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.section-9.light-background {
  background-color: #f6f7f900;
  padding-top: 150px;
  overflow: visible;
}

.home-new-features-wrapp {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  text-align: center;
  background-color: #222938;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  width: auto;
  margin-top: 40px;
  margin-left: -200px;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.in-section-title {
  color: #191919;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 48px;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.home-feature-number-new {
  color: #fff;
  margin-bottom: 15px;
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-list-main {
  background-color: #0000;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list-main.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrap-one-column {
  background-color: #f6f7f9;
  border-radius: 20px;
  width: 100%;
  padding: 30px;
}

.accordion-title-wrapp {
  grid-column-gap: 25px;
  grid-row-gap: 15px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.accordion-item-main {
  background-color: #0000;
  border-bottom: 1px solid #afafaf;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: static;
}

.accordion-item-main.first {
  padding-top: 0;
}

.accordion-item-main.last {
  border-bottom-style: none;
  padding-bottom: 0;
}

.accordion-title-2 {
  width: 92%;
  transition: color 0.2s;
}

.accordion-title-2:hover {
  color: #a36630;
}

.section-10 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.section-10.without-top-spacing {
  padding-top: 0;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.section-subtitle {
  color: #a36630;
  text-transform: capitalize;
  background-color: #a366304d;
  border-radius: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 6px 18px;
  font-weight: 400;
}

.section-11 {
  z-index: 1;
  background-color: #f1f0ec;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}

.section-11.ligher-grey-bg {
  background-color: #faf8f8;
  padding-top: 30px;
  padding-bottom: 80px;
  display: none;
}

.ft-10-tab-link-2 {
  background-color: #0000;
  padding-left: 0;
  padding-right: 20px;
}

.ft-10-tab-link-2.w--current {
  color: #bdbdbd;
  background-color: #0000;
  padding-left: 0;
  padding-right: 20px;
}

.features-side-phones-right-2 {
  width: 100%;
}

.uui-text-size-large-4 {
  color: #475467;
  text-align: center;
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-container-6 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-container-6.left-align {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2em;
  font-style: normal;
}

.features-side-phones-left-2 {
  width: 100%;
}

.card-noise-bg-4 {
  z-index: 1;
  opacity: 0.03;
  background-image: url("../images/Noisy.png");
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.features-side-phones-rotated-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 120%;
  display: grid;
  position: absolute;
  inset: 0%;
  transform: translate(-210px, -160px) rotate(-38deg);
}

.container-19 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2em;
}

.text-gradient-light-title-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #67779b, #707070 50%, #202020);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 56px;
}

.icon-grey-3 {
  color: #ed1f41;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.small-content-3 {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.small-content-3.no-auto-margin {
  text-align: left;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: flex-start;
  max-width: none;
  margin-left: 0;
  display: flex;
}

.grid-3-features-6 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-item-content-7 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.text-gradient-light-10 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #f02d44cc, #f02d44 50%, #f02d44cc);
  -webkit-background-clip: text;
  background-clip: text;
}

.features-side-phones-right-3 {
  width: 100%;
}

.ios-app-3 {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.white-50pct-6 {
  color: #67779b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.card-6 {
  z-index: 1;
  background-color: #222938;
  background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  border-radius: 20px;
  min-height: 100px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #00000080, inset 0 1px 2px #ffffff1a;
}

.section-12 {
  z-index: 1;
  background-color: #f6f3db;
  position: relative;
}

.section-12.ligher-grey-bg {
  background-color: #222;
}

.section-12.ligher-grey-bg.zindex-3 {
  z-index: 3;
  z-index: 3;
  background-color: #f6f3db;
}

.card-noise-bg-5 {
  z-index: -1;
  opacity: 0.03;
  background-image: url("../images/Noisy.png");
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.grey-dim-8 {
  color: #f7f7f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.container-20 {
  flex-flow: column;
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
  padding-bottom: 5em !important;
  display: flex;
}

.ios-side-app-holder-2 {
  border-radius: 20px;
  position: absolute;
  inset: 5% 10% 6%;
  overflow: hidden;
}

.featured-card-image-holder-2 {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 4em;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.text-gradient-light-11 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
  -webkit-background-clip: text;
  background-clip: text;
}

.white-50pct-7 {
  color: #ffffff80;
}

.container-21 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.text-gradient-light-12 {
  color: #f02d44;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.accordion-item-2 {
  color: #191919;
  margin-bottom: 2em;
}

.white-50pct-8 {
  color: #ffffff80;
}

.grid-faq-2 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
}

.grey-dim-9 {
  color: #67779b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.container-22 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.accordion-title-3 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 600;
}

.text-gradient-light-15 {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  font-weight: 600;
}

.tab-feature-image-4 {
  object-fit: cover;
  object-position: 0% 100%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  overflow: visible;
  transform: scale(2.2);
}

.tab-feature-image-5 {
  object-fit: cover;
  object-position: 0% 100%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 90px;
  left: 100px;
  overflow: visible;
  transform: scale(1.3);
}

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

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

.heading-8 {
  color: #f02d44;
}

.div-block-29 {
  width: 100%;
  height: 100%;
  min-height: 15.8em;
  position: relative;
}

.div-block-30 {
  transform-style: preserve-3d;
  background-color: #fff;
  position: absolute;
  inset: 0;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}

.div-block-31 {
  background-color: #fffde9;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.div-block-31.is_front {
  background-color: #726f53;
}

.div-block-31.is_back {
  transform-style: preserve-3d;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}

.card_traits-content {
  grid-row-gap: 0.125rem;
  flex-direction: column;
  display: flex;
}

.card_cta {
  background-color: #080808;
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding-bottom: 0.25rem;
  display: flex;
}

.card_side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #141314;
  border: 1px solid #191819;
  border-radius: 2rem;
  padding: 4rem 1.75rem 1.75rem;
  position: absolute;
  inset: 0%;
}

.card_side.is-front {
  grid-row-gap: 2.5rem;
  background-color: #fffde9;
  border-style: none;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
}

.card_side.is-back {
  transform-style: preserve-3d;
  background-color: #0000;
  border-style: none;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}

.card_cta-wrapper {
  grid-row-gap: 0.25rem;
  flex-direction: column;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.card_cta-wrapper.is-back {
  bottom: 1.5rem;
  left: 1.5rem;
}

.card_cta-icon {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
}

.display-block {
  display: block;
}

.card_traits-item {
  grid-column-gap: 1.125rem;
  align-items: center;
  display: flex;
}

.card_hole {
  background-color: #080808;
  border-radius: 100rem;
  flex: none;
  width: 6rem;
  height: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 1rem 0% auto;
}

.card_traits-icon {
  height: 100%;
}

.card_traits {
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.heading-9 {
  line-height: 1.2;
}

.card_stamp-img {
  opacity: 0.79;
  width: 100%;
}

.card_traits-list {
  grid-column-gap: 2rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-type {
  color: #fbf9fc80;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 200;
}

.card_traits-icon-wrapper {
  width: 1.5rem;
  height: 1.5rem;
}

.content-type {
  font-size: 0.875rem;
}

.card_wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 7.6em;
  position: relative;
}

.card-img {
  background-color: #8f00ff;
  border-radius: 1rem;
  flex: 1;
  justify-content: center;
  padding-top: 1.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.card_main-text {
  grid-row-gap: 0.5rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
  display: flex;
}

.card_stamp-wrapper {
  opacity: 0.5;
  width: 5.5rem;
  position: absolute;
  inset: 2rem 1rem auto auto;
  transform: rotate(29deg);
}

.image-16 {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto;
}

.image-16.min-width {
  min-width: 160px;
}

.lottie-animation-2 {
  margin-top: -14em;
}

.text-gradient-light-8-copy {
  color: #222938;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

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

.text-span-25 {
  font-size: 13px;
}

.icon-embed-xsmall {
  color: #7583a0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

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

.container-23 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2em;
}

.container-23.clients-container {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.feedback-text-3 {
  color: #8b8b8b;
  letter-spacing: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: normal;
  line-height: 1.4;
}

.feedback-image-3 {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
}

.card-noise-bg-6 {
  z-index: 1;
  opacity: 0.03;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.clients-list-5 {
  z-index: 2;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 9938vw;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  position: relative;
  overflow: visible;
}

.feedback-div-3 {
  width: 1.5em;
}

.cf-secondary-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: #000;
  border-radius: 12px;
  padding: 20px 40px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.23s;
}

.cf-secondary-button:hover {
  background-color: var(--conversion-flow-library--medium-purple);
  color: #fff;
}

.cf-secondary-button.pricing-button {
  color: #fff;
  background-color: #000;
  margin-top: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Montserrat, sans-serif;
}

.cf-secondary-button.pricing-button:hover {
  background-image: linear-gradient(
    to right,
    var(--conversion-flow-library--medium-purple),
    var(--conversion-flow-library--light-coral) 46%,
    var(--conversion-flow-library--sandy-brown)
  );
}

.cf-pricing-plan-content-text {
  letter-spacing: 0.5px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.cf-pricing-plan-tick-icon {
  margin-top: 2px;
  margin-right: 16px;
}

.cf-pricing-plan-content-item {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.cf-pricing-plan-content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.cf-pricing-plan-small-text {
  letter-spacing: 1px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.cf-pricing-plan-price {
  background-image: linear-gradient(
    to right,
    var(--conversion-flow-library--medium-purple),
    var(--conversion-flow-library--light-coral) 38%,
    var(--conversion-flow-library--coral) 73%,
    var(--conversion-flow-library--sandy-brown)
  );
  letter-spacing: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 48px;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
}

.cf-pricing-plan-note-text {
  letter-spacing: 0.3px;
  margin-bottom: 32px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.cf-pricing-plan-text {
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
}

.cf-pricing-box-plan-wrapper {
  border-bottom: 1px solid #0003;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.cf-pricing-box-plan-wrapper.white-border {
  border-bottom-color: #fff3;
}

.cf-pricing-box {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  flex-direction: column;
  align-items: stretch;
  width: 31%;
  min-height: 640px;
  margin-left: 1%;
  margin-right: 1%;
  padding: 40px;
  display: flex;
}

.cf-pricing-box.pricing-1-box {
  background-color: #fff;
}

.cf-pricing-box.green-pricing-box {
  color: #fff;
  background-color: #1d1d1d;
  border-style: none;
}

.cf-primary-button {
  color: #007e60;
  letter-spacing: 0.3px;
  background-color: #f0f9f5;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.34s;
  display: flex;
}

.cf-primary-button:hover {
  color: #f0f9f5;
  background-color: #1d4a35;
}

.cf-primary-button.pricing-button {
  color: #000;
  background-color: #fff;
  margin-top: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.cf-primary-button.pricing-button:hover {
  background-image: linear-gradient(
    96deg,
    var(--conversion-flow-library--medium-purple),
    var(--conversion-flow-library--light-coral) 50%,
    var(--conversion-flow-library--sandy-brown)
  );
  color: #fff;
}

.cf-pricing-box-row {
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
  display: flex;
}

.cf-pricing-box-row.pricing-box-2.hide {
  display: none;
}

.cf-pricing-box-row.pricing-box-1 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 10px;
}

.cf-pricing-box-wrapper {
  margin-top: 50px;
}

.cf-pricing-box-wrapper.pricing-1-box {
  margin-top: 40px;
  position: relative;
  top: 0;
}

.cf-wrapper-1200px {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cf-toggle-arrow-icon {
  max-width: 26px;
  position: relative;
  top: -8px;
  left: 9px;
}

.cf-toggle-save-text {
  color: #6777ac;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
}

.cf-toggle-save-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% -125% 35%;
}

.cf-toggle-text {
  color: #222938;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.cf-toggle-dot {
  background-color: #fff;
  border-radius: 100%;
  width: 28px;
  height: 28px;
}

.cf-toggle-dot.green-toggle-dot {
  background-image: linear-gradient(320deg, #ed1f41, #ff7c54 100%, #ff7c54);
  width: 20px;
  height: 20px;
}

.cf-toggle-dot.green-toggle-dot.mobile {
  display: none;
}

.cf-toggle-dot.green-toggle-dot.desktop {
  display: flex;
}

.cf-toggle-contain {
  cursor: pointer;
  background-color: #000;
  border-radius: 20px;
  align-items: center;
  width: 70px;
  height: 34px;
  margin-left: 25px;
  margin-right: 25px;
  padding: 5px;
  display: flex;
}

.cf-toggle-contain.white-toggle {
  background-color: #222938;
  border-radius: 15px;
  width: 60px;
  height: 28px;
}

.cf-toggle-contain.white-toggle.mobile {
  display: none;
}

.cf-toggle-row {
  color: #67779b;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  display: flex;
  position: relative;
}

.cf-toggle-row.hide {
  display: none;
}

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

.cf-pricing-toggle-header-wrapper.pricing-header-toggle {
  justify-content: center;
  margin-top: 40px;
}

.cf-pricing-toggle-header-wrapper.pricing-header-toggle.hide {
  display: none;
}

.cf-pricing-hero-para {
  color: #fff;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.cf-colourful-text {
  background-image: linear-gradient(
    135deg,
    var(--conversion-flow-library--medium-purple),
    var(--conversion-flow-library--light-coral) 49%,
    var(--conversion-flow-library--coral) 75%,
    var(--conversion-flow-library--sandy-brown)
  );
  white-space: normal;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-right: 3px;
  padding-bottom: 0;
  display: inline-block;
}

.cf-pricing-hero-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 32px;
  font-family: Montserrat, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 115%;
}

.cf-white-top-heading {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.cf-pricing-hero-head-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cf-pricing-hero-section {
  background-color: #000;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
}

.brix---btn-primary-full-width {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #222938;
  border-radius: 48px;
  justify-content: center;
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 38px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
  position: absolute;
  inset: auto 0 30px;
}

.brix---btn-primary-full-width:hover {
  color: #fff;
  background-color: #f02d44;
  display: block;
  transform: translate3d(0, -3px, 0.01px);
}

.brix---text-200-list-bold-2 {
  /* white-space: pre; */
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3em;
}

.brix---text-200-list-bold-2.disable {
  color: #c7c7c7;
}

.brix---text-200-list-bold-2.white {
  color: #fff;
  order: -1;
}

.brix---color-neutral-812 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--elements-webflow-library--neutral--800);
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.brix---color-neutral-812.space-between {
  justify-content: space-between;
  width: 100%;
}

.brix---icon-list-2 {
  max-width: 16px;
  margin-bottom: 2px;
  margin-right: 8px;
}

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

.brix---icon-list-item-wrapper-2.margin-top.w100 {
  width: 100%;
}

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

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

.brix---grid-1-column-gap-row-16px-2.hide {
  display: none;
}

.brix---mg-bottom-40px-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  padding-bottom: 80px;
  display: flex;
}

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

.brix---paragraph-default-6 {
  color: #6e7191;
  letter-spacing: 0.6px;
  margin-top: -0.5em;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

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

.brix---text-300-medium {
  color: #6e7191;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

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

.brix---heading-h1-size-2.custom {
  font-size: 30px;
}

.brix---heading-h1-size-2.white {
  color: #222938;
}

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

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

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

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

.brix---pricing-content-v2 {
  float: none;
  text-align: left;
  flex-flow: column;
  height: 100%;
  padding: 40px 28px;
  display: block;
  position: relative;
}

.brix---card-3 {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-01);
  background-color: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.brix---btn-primary-white-full-width {
  color: #222938;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #fff;
  border-radius: 48px;
  justify-content: center;
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 38px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}

.brix---btn-primary-white-full-width:hover {
  color: #f02d44;
  background-color: #f8f8f8;
  transform: translate3d(0, -3px, 0.01px);
}

.brix---color-neutral-814 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--elements-webflow-library--neutral--100);
  align-items: flex-end;
  display: flex;
}

.brix---badge-secondary-small-bold-3 {
  border: 1px none var(--elements-webflow-library--neutral--400);
  box-shadow: 0 2px 12px 0 var(--elements-webflow-library--general--shadow-01);
  color: #ee2542;
  text-align: center;
  background-color: #ee25421c;
  border-radius: 7px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
  display: inline-block;
}

.brix---badge-wrapper-top-right-2 {
  position: absolute;
  inset: 20px 20px auto auto;
}

.brix---card-pricing-popular-3 {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-01);
  background-color: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.package-feature-title {
  color: #222938;
  letter-spacing: 0.4px;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 30px;
}

.package-feature-title.disable {
  color: #c7c7c7;
  font-weight: 700;
}

.package-feature-title.white {
  color: #222938;
}

.text-span-26 {
  font-size: 15px;
  font-weight: 600;
}

.text-span-26.same-size {
  font-size: 13px;
}

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

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

.brix---display-4 {
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 52px;
}

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

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

.brix---text-center-5 {
  text-align: center;
  align-items: baseline;
  display: flex;
}

.brix---btn-primary-small {
  color: var(--elements-webflow-library--neutral--100);
  text-align: center;
  white-space: pre;
  transform-style: preserve-3d;
  background-color: #222938;
  border-radius: 48px;
  justify-content: center;
  height: auto;
  margin-top: 0;
  padding: 12px 25px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

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

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

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

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

.brix---display-5 {
  color: #222938;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.brix---display-5.white {
  color: #fff;
}

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

.brix---square-icon-64px {
  border-radius: 16px;
  max-width: 64px;
  margin-bottom: 5px;
}

.brix---pricing-v9-icon-wrapper {
  margin-right: 16px;
}

.brix---flex-horizontal-pricing-v9 {
  align-items: flex-end;
  max-width: 360px;
  display: flex;
}

.brix---flex-horizontal-pricing-v9.align-top {
  align-items: flex-start;
}

.brix---flex-vertical-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.brix---pricing-content-v9 {
  flex-flow: column;
  justify-content: space-between;
  min-height: 189px;
  padding: 10px 30px 25px;
  display: flex;
  position: relative;
}

.brix---pricing-content-v9.padding-bottom {
  padding-bottom: 40px;
  position: static;
}

.brix---card-4 {
  background-color: #0000;
  border: 1px #e0ddbe;
  border-radius: 24px;
}

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

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

.brix---btn-primary-small-white:hover {
  color: #f02d44;
  background-color: #fff;
  transform: translate3d(0, -3px, 0.01px);
}

.brix---card-pricing-popular-4 {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-01);
  background-color: #222938;
  background-image: linear-gradient(333deg, #ee2742, #fd7452);
  border-radius: 24px;
  position: relative;
}

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

.brix---grid-logo-strip-pricing-v9 {
  grid-column-gap: 14px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: end;
  justify-items: stretch;
  display: grid;
}

.brix---grid-logo-strip-pricing-v9.margin-top {
  grid-column-gap: 14px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: start;
  justify-items: stretch;
  width: 100%;
  margin-top: 20px;
  display: grid;
}

.brix---divider-64px {
  background-color: #e0ddbe;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 35px;
}

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

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

.brix---grid-2-columns---pricing-v9 {
  grid-column-gap: 30px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.brix---grid-2-columns---pricing-v9.pricing-box-2.hide {
  display: none;
}

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

.brix---section-6 {
  color: var(--elements-webflow-library--neutral--100);
  background-color: #f6f3db;
  margin-top: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

.brix---paragraph-default-8 {
  letter-spacing: 0.6px;
  margin-bottom: 0;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
}

.flex-block {
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin-bottom: 0;
}

.div-block-33 {
  grid-column-gap: 21px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 30px;
  margin-top: 0;
  display: flex;
  position: relative;
}

.div-block-33.justify-end {
  text-align: left;
  align-self: flex-end;
  margin-top: 10px;
}

.div-block-33.align-top {
  grid-column-gap: 21px;
  grid-row-gap: 30px;
  align-items: flex-start;
}

.brix---error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
  font-size: 18px;
  line-height: 30px;
}

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

.brix---icon-success-message-big {
  width: 60px;
  margin-bottom: 10px;
}

.brix---success-message {
  background-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--100);
  border-radius: 24px;
  padding: 28px 28px 32px;
  font-size: 18px;
  line-height: 30px;
}

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

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

.brix---text-area {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: var(--elements-webflow-library--neutral--100);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-02);
  border-radius: 22px;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.brix---text-area:hover {
  border-color: var(--elements-webflow-library--accent--primary-1);
  box-shadow: 0 2px 12px 0 var(--elements-webflow-library--general--shadow-03);
}

.brix---text-area:focus {
  border-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--800);
}

.brix---text-area::placeholder {
  color: var(--elements-webflow-library--neutral--600);
  font-size: 18px;
}

.brix---input-label {
  color: var(--elements-webflow-library--neutral--800);
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 20px;
}

.brix---input {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: var(--elements-webflow-library--neutral--100);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-02);
  border-radius: 100px;
  min-height: 70px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 20px;
  transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.brix---input:hover {
  border-color: var(--elements-webflow-library--accent--primary-1);
  box-shadow: 0 2px 12px 0 var(--elements-webflow-library--general--shadow-03);
}

.brix---input:focus {
  border-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--800);
}

.brix---input::placeholder {
  color: var(--elements-webflow-library--neutral--600);
  font-size: 18px;
}

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

.brix---card-form {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: var(--elements-webflow-library--neutral--100);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-01);
  border-radius: 24px;
  min-height: 576px;
  margin-bottom: 0;
  padding: 56px 40px;
}

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

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

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

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

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

.brix---big-icon-left {
  border-radius: 8px;
  max-width: 48px;
  margin-right: 10px;
}

.brix---big-icon-left-mg-extra {
  border-radius: 16px;
  margin-right: 20px;
}

.brix---link-big-icon-wrapper {
  color: var(--elements-webflow-library--neutral--600);
  transform-style: preserve-3d;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, color 0.3s;
  display: flex;
}

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

.brix---link-big-icon-wrapper-2 {
  align-items: flex-start;
}

.brix---link-big-icon-wrapper-no-hover {
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

.brix---text-area-line {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: black black var(--elements-webflow-library--neutral--400);
  background-color: var(--elements-webflow-library--neutral--100);
  min-height: 180px;
  padding: 0 0 16px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.brix---text-area-line:hover {
  border-color: var(--elements-webflow-library--accent--primary-1)
    var(--elements-webflow-library--accent--primary-1)
    var(--elements-webflow-library--neutral--800);
}

.brix---text-area-line:focus {
  border-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--800);
}

.brix---text-area-line::placeholder {
  color: var(--elements-webflow-library--neutral--600);
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}

.brix---input-line {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: black black var(--elements-webflow-library--neutral--400);
  background-color: var(--elements-webflow-library--neutral--100);
  min-height: 84px;
  margin-bottom: 0;
  padding: 0 0 16px;
  font-size: 28px;
  line-height: 40px;
  transition: color 0.3s, border-color 0.3s;
}

.brix---input-line:hover {
  border-bottom-color: var(--elements-webflow-library--neutral--800);
  color: var(--elements-webflow-library--neutral--800);
}

.brix---input-line:focus {
  border-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--800);
}

.brix---input-line::placeholder {
  color: var(--elements-webflow-library--neutral--600);
  font-size: 28px;
  font-weight: 600;
}

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

.brix---text-200 {
  color: #495264;
  letter-spacing: 0.1px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

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

.brix---card-link-icon-wrapper {
  cursor: default !important;
  color: #363f52;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px #ffe7e2;
  border-radius: 14px;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, color 0.3s;
  display: flex;
}

.brix---card-link-icon-wrapper:hover {
  color: #ee2a42;
  border-color: #f56b7a;
  transform: scale3d(0.96, 0.96, 1.01);
}

.brix---card-link-icon-wrapper.padding-right {
  color: #363f52;
  background-color: #fff;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.brix---card-link-icon-wrapper.padding-right:hover {
  color: #ee2a42;
  border-color: #ee2a42;
}

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

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

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

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

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

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

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

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

.brix---grid-contact-v14 {
  grid-column-gap: 60px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 0.9fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.text-block-23 {
  color: #495264;
}

.text-block-24 {
  line-height: 20px;
}

.cf-toggle-save-container-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% -16% -26%;
}

.brix---pricing-content-v99 {
  flex-flow: column;
  justify-content: space-between;
  min-height: 0;
  padding: 10px 20px 15px;
  display: flex;
  position: relative;
}

.brix---pricing-content-v99.padding-bottom {
  padding-bottom: 40px;
  position: static;
}

.text-span-27 {
  color: #f13445;
  font-size: 11px;
}

.text-span-28 {
  color: #ffc3c3;
  font-size: 11px;
}

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

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

.headling-medium {
  text-align: center;
  width: 43%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: 50px;
  line-height: 65px;
}

.accordion-job {
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 70px;
  overflow: hidden;
}

.accordion-item-trigger-2 {
  color: #074032;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 5px;
  padding-left: 25px;
  font-size: 17px;
  text-decoration: none;
  display: flex;
}

.accordion-item-trigger-2:hover {
  color: #074032;
  text-decoration: none;
}

.full-width-item {
  flex: 1;
}

.title-regular {
  color: #67779b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.faq-accordion {
  flex: 1;
  width: 100%;
  min-height: 75px;
  margin-bottom: 25px;
  padding-top: 20px;
  padding-bottom: 5px;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.faq-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: flex-start;
  width: 45px;
  height: 25px;
  margin-top: 50px;
  margin-right: 13px;
  display: flex;
}

.job-tag {
  color: #fff;
  background-color: #222938;
  background-image: linear-gradient(96deg, #ed1f41, #ff7c54);
  border-radius: 200px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  display: inline-block;
}

.job-tag.yellow {
  color: #83661a;
  background-color: #ffc836;
}

.job-tag.aqua {
  color: #67857c;
  background-color: #b0e3d4;
}

.jobs-input {
  width: 80%;
  margin-right: 5%;
}

.jobs-input.last {
  width: 18%;
  margin-right: 0%;
}

.job-description {
  color: #07332f;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.jobst-text {
  color: #222938;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.h3 {
  letter-spacing: -1.55px;
  font-size: 70px;
  line-height: 74px;
}

.content-wrapper {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1225px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}

.content-wrapper._20px {
  margin-top: 20px;
}

.subtitle-box-small {
  width: 100%;
  max-width: 270px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.open-close-box {
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  height: 26px;
  margin-left: 10px;
  display: flex;
  position: relative;
}

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

.pricing-arrow {
  position: relative;
}

.divider-line {
  background-color: #4ef554;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.divider-line.gray {
  background-color: #abc7d1;
}

.section-14 {
  z-index: 1;
  background-color: #f8f8f8;
  padding-top: 4em;
  padding-bottom: 3em;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .section-13 {
    background-color: #f1f0ec;
  }

  .nav-menu {
    max-height: 36px;
  }

  .footer-image {
    min-width: 90px;
    max-width: 100px;
  }

  .nav-link-holder {
    display: none;
  }

  .white-50pct {
    text-align: left;
    align-self: center;
  }

  .brand-logo {
    max-width: 150px;
  }

  .hero-description {
    font-size: 22px;
  }

  .client-logo {
    min-width: 120px;
    max-width: 120px;
  }

  .trusted-by-container {
    text-align: center;
    justify-content: center;
  }

  .grid-clients._1 {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    width: auto;
  }

  .grid-clients._2 {
    width: auto;
  }

  .grid-clients._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .text-container.left-align {
    padding-bottom: 2em;
    font-style: normal;
  }

  .card.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 780px;
    max-height: 600px;
    padding-top: 4em;
  }

  .card-colored-bg {
    overflow: visible;
  }

  .pricing-item {
    grid-template-columns: 0.75fr 0.5fr 0.5fr;
  }

  .pricing-type {
    font-family: Schibsted Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }

  .price.w100 {
    width: auto;
    font-size: 50px;
  }

  .pricing-button-holder {
    align-items: center;
    margin-top: 0;
  }

  .price-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: row;
    align-items: baseline;
  }

  ._40pct-white-text.w100 {
    width: auto;
  }

  .card-list-items-holder {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .card-item-content {
    font-style: normal;
  }

  .secondary-page-holders {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .secondary-hero-image-holder.no-bottom-padding {
    padding-top: 0;
  }

  .secondary-image-holder {
    padding-top: 1em;
  }

  .card-colored-bg-2 {
    padding-bottom: 6em;
  }

  .tab-feature-image-holder {
    min-height: 111px;
  }

  .dropdown-toggle {
    width: 8.5em;
    padding: 0;
    display: inline-block;
  }

  .text-gradient-light-title {
    max-width: 698px;
  }

  .card-image-mac {
    width: 50em;
  }

  .div-block-2 {
    padding-bottom: 30px;
  }

  .feedback-div {
    width: 1.5em;
  }

  .uui-heroheader06_image-02 {
    z-index: 2;
    left: -11%;
  }

  .uui-heroheader06_image-01.shadow-xxlarge.hide-mobile-landscape {
    border-width: 0.8rem;
    border-color: var(--black);
    border-radius: 0.6rem;
    bottom: 1%;
    left: 8%;
  }

  .uui-heroheader06_image-wrapper {
    position: relative;
  }

  .ios-device-holder {
    inset: 5% 9.5% 5% 9%;
  }

  .ios-device-img {
    border-radius: 20px;
  }

  .ipad-device-holder {
    border-radius: 0;
    top: 0%;
    left: 0%;
  }

  .ipad-device-img {
    z-index: 1;
    width: 90%;
  }

  .efi-ft-10-container {
    display: none;
  }

  .nav-link-dropdown.w--current {
    padding-left: 10px;
    padding-right: 30px;
  }

  .icon-grey-2 {
    width: 3rem;
    height: 3rem;
  }

  .grey-dim-4 {
    font-size: 16px;
  }

  .div-block-6 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.25fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    width: 100%;
    display: grid;
  }

  .text-gradient-light-5 {
    font-size: 36px;
  }

  .text-span-5.text-gradient-colorful {
    font-size: 24px;
    font-weight: 500;
  }

  .mac-app-holder-2 {
    object-fit: cover;
    width: 45em;
    height: 25.5em;
    position: absolute;
    top: 7%;
    left: 1%;
  }

  .ios-device-holder-reunion {
    inset: 5% 9.5% 5% 9%;
  }

  .mac-app {
    object-fit: contain;
  }

  .text-gradient-colored-2 {
    font-size: 115px;
  }

  .hero-text-4.text-gradient-light {
    font-size: 80px;
  }

  .mobile-content-tms {
    display: none;
  }

  .card-colored-bg-3 {
    background-color: #d0d5dd;
    background-image: none;
    box-shadow: 0 1px 20px #0003;
  }

  .mobile-content-dep {
    display: none;
  }

  .content-dapp {
    max-width: 600px;
  }

  .mobile-content-smg {
    display: none;
  }

  .content-erp {
    max-width: 600px;
  }

  .mobile-content-erp,
  .mobile-content-dapp {
    display: none;
  }

  .content-dapp-copy {
    max-width: 600px;
  }

  .mac-app-holder-4 {
    object-fit: cover;
    width: 45em;
    height: 25.5em;
    position: absolute;
    top: 7%;
    left: -6%;
  }

  .card-image.card-no-bottom-padding {
    height: 100%;
    min-height: 780px;
    padding-top: 6.5em;
  }

  .mobile-content-smg-copy {
    display: none;
  }

  .card-mac.card-no-bottom-padding,
  .small-card.card-no-bottom-padding {
    height: 100%;
    min-height: 780px;
    padding-top: 6.5em;
  }

  .mobile-content-mlm {
    display: none;
  }

  .genius-img-holder {
    z-index: -1;
    top: 3%;
    left: 6%;
    right: 6%;
  }

  .genius-img {
    z-index: -1;
    object-fit: cover;
  }

  .card-image-iphone-copy {
    z-index: 1;
  }

  .text-container-team.left-align,
  .text-container-copy.left-align {
    padding-bottom: 2em;
    font-style: normal;
  }

  .text-description {
    font-size: 22px;
  }

  .content-milestone {
    display: block;
  }

  .grid-clients-list._1 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .grid-clients-list-2._1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .mobile-content-fos {
    display: none;
  }

  .clients-logo-list {
    z-index: 0;
    overflow: hidden;
  }

  .client-div {
    width: 2em;
  }

  .feedback-div-2 {
    width: 3em;
  }

  .white-50pct-one {
    text-align: left;
    align-self: center;
  }

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

  .div-block-21 {
    width: 1.7em;
    height: 1.7em;
  }

  .div-block-21.p2 {
    height: auto;
    padding: 3px;
  }

  .pricing-compare-item-header {
    grid-template-columns: 1.25fr 1fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .pricing-compare-item-header.with-bg {
    background-color: #ffb24d12;
    border-radius: 41px;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
  }

  .pricing-compare-item-header.round-border {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .pricing-compare-item-header.category-style {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-center.right-top-corner {
    width: 100%;
  }

  .pricing-info-title {
    color: #464646;
    font-size: 18px;
    font-weight: 500;
  }

  .pricing-info-title.red {
    color: var(--primary);
    font-weight: 500;
  }

  .pricing-count {
    color: #464646;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
  }

  .pricing-count.red {
    color: var(--primary);
    font-size: 26px;
  }

  .pricing-compare-title {
    font-size: 18px;
    font-weight: 500;
  }

  .pricing-compare-header {
    background-color: #f60307;
    background-image: linear-gradient(167deg, #ef29438c, #fb8b6fbf 56%);
    border-radius: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
  }

  .pricing-compare-header.cta {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 15px;
    box-shadow: 0 10px 40px #00000042;
  }

  .pricing-compare-icon {
    height: 30px;
  }

  .text-block-17 {
    color: #464646;
    line-height: 1.4;
  }

  .pricing-text {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }

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

  .text-span-20 {
    color: #8b8b8b;
    letter-spacing: 0.02em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
      Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
      sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  .button-4 {
    color: var(--primary);
    background-color: #fff;
  }

  .feature-wrap {
    padding-left: 2em;
    padding-right: 2em;
  }

  .single-feaure-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 25px;
    display: block;
  }

  .feature-content-wrap {
    background-color: #faf8f8;
    border-radius: 20px;
    padding: 10px 20px 20px;
  }

  .feature-icon-wrap {
    background-color: var(--black);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    display: flex;
  }

  .feature-title {
    color: var(--black);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
  }

  .feature-excerpt {
    color: #8b8b8b;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
      Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
      sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
  }

  .feature-image-wrap {
    background-color: #fff0;
    border: 1px #c2c7d0;
    border-radius: 0;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
    position: relative;
  }

  .feature-icon-new {
    object-fit: fill;
    width: 35px;
    max-width: none;
    height: 35px;
    padding: 0;
  }

  .section-8 {
    background-color: #f8f8f8;
  }

  .two-column-wrapper {
    grid-column-gap: 100px;
  }

  .image-style-solo {
    height: 540px;
  }

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

  .section-9.light-background {
    padding-bottom: 100px;
  }

  .home-feature-number-new {
    font-size: 64px;
  }

  .section-10 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .text-container-6.left-align {
    padding-bottom: 2em;
    font-style: normal;
  }

  .icon-grey-3 {
    width: 3rem;
    height: 3rem;
  }

  .feedback-div-3 {
    width: 1.5em;
  }

  .brix---heading-h1-size-2,
  .brix---display-4 {
    font-size: 34px;
  }

  .accordion-item-trigger-2:hover {
    color: #060606;
  }

  .section-14 {
    background-color: #f8f8f8;
  }
}

@media screen and (min-width: 1440px) {
  .section-13 {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section-13.ligher-grey-bg {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .section-13.ligher-grey-bg.zindex-3 {
    padding-top: 35px;
  }

  .section-13.ligher {
    padding-top: 50px;
  }

  .section-13.ligher.zindex-3 {
    background-color: var(--black);
    padding-bottom: 30px;
  }

  .container {
    background-color: #0000;
    max-width: 1350px;
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .container.no-padding-bottom {
    padding: 6em 0 0;
  }

  .container.clients-container {
    display: none;
  }

  .nav-menu {
    max-height: 36px;
  }

  .footer {
    background-color: #0000;
    padding-bottom: 3em;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 0.75fr;
  }

  .footer-logo-link.w--current {
    font-size: 16px;
  }

  .footer-image {
    min-width: 90px;
    max-width: 100px;
    margin-left: 0;
  }

  .made-by-section {
    justify-content: space-between;
  }

  .nav-link-holder {
    display: none;
  }

  .content {
    max-width: 600px;
  }

  .white-50pct {
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
  }

  .menu-button {
    display: none;
  }

  .copyright-text {
    flex-wrap: nowrap;
    flex: 0 auto;
    justify-content: flex-start;
    display: flex;
  }

  .hero-text {
    font-size: 75px;
    line-height: 1.2;
  }

  .button {
    text-align: center;
    justify-content: center;
    width: 180px;
  }

  .button.with-icon {
    text-align: left;
    align-self: flex-start;
    align-items: center;
    width: 188px;
    padding-right: 65px;
  }

  .button.with-icon:hover {
    color: #f3f3f3;
  }

  .button.empty-button:hover {
    color: #1a1a1c;
    background-color: #eee;
  }

  .brand-logo {
    width: 100%;
    max-width: 180px;
  }

  .nav-link.w--current {
    background-image: linear-gradient(to right, #6eff89, #715cff);
    font-size: 14px;
  }

  .link-background {
    z-index: -1;
    background-image: linear-gradient(65deg, var(--primary), var(--secondary));
    display: none;
  }

  .link-background:hover {
    background-image: none;
    text-decoration: underline;
  }

  .footer-description {
    margin-top: -2em;
    line-height: 1.5;
  }

  .social-media-icon {
    width: 30px;
    height: 30px;
    padding: 5px;
  }

  .hero-description {
    max-width: 800px;
    margin-top: 10px;
    font-family: Archivo, sans-serif;
    font-size: 22px;
    line-height: 1.5;
  }

  .client-logo {
    min-width: 120px;
    max-width: 120px;
  }

  .text-gradient-light {
    margin-bottom: 25px;
    font-size: 56px;
    line-height: 1.2;
  }

  .hero-text-xl {
    font-size: 120px;
    line-height: 1;
  }

  .text-gradient-colored {
    font-size: 105px;
    line-height: 1;
    text-decoration: underline;
  }

  .grid-clients._1 {
    grid-column-gap: 0.1em;
    grid-row-gap: 0.1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-clients._2 {
    grid-column-gap: 0.1em;
    grid-row-gap: 0.1em;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .grid-clients._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .text-container {
    padding-bottom: 2em;
    line-height: 1;
  }

  .text-container.left-align {
    padding-bottom: 2em;
  }

  .small-content {
    padding-bottom: 0;
    font-size: 16px;
  }

  .small-content.no-auto-margin {
    font-size: 16px;
    line-height: 1;
  }

  .card.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 780px;
    padding-top: 6.5em;
    padding-bottom: 0;
    padding-left: 4em;
  }

  .card.card-tab-feature {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3em 2em;
  }

  .card.pricing-card {
    z-index: 1;
  }

  .card.pricing-card:hover {
    background-image: linear-gradient(
      140deg,
      var(--primary),
      #5598b4 44%,
      var(--secondary)
    );
  }

  .card.pricing-card.main-pricing-card {
    z-index: 2;
  }

  .card.pricing-card.main-pricing-card:hover {
    background-image: linear-gradient(
      140deg,
      var(--primary),
      #53a1ab 44%,
      var(--secondary)
    );
  }

  .card-title.no-margin-top {
    font-size: 26px;
  }

  .card-colored-bg {
    background-image: linear-gradient(
      87deg,
      var(--primary),
      #03f6f4b3 44%,
      var(--secondary)
    );
  }

  .preloader {
    object-fit: cover;
    width: auto;
    height: auto;
    display: none;
  }

  .card-side-content {
    border: 1px none var(--light-black);
    align-items: flex-start;
  }

  .list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
  }

  .list-item-with-check {
    font-family: Schibsted Grotesk, sans-serif;
    font-size: 20px;
    font-weight: 500;
  }

  .iphone {
    z-index: 3;
    max-height: 680px;
    position: relative;
  }

  .pricing-grid {
    padding-top: 5%;
  }

  .card-list-items-holder {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-right: 8em;
    display: grid;
  }

  .slider-container {
    display: none;
  }

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

  .heading-4-style {
    font-size: 18px;
    font-weight: 500;
  }

  .feature-icon {
    color: #98caff;
    background-color: #f1f1f126;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 12px;
  }

  .play-icon-holder {
    margin-top: -76px;
    position: absolute;
    inset: 50% auto auto 50%;
  }

  .pricing-tab-pane {
    padding-top: 0;
  }

  .secondary-page-holders {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    line-height: 1.3;
  }

  .grid-3-features {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    padding-top: 2em;
    display: grid;
  }

  .preloader-bg {
    background-image: linear-gradient(
      173deg,
      var(--primary),
      var(--gradient-color-3) 28%,
      var(--gradient-color-3) 46%,
      #30b6ff 62%,
      transparent 75%,
      var(--secondary)
    );
  }

  .secondary-hero-image-holder {
    padding-top: 0;
    padding-bottom: 10em;
  }

  .secondary-image-holder {
    padding-top: 1.5em;
  }

  .features-image-gradient {
    line-height: 1.6;
  }

  .features-card-heading {
    margin-bottom: 0;
  }

  .features-card-sx-heading:hover {
    color: #ed1f41;
  }

  .card-side-content-items {
    padding-left: 1em;
  }

  .card-side-content-item {
    margin-top: 0;
    padding-top: 30px;
  }

  .team-list._4-columns {
    max-width: 50em;
  }

  .footer-gradient-bg-holder {
    width: 96%;
    height: 24vw;
  }

  .company-image {
    width: 10%;
  }

  .ios-app {
    object-fit: cover;
    border-radius: 0;
  }

  .ios-app-holder {
    bottom: 0%;
  }

  .nav-last-button-holder {
    display: block;
  }

  .clients-list {
    background-color: #0000;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tabs {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .tabs-menu {
    background-color: var(--dim-grey);
    display: none;
    overflow: visible;
  }

  .tab-card-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    border: 0px none var(--dim-grey);
    background-color: #0000;
    border-radius: 100px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tab-feature-image-holder {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2em;
    margin-bottom: 0.5em;
  }

  .ios-side-app-holder {
    border-radius: 27px;
    left: 10%;
    right: 9%;
  }

  .dropdown {
    flex: 0 auto;
    height: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: none;
  }

  .dropdown-toggle {
    object-fit: fill;
    background-color: #0000;
    border-radius: 100px;
    width: 8.5em;
    height: auto;
    margin-left: 10px;
    margin-right: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    transition: all 1s cubic-bezier(1, -0.005, 0, 1.048);
    display: block;
  }

  .dropdown-toggle:hover {
    background-color: #0000;
  }

  .text-block {
    color: #fffc;
    text-align: left;
    border-radius: 20px;
    justify-content: flex-start;
    font-weight: 500;
    display: block;
  }

  .icon {
    color: #fffc;
    width: auto;
    font-size: 12px;
    font-weight: 400;
  }

  .dropdown-list {
    border-radius: 20px;
  }

  .dropdown-list.w--open {
    opacity: 1;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    outline-color: var(--secondary);
    outline-offset: 0px;
    -webkit-text-fill-color: inherit;
    mix-blend-mode: normal;
    background-color: #5858584d;
    background-clip: border-box;
    border-radius: 10px;
    outline-width: 1px;
    outline-style: none;
    margin-top: 15px;
    margin-left: 5px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
  }

  .dropdown-link {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-link:hover {
    color: var(--nav-line-gradient-3);
  }

  .dropdown-link-2 {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    transition-property: none;
  }

  .dropdown-link-2:hover {
    color: var(--untitled-ui-primary200);
  }

  .dropdown-link-3 {
    color: #fff;
    transition-property: none;
  }

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

  .paragraph {
    font-size: 20px;
  }

  .paragraph-2 {
    color: #fff0;
  }

  .grey20 {
    color: var(--dim-grey);
    text-align: justify;
    max-width: none;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .text-span {
    letter-spacing: 1px;
    font-size: 40px;
  }

  .text-span-2,
  .text-span-3 {
    font-size: 40px;
  }

  .column {
    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;
    place-content: center;
    align-items: center;
    padding-top: 5px;
    display: flex;
  }

  .column-2 {
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    display: flex;
  }

  .justify-grey-dim {
    color: var(--dim-grey);
    text-align: justify;
  }

  .small-secondary-text {
    color: var(--dim-grey);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
  }

  .bold-text-2 {
    color: var(--light-grey);
    font-size: 25px;
    font-weight: 400;
  }

  .udesly-text-black {
    color: var(--accessible-components-dark-grey);
    padding-top: 5px;
    font-size: 0.8rem;
    line-height: 2;
    display: block;
  }

  .udesly-seconds-left {
    background-image: repeating-linear-gradient(
      225deg,
      var(--primary),
      var(--secondary)
    );
    opacity: 0.7;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: exclusion;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 500;
  }

  .udesly-minutes-left,
  .udesly-hours-left {
    font-size: 2.5rem;
  }

  .udesly-days-left {
    font-size: 2.5rem;
    display: block;
  }

  .udesly-countdown-wrapper {
    width: 705px;
    margin-bottom: 0;
    padding-top: 10px;
  }

  .portfolio-link {
    z-index: -1;
    background-image: linear-gradient(65deg, var(--primary), var(--secondary));
    border-radius: 100px;
    height: auto;
    padding-bottom: 30px;
    position: absolute;
    inset: 0%;
  }

  .icon-grey {
    color: #fffc;
    -webkit-text-stroke-color: #fffc;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fffc, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    align-items: flex-start;
    width: 3em;
    height: 3em;
    font-size: 12px;
  }

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

  .icon-embed-xxsmall {
    width: 4em;
    height: 4em;
  }

  .grey20-center {
    color: var(--dim-grey);
    text-align: center;
    max-width: none;
    margin-bottom: 40px;
    font-family: Archivo, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
  }

  .fs_numbercount-1_wrapper {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    text-align: left;
    background-color: #0000;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fs_numbercount-1_component {
    width: 60%;
  }

  .bold-text-3 {
    font-size: 28px;
  }

  .greyshadowtext {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #fffc, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 32px;
    font-weight: 400;
  }

  .text-gradient-light-title {
    max-width: 800px;
    font-size: 56px;
    line-height: 1.2;
  }

  .grey20-subtitle {
    color: var(--dim-grey);
    text-align: center;
    max-width: none;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
  }

  .heading {
    font-size: 45px;
  }

  .uui-heading-xxsmall {
    color: var(--light-grey);
    font-family: Open Sans, sans-serif;
    font-size: 20px;
    font-weight: 600;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .container-2 {
    max-width: 1200px;
  }

  .uui-layout14_image {
    width: 48rem;
  }

  .uui-layout14_item-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .card-image-mac {
    width: 50em;
  }

  .mac-app-holder {
    object-fit: cover;
    border-radius: 0;
    width: 45em;
    height: 25.5em;
    top: 7%;
    left: -5.5%;
    right: 0%;
  }

  .feature-icon-2 {
    color: #fafafa;
    background-color: #f1f1f126;
    border-radius: 15px;
    width: 65px;
    height: 65px;
    padding: 12px;
    font-size: 12px;
  }

  .udesly-overflow-hidden {
    font-family: Archivo, sans-serif;
    font-weight: 400;
  }

  .udesly-morph {
    color: var(--accessible-components-white-smoke);
    font-size: 3rem;
  }

  .text-gradient-colourful {
    background-image: linear-gradient(
      to bottom,
      var(--nav-line-gradient-3),
      #9d8ff8
    );
    font-size: 32px;
  }

  .text-gradient-colorful {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: underline;
  }

  .greywhite20 {
    color: var(--bg-grey);
    text-align: justify;
    max-width: none;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
  }

  .div-block-2 {
    justify-content: flex-start;
    margin-top: 120px;
    padding-top: 0;
    padding-bottom: 50px;
    display: flex;
  }

  .progress {
    background-color: var(--nav-line-gradient-3);
    mix-blend-mode: color-dodge;
    border: 0 #0000;
    border-radius: 20px;
    width: 30%;
    height: 0;
    padding-bottom: 10px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  .progress-bar {
    background-color: #f1f1f126;
    border-radius: 20px;
    width: 100%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
  }

  ._751progress {
    mix-blend-mode: color-dodge;
    background-color: #4ffef8;
    border: 0 #0000;
    border-radius: 20px;
    width: 75%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._752progress {
    mix-blend-mode: color-dodge;
    background-color: #fd4ffe;
    border: 0 #0000;
    border-radius: 20px;
    width: 75%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._801progress {
    background-color: var(--secondary);
    mix-blend-mode: color-dodge;
    border: 0 #0000;
    border-radius: 20px;
    width: 80%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._951progress {
    mix-blend-mode: color-dodge;
    background-color: #1bea9e;
    border: 0 #0000;
    border-radius: 20px;
    width: 95%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._501progress {
    mix-blend-mode: color-dodge;
    background-color: #f8b26b;
    border: 0 #0000;
    border-radius: 20px;
    width: 50%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._502progress {
    mix-blend-mode: color-dodge;
    background-color: #f86b6b;
    border: 0 #0000;
    border-radius: 20px;
    width: 50%;
    height: 0;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  .progresstext {
    color: var(--light-grey);
    margin-bottom: 0.8rem;
    font-family: Open Sans, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }

  .white-50pct-center {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
  }

  .text-gradient-light-benefit {
    max-width: 800px;
    margin-bottom: 10px;
    font-size: 56px;
  }

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

  .container-3 {
    width: 100%;
    max-width: 0;
  }

  .feedback-div {
    width: 1.5em;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .talk-to-us {
    font-size: 70px;
    font-weight: 700;
    line-height: 0.8;
    text-decoration: underline;
  }

  .nav-link-holder-home {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .nav-link-holder-talk-to-us {
    display: block;
  }

  .link-background-white {
    z-index: -1;
    background-image: linear-gradient(65deg, var(--primary), var(--secondary));
    display: block;
  }

  .link-background-white:hover {
    background-image: none;
    text-decoration: underline;
  }

  .link-background-white.white-link-bg {
    background-image: none;
  }

  .card-device-combination {
    max-width: 250px;
    height: 700px;
  }

  .device-app-holder {
    top: 3%;
    bottom: 36%;
  }

  .uui-heroheader06_image-02 {
    width: 16rem;
    min-width: 16rem;
    top: auto;
    left: -8%;
  }

  .uui-heroheader06_image-01.shadow-xxlarge.hide-mobile-landscape {
    border-width: 0.8rem;
    border-color: #000;
    border-radius: 0.6rem;
    width: 48rem;
    min-width: 48rem;
    left: 8%;
    right: auto;
  }

  .uui-heroheader06_image-wrapper {
    border-radius: 50px;
    min-height: 37.6rem;
  }

  .device-combination {
    max-width: 300px;
  }

  .ios-device-holder {
    z-index: 2;
    background-color: #fff0;
    border-radius: 0;
    inset: 5% 9.5% 5% 9%;
  }

  .ios-device-img {
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    inset: 0%;
  }

  .ipad-device-holder {
    border-radius: 0;
    inset: 0% 11% 0% 0%;
  }

  .ipad-device-img {
    z-index: 0;
    border-radius: 0;
    width: 100%;
  }

  .uui-text-size-medium-2 {
    color: var(--dim-grey);
  }

  .uui-icon-1x1-xsmall-2 {
    color: #21c940;
  }

  .uui-icon-featured-outline-large-2 {
    color: #7d5bc6;
    background-color: #deffee;
  }

  .uui-layout84_content-bottom-2 {
    grid-template-columns: 0.75fr 1.5fr 0.75fr;
  }

  .uui-text-size-large-2 {
    color: var(--dim-grey);
  }

  .uui-max-width-large-2 {
    clear: none;
    object-fit: fill;
    flex-flow: column;
    place-content: space-around center;
    align-items: center;
    max-width: 48rem;
    padding-top: 0;
    display: flex;
  }

  .uui-padding-vertical-xhuge-3 {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .ios-device-holder-center {
    inset: 2% 25% -4% 28%;
  }

  .ios-device-img-center {
    z-index: 0;
    border-radius: 30px;
    width: 100%;
    left: 0%;
  }

  .div-block-3 {
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .div-block-3-copy {
    flex-direction: column;
    flex: 0 auto;
    order: 0;
    justify-content: center;
    align-self: center;
    align-items: flex-end;
    line-height: 0;
    display: block;
  }

  .booking-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 32px;
  }

  .efi-h5 {
    color: var(--untitled-ui-gray800);
  }

  .ft-10-tab-link {
    color: var(--accessible-components-dark-grey);
    display: block;
  }

  .ft-10-tab-link.w--current {
    color: var(--accessible-components-dark-grey);
    display: none;
  }

  .efi-paragraph {
    color: var(--accessible-components-white-smoke);
    margin-top: 25px;
    font-style: normal;
  }

  .efi-h2 {
    font-style: normal;
  }

  .efi-ft-10-grid {
    align-content: stretch;
    align-items: stretch;
  }

  .efi-ft-10-container {
    display: none;
  }

  .efi-description {
    color: var(--dim-grey);
  }

  .efi-accordion-paragraph {
    font-size: 16px;
  }

  .efi-plus-icon {
    -webkit-text-fill-color: inherit;
    background-clip: content-box;
  }

  .efi-h4 {
    color: #1a1e27;
    font-size: 28px;
  }

  .card-copy {
    height: 100%;
    min-height: 800px;
  }

  .card-copy.card-no-bottom-padding {
    height: 100%;
    min-height: 800px;
    padding-top: 6.5em;
    padding-bottom: 0;
    padding-left: 1.5em;
  }

  .card-copy.card-tab-feature {
    padding: 1em 1em 3em;
  }

  .slider-2 {
    min-height: 700px;
  }

  .ios-device-perspective._2,
  .ios-device-perspective._1 {
    z-index: -1;
  }

  .nav-link-dropdown {
    justify-content: space-around;
    padding-left: 10px;
    padding-right: 30px;
  }

  .rl-text-style-regular {
    font-family: Archivo, sans-serif;
    font-size: 16px;
  }

  .rl-heading-style-h4 {
    color: var(--untitled-ui-gray600);
    font-family: Schibsted Grotesk, sans-serif;
    font-size: 28px;
    font-weight: 700;
  }

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

  .text-gradient-light-copy {
    background-color: var(--black);
    background-image: none;
    margin-bottom: 25px;
    font-size: 32px;
  }

  .darkblue20 {
    color: var(--untitled-ui-gray600);
    text-align: justify;
    max-width: none;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .heading-3 {
    margin-bottom: 20px;
    line-height: 0.8;
  }

  .fn-cover-image {
    max-width: 100%;
  }

  .fn-featured-tabs-content {
    width: 45%;
  }

  .fn-tabs-paragraph {
    text-align: justify;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 18px;
    line-height: 1.4;
  }

  .fn-container-grid.relative {
    order: 1;
    place-items: stretch stretch;
    min-height: 780px;
  }

  .left-brain-tab-title {
    color: var(--light-grey);
    font-family: Open Sans, sans-serif;
    font-size: 20px;
    font-weight: 600;
  }

  .mac-frame {
    max-height: 40rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .mac-device-holder-center {
    width: 100%;
    max-width: 33.9em;
    inset: 6% -1% 0% 4%;
  }

  .mac-device-img-center {
    z-index: 0;
    object-fit: contain;
    border-radius: 20px;
    width: 100%;
    left: 0%;
  }

  .container-4 {
    max-width: 1350px;
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .white-50pct-2 {
    line-height: 1.5;
  }

  .text-gradient-light-3 {
    font-style: normal;
  }

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

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

  .text-gradient-light-4 {
    margin-bottom: 25px;
    font-size: 32px;
  }

  .icon-grey-2 {
    color: #fffc;
    -webkit-text-stroke-color: #fffc;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fffc, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    align-items: flex-start;
    width: 3em;
    height: 3em;
  }

  .grey-dim-4 {
    font-size: 16px;
  }

  .grid-3-features-4 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: grid;
  }

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

  .text-gradient-light-5 {
    margin-bottom: 25px;
    font-size: 36px;
  }

  .text-span-4 {
    color: var(--untitled-ui-gray100);
  }

  .text-span-5 {
    font-size: 24px;
  }

  .text-span-5.text-gradient-colorful {
    font-weight: 500;
  }

  .mac-app-holder-2 {
    object-fit: cover;
    width: 45em;
    height: 25.5em;
    position: absolute;
    top: 7%;
    left: 1%;
  }

  .ios-device-holder-reunion {
    z-index: 2;
    background-color: #fff0;
    border-radius: 0;
    inset: 4% 9.5% 5% 9%;
  }

  .ios-device-img-reunion {
    z-index: 1;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    inset: 0%;
  }

  .heading-4 {
    line-height: 1;
  }

  .mac-app {
    object-fit: contain;
    border-radius: 0;
  }

  .nav-link-holder-about-us {
    display: block;
  }

  .mac-app-holder-3 {
    object-fit: contain;
    width: 45em;
    height: 25.5em;
    position: absolute;
    top: 7%;
    left: 5%;
  }

  .dropdown-link-4 {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    transition-property: none;
  }

  .dropdown-link-4:hover {
    color: #8ae89c;
  }

  .dropdown-link-5 {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    transition-property: none;
  }

  .dropdown-link-5:hover {
    color: var(--untitled-ui-primary300);
  }

  .dropdown-link-6 {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    transition-property: none;
  }

  .dropdown-link-6:hover {
    color: #56fc75;
  }

  .dropdown-link-7 {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    transition-property: none;
  }

  .dropdown-link-7:hover {
    color: var(--untitled-ui-primary500);
  }

  .dropdown-link-8 {
    border-bottom: 1px solid var(--dim-grey);
    color: #fff;
    transition-property: none;
  }

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

  .button-download {
    text-align: center;
    justify-content: center;
    width: 222px;
  }

  .button-download.with-icon {
    text-align: left;
    align-self: flex-start;
    align-items: center;
    width: 188px;
    padding-right: 65px;
  }

  .required {
    color: #ff5353;
  }

  .text-gradient-colored-small {
    font-size: 105px;
    line-height: 1;
    text-decoration: underline;
  }

  .button-say-hello {
    text-align: center;
    justify-content: center;
    width: 180px;
  }

  .button-say-hello.with-icon {
    text-align: left;
    align-self: flex-start;
    align-items: center;
    width: 188px;
    padding-right: 65px;
  }

  .container-5 {
    background-color: #0000;
    max-width: 1350px;
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .container-5.clients-container {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .feedback {
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .feedback.ligher-grey-bg {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .feedback.ligher-grey-bg.zindex-3 {
    padding-top: 35px;
  }

  .feedback.ligher {
    padding-top: 50px;
  }

  .feedback.ligher.zindex-3 {
    background-color: var(--light-black);
  }

  .grid-clients-first._1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .text-gradient-colored-2 {
    font-size: 160px;
    line-height: 1;
    text-decoration: underline;
  }

  .button-2 {
    text-align: center;
    justify-content: center;
    width: 180px;
  }

  .button-2.with-icon {
    text-align: left;
    align-self: flex-start;
    align-items: center;
    width: auto;
    padding-right: 65px;
  }

  .hero-text-4 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-text-4.text-gradient-light {
    margin-bottom: 0;
    font-size: 100px;
  }

  .div-block-7 {
    text-align: center;
    justify-content: center;
    padding-bottom: 20px;
    display: flex;
  }

  .container-6 {
    max-width: 1350px;
  }

  .grey-dim-6 {
    text-align: justify;
  }

  .mobile-content-tms {
    display: none;
  }

  .card-colored-bg-3 {
    background-color: #d0d5dd;
    background-image: none;
    box-shadow: 0 1px 20px #00183f4d;
  }

  .mobile-content-dep,
  .mobile-content-crm {
    display: none;
  }

  .content-dapp {
    max-width: 600px;
  }

  .card-col {
    background-image: linear-gradient(
      87deg,
      var(--primary),
      #03f6f4b3 44%,
      var(--secondary)
    );
  }

  .mobile-content-smg {
    display: none;
  }

  .content-erp {
    max-width: 600px;
  }

  .mobile-content-erp,
  .mobile-content-dapp {
    max-width: 600px;
    display: none;
  }

  .feature-content,
  .content-dapp-copy {
    max-width: 600px;
  }

  .mac-app-holder-4 {
    object-fit: cover;
    width: 45em;
    height: 25.5em;
    position: absolute;
    top: 7%;
    left: -6%;
  }

  .card-image.card-no-bottom-padding {
    height: 100%;
    min-height: 780px;
    padding-top: 6.5em;
    padding-bottom: 0;
    padding-left: 4em;
  }

  .card-image.card-tab-feature {
    padding: 1em 1em 3em;
  }

  .mobile-content-smg-copy {
    display: none;
  }

  .card-mac.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 780px;
    padding-top: 6.5em;
    padding-bottom: 0;
    padding-left: 4em;
  }

  .card-mac.card-tab-feature {
    padding: 1em 1em 3em;
  }

  .small-card.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 780px;
    padding-top: 6.5em;
    padding-bottom: 0;
    padding-left: 4em;
  }

  .small-card.card-tab-feature {
    padding: 1em 1em 3em;
  }

  .mobile-content-mlm {
    display: none;
  }

  .genius-img-holder {
    object-fit: contain;
    inset: 3% 6% 0%;
  }

  .genius-img {
    object-fit: cover;
    border-radius: 0;
    width: 100%;
    max-width: 500px;
  }

  .text-span-9,
  .text-span-10,
  .text-span-11 {
    padding-left: 0.25em;
  }

  .udesly-vega-effect {
    font-size: 3rem;
  }

  .heading-5 {
    margin-top: 20px;
    font-size: 50px;
  }

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

  .waves-bottom-gird-gallery-3,
  .waves-top-grid-gallery-3 {
    max-width: 90vw;
    overflow: hidden;
  }

  .text-container-team {
    padding-bottom: 2em;
    line-height: 1;
  }

  .text-container-team.left-align {
    padding-bottom: 2em;
  }

  .text-container-copy {
    padding-bottom: 0;
    line-height: 1;
  }

  .text-container-copy.left-align {
    padding-bottom: 2em;
  }

  .text-description {
    max-width: 800px;
    margin-top: 10px;
    font-family: Archivo, sans-serif;
    font-size: 22px;
    line-height: 1.5;
  }

  .content-milestone {
    max-width: 600px;
  }

  .features-card-sx-heading-dep:hover {
    color: var(--bg-grey);
  }

  .grid-clients-list._1 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-clients-list._2 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .grid-clients-list-2._2 {
    grid-column-gap: 0.1em;
    grid-row-gap: 0.1em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .grid-clients-list-2._1 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-clients-list-2._2 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .mobile-content-fos {
    display: none;
  }

  .link-background-talk {
    z-index: -1;
    display: block;
  }

  .link-background-talk:hover {
    background-image: linear-gradient(65deg, var(--primary), var(--secondary));
    text-decoration: underline;
  }

  .partner-section {
    max-width: none;
    padding-top: 10px;
    padding-bottom: 30px;
    display: block;
  }

  .partner-section.ligher-grey-bg {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .partner-section.ligher-grey-bg.zindex-3 {
    padding-top: 35px;
  }

  .partner-section.ligher {
    padding-top: 50px;
  }

  .partner-section.ligher.zindex-3 {
    background-color: var(--light-black);
    padding-bottom: 30px;
  }

  .clients-logo-list {
    background-color: #0000;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .nav-link-holder-product {
    display: block;
  }

  .content-price {
    max-width: 600px;
  }

  .nav-link-holder-about-us-copy {
    display: block;
  }

  .container-9 {
    max-width: 1350px;
  }

  .feedbacktwo {
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .feedbacktwo.ligher-grey-bg {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .feedbacktwo.ligher-grey-bg.zindex-3 {
    padding-top: 35px;
  }

  .feedbacktwo.ligher {
    padding-top: 50px;
  }

  .feedbacktwo.ligher.zindex-3 {
    background-color: var(--light-black);
  }

  .feedback-two {
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .feedback-two.ligher-grey-bg {
    padding-top: 30px;
    padding-bottom: 80px;
    display: block;
  }

  .feedback-two.ligher-grey-bg.zindex-3 {
    padding-top: 35px;
  }

  .feedback-two.ligher {
    padding-top: 50px;
  }

  .feedback-two.ligher.zindex-3 {
    background-color: var(--light-black);
  }

  .text-container-3 {
    padding-bottom: 0;
    line-height: 1;
  }

  .feedback-div-2 {
    padding-bottom: 0;
    padding-left: 2em;
    padding-right: 0;
    display: block;
  }

  .container-10 {
    background-color: #0000;
    max-width: 1350px;
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .clients-list-3 {
    background-color: #0000;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grey20-subtitle-2 {
    color: #878d95;
    text-align: center;
    max-width: none;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
  }

  .feedback-2 {
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .feedback-2.ligher-grey-bg {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .container-11 {
    background-color: #0000;
    max-width: 1350px;
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .clients-list-4 {
    background-color: #0000;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grey20-subtitle-3 {
    color: #878d95;
    text-align: center;
    max-width: none;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
  }

  .mac-app-holder-5 {
    object-fit: contain;
    width: 45em;
    height: 25.5em;
    position: absolute;
    top: 7%;
    left: 5%;
  }

  .white-50pct-one {
    color: #fff;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
  }

  .heading-6 {
    max-width: 1000px;
  }

  .div-block-16 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .how-it-works-left-wrap {
    max-width: 800px;
  }

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

  .ios-app-holder-3 {
    bottom: 0%;
  }

  .image-9 {
    object-fit: cover;
  }

  .pricing-compare-item-header {
    grid-template-columns: 1.25fr 1fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .pricing-compare-item-header.round-border {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .pricing-compare-item-header.category-style {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-center.right-top-corner {
    width: 100%;
  }

  .pricing-compare-header {
    background-image: linear-gradient(167deg, #ef29438c, #fb8b6fbf 56%);
  }

  .pricing-compare-header.cta {
    border-radius: 20px;
    padding-right: 15px;
  }

  .text-span-21 {
    font-size: 40px;
  }

  .button-4 {
    text-align: center;
    justify-content: center;
    width: 180px;
  }

  .button-4.empty-button:hover {
    color: #1a1a1c;
    background-color: #eee;
  }

  .feature-wrap {
    padding-left: 10em;
    padding-right: 10em;
  }

  .single-feaure-wrap {
    grid-template-columns: 1fr 1.75fr;
  }

  .feature-content-wrap {
    background-color: #faf8f8;
  }

  .feature-image-wrap {
    height: 500px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .feature-image-wrap._2 {
    width: 600px;
  }

  .feature-icon-new {
    color: #98caff;
    background-color: #f1f1f126;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 12px;
  }

  .cf-choose-feature-name-container {
    height: 50px;
  }

  .brix---grid-content-v15 {
    grid-column-gap: 100px;
  }

  .container-14,
  .container-15 {
    max-width: 1350px;
  }

  .tab-feature-image-holder-4 {
    min-height: 320px;
  }

  .container-16,
  .container-17,
  .container-18 {
    max-width: 1350px;
  }

  .section-8 {
    padding-top: 4em;
    padding-bottom: 0;
  }

  .section-9.light-background {
    padding-bottom: 100px;
  }

  .section-11 {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section-11.ligher-grey-bg {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .ft-10-tab-link-2 {
    color: #9b9b9b;
    display: block;
  }

  .ft-10-tab-link-2.w--current {
    color: #9b9b9b;
    display: none;
  }

  .uui-text-size-large-4 {
    color: #878d95;
  }

  .efi-paragraph-3 {
    color: #f5f5f5;
    margin-top: 25px;
    font-style: normal;
  }

  .text-container-6 {
    padding-bottom: 0;
    line-height: 1;
  }

  .text-container-6.left-align {
    padding-bottom: 2em;
  }

  .efi-h5-2 {
    color: #1d2939;
  }

  .container-19 {
    background-color: #0000;
    max-width: 1350px;
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .efi-description-2 {
    color: #878d95;
  }

  .text-gradient-light-title-2 {
    background-image: linear-gradient(to right, #fffc, #fff 50%, #ffffff80);
    font-size: 56px;
    line-height: 1;
  }

  .icon-grey-3 {
    color: #fffc;
    -webkit-text-stroke-color: #fffc;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fffc, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    align-items: flex-start;
    width: 3em;
    height: 3em;
  }

  .small-content-3 {
    padding-bottom: 0;
    font-size: 16px;
  }

  .small-content-3.no-auto-margin {
    font-size: 16px;
    line-height: 1;
  }

  .grid-3-features-6 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: grid;
  }

  .container-20,
  .container-21,
  .container-22 {
    max-width: 1350px;
  }

  .tab-feature-image-4 {
    transform: scale(2.3);
  }

  .card_wrapper {
    min-height: 8.6em;
    line-height: 1.4;
  }

  .image-16.min-width {
    min-width: 180px;
  }

  .container-23 {
    background-color: #0000;
    max-width: 1350px;
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .clients-list-5 {
    background-color: #0000;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .feedback-div-3 {
    width: 1.5em;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .brix---heading-h1-size-2,
  .brix---display-4 {
    font-size: 36px;
  }

  .brix---grid-logo-strip-pricing-v9 {
    grid-column-gap: 14px;
  }

  .brix---form-grid-2-columns,
  .brix---form-grid-1-column-gap-row-48px {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .title-regular {
    font-size: 15px;
  }

  .job-description {
    font-size: 16px;
  }

  .jobst-text {
    font-size: 18px;
  }

  .section-14 {
    background-color: #f8f8f8;
    padding-top: 5em;
    padding-bottom: 3em;
  }
}

@media screen and (min-width: 1920px) {
  .section-13.ligher-grey-bg {
    width: 100%;
  }

  .grid-clients._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .device {
    width: 580px;
  }

  .feedback-position {
    font-size: 17px;
  }

  .features-card-sx-heading:hover {
    color: #ed1f41;
  }

  .team-list._4-columns {
    max-width: 46em;
  }

  .uui-text-size-medium-2 {
    font-size: 18px;
  }

  .uui-layout84_right-2 {
    grid-row-gap: 4rem;
  }

  .uui-layout84_image-blob-2 {
    width: 32rem;
  }

  .uui-layout84_left-2 {
    grid-row-gap: 4rem;
  }

  .uui-text-size-large-3 {
    font-size: 20px;
  }

  .features-card-heading-3 {
    font-size: 24px;
  }

  .grid-clients-list-2._1 {
    grid-column-gap: 1.8em;
    grid-row-gap: 1.8em;
  }

  .brix---paragraph-default-2 {
    font-size: 20px;
  }

  .brix---icon-list {
    width: 20px;
  }

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

  .text-gradient-light-8 {
    font-size: 28px;
  }

  .card-description-4 {
    font-size: 18px;
  }

  .white-50pct-4 {
    font-size: 20px;
  }

  .heading-4-style-4 {
    font-size: 28px;
  }

  .grey-dim-7 {
    line-height: 1.5;
  }

  .white-50pct-5 {
    font-size: 20px;
  }

  .feedback-text-2 {
    font-size: 18px;
    line-height: 1.5;
  }

  .feedback-author-2 {
    font-size: 18px;
  }

  .brix---btn-primary-3 {
    font-size: 20px;
  }

  .brix---badge-secondary-small-bold-2 {
    font-size: 18px;
  }

  .brix---btn-primary-white-2 {
    font-size: 20px;
  }

  .section-8 {
    background-color: #f8f8f8;
  }

  .no-margin {
    font-size: 20px;
    line-height: 1.6;
  }

  .image-style-solo {
    height: 520px;
  }

  .text-white.no-margin {
    font-size: 18px;
  }

  .in-section-title {
    font-size: 56px;
  }

  .base-container {
    max-width: 1400px;
  }

  .white-50pct-6 {
    font-size: 20px;
  }

  .grey-dim-8 {
    font-size: 18px;
  }

  .grey-dim-9 {
    font-size: 18px;
    line-height: 1.5;
  }

  .accordion-title-3 {
    font-size: 28px;
  }

  .card_wrapper {
    min-height: 8em;
  }

  .brix---card-3,
  .brix---card-pricing-popular-3 {
    min-width: 380px;
  }

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

  .title-regular {
    font-size: 16px;
  }

  .job-description {
    font-size: 17px;
  }

  .jobst-text {
    font-size: 19px;
  }

  .content-wrapper._20px {
    margin-top: 30px;
  }

  .section-14 {
    background-color: #f8f8f8;
    padding-top: 5em;
    padding-bottom: 3em;
  }
}

@media screen and (max-width: 991px) {
  .section-13 {
    padding-bottom: 40px;
  }

  .nav-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--black);
    border-bottom: 0 #000;
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    max-height: none;
    padding: 1em 2em;
  }

  .grid-6-col {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-link {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .link-block-underline {
    display: none;
  }

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

  .footer-image {
    min-width: 80px;
    max-width: 80px;
  }

  .nav-link-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    display: none;
  }

  .content {
    max-width: none;
  }

  .white-50pct {
    font-size: 18px;
  }

  .menu-button {
    background-color: #ffffff1a;
    padding-top: 4px;
    transition: background-color 0.35s;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #ffffff40;
    border-radius: 10px;
  }

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

  .style-guide-tab-holder {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .style-guide-left-panel-holder {
    width: 100%;
  }

  .hero-text {
    font-size: 80px;
  }

  .style-guide-left-panel {
    grid-column-gap: 16px;
    grid-row-gap: 50px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 1em;
    display: grid;
  }

  .link-block-2 {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .style-guide-empty-container {
    padding: 17px 0;
  }

  .button {
    width: 100%;
    font-weight: 500;
  }

  .style-guide-main-panel {
    padding: 16px;
  }

  .style-guide-container {
    flex-direction: column;
  }

  .style-guide-hero-holder {
    padding: 1em;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
    font-weight: 400;
  }

  .nav-link.w--current {
    background-image: linear-gradient(to right, #6eff89, #715cff);
  }

  .link-background {
    display: none;
  }

  .menu-icon {
    filter: invert();
  }

  .hero-description {
    margin-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 16px;
  }

  .contact-form {
    max-width: 100%;
  }

  .link-with-line {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .client-logo {
    min-width: 80px;
    max-width: 80px;
    max-height: 50px;
  }

  .trusted-by-grid-content {
    min-width: 200px;
  }

  .text-gradient-light {
    font-size: 30px;
  }

  .hero-text-xl {
    font-size: 80px;
  }

  .text-gradient-colored {
    line-height: 1;
  }

  .device {
    width: 350px;
    min-width: 0;
    max-width: none;
    height: auto;
  }

  .device-holder {
    height: auto;
  }

  .animation-section {
    padding-top: 150px;
  }

  .main-hero-bg-holder {
    overflow: visible;
  }

  .anim-icons-holder {
    left: -2em;
    right: -2em;
  }

  .anim-icon {
    width: 65px;
  }

  .anim-icon-holder._2 {
    left: 4%;
  }

  .anim-icon-holder._4 {
    right: 5%;
  }

  .anim-icon-holder._5 {
    right: 0%;
  }

  .small-content.no-auto-margin {
    padding-bottom: 0;
  }

  .card {
    padding: 2em;
  }

  .card.pricing-card {
    min-width: 400px;
    max-width: 400px;
  }

  .card.pricing-card:hover {
    background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
  }

  .card.pricing-card:active {
    background-image: linear-gradient(
      140deg,
      var(--primary),
      #5695b8 44%,
      var(--secondary)
    );
  }

  .card.pricing-card.main-pricing-card {
    height: auto;
    top: 0%;
  }

  .card.card-no-bottom-padding {
    min-height: 446px;
  }

  .grid-2col {
    align-items: center;
  }

  .list {
    padding-left: 0;
  }

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

  .iphone {
    min-height: auto;
  }

  .pricing-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card-list-items-holder {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    width: 100%;
  }

  .feedback-text,
  .feedback-name-and-position {
    font-size: 14px;
  }

  .feedback-position {
    font-size: 13px;
  }

  .feature-icon {
    display: flex;
  }

  .play-icon-holder {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }

  .secondary-image-holder {
    height: 420px;
  }

  .features-image-gradient {
    bottom: -1%;
  }

  .featured-card-image-holder {
    margin-bottom: 2em;
  }

  .features-card-sx-heading {
    font-size: 18px;
  }

  .grid-10cols {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .team-link {
    width: 90%;
  }

  .team-link.active-team-link {
    width: 50vw;
  }

  .team-list._5-columns {
    max-width: 38em;
  }

  .team-list._4-columns {
    grid-column-gap: 1.5em;
    max-width: 35em;
  }

  .blog-grid {
    grid-column-gap: 2em;
    grid-row-gap: 4em;
    grid-template-columns: 1fr 1fr;
  }

  .blog-item-overlay {
    display: none;
  }

  .insights-image-holder {
    min-height: 300px;
  }

  .insights-person-holder._2 {
    top: 34%;
  }

  .insights-person-holder._4 {
    top: 31%;
    left: 48%;
  }

  .insights-person-holder._5 {
    top: 66%;
    left: 19%;
  }

  .insights-person-holder._6 {
    inset: 10% 10% auto auto;
  }

  .insights-person-holder._8 {
    left: 67%;
  }

  .insights-person-holder._9 {
    inset: auto 0% 0% auto;
  }

  .social-icons {
    flex-direction: row;
  }

  .post-details-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .post-details-main-grid {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .nav-menu-list-items {
    flex-direction: column;
  }

  .tab-card-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .tab-feature-image-holder {
    min-height: 230px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    margin-left: 0;
  }

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

  .grey20 {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .small-secondary-text {
    line-height: 0.2;
  }

  .bold-text-2 {
    font-size: 20px;
  }

  .udesly-paragraph {
    font-size: 1.5rem;
  }

  .udesly-text-black {
    color: #b1b1b1;
    font-size: 10px;
  }

  .udesly-seconds-left,
  .udesly-minutes-left,
  .udesly-hours-left,
  .udesly-days-left {
    font-size: 1.5rem;
  }

  .udesly-countdown-wrapper {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }

  .udesly-countdown {
    justify-content: center;
    display: flex;
  }

  .bold-text-3 {
    font-size: 22px;
  }

  .text-gradient-light-title {
    font-size: 40px;
  }

  .grey20-subtitle {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .uui-heading-xxsmall {
    font-size: 18px;
  }

  .uui-layout84_content-bottom {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .uui-layout14_image {
    width: 130%;
    min-width: 130%;
    position: static;
  }

  .uui-layout14_image-wrapper {
    justify-content: flex-start;
    min-height: auto;
    padding: 4rem 2rem;
  }

  .uui-layout14_item-list {
    grid-template-columns: 0.5fr 1fr;
  }

  .uui-layout14_component {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .card-image-mac {
    width: 30em;
  }

  .text-gradient-colorful {
    font-weight: 600;
  }

  .greywhite20 {
    font-size: 18px;
    line-height: 1.4;
  }

  .div-block-2 {
    margin-top: 40px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .progresstext {
    font-size: 16px;
  }

  .text-gradient-light-benefit {
    font-size: 40px;
    line-height: 1.2em;
  }

  .nav-link-holder-home {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    display: flex;
  }

  .nav-link-holder-talk-to-us {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0 10px;
    display: flex;
  }

  .link-background-white {
    display: none;
  }

  .uui-heroheader06_image-01 {
    max-width: 32rem;
  }

  .uui-space-large {
    min-height: 2.5rem;
  }

  .uui-heading-xlarge {
    font-size: 3.25rem;
  }

  .uui-heroheader06_component {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .uui-text-size-medium-2 {
    font-size: 15px;
  }

  .uui-layout84_item-2._1 {
    margin-top: 80px;
    top: 0;
    left: 0;
  }

  .uui-layout84_item-2._4 {
    bottom: 80px;
    right: 0;
  }

  .uui-layout84_right-2 {
    display: flex;
    position: relative;
    top: -30%;
  }

  .uui-layout84_image-blob-2 {
    width: 25rem;
    top: 0%;
  }

  .uui-layout84_image-wrapper-2 {
    top: -20%;
  }

  .uui-layout84_left-2 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    display: flex;
  }

  .uui-layout84_content-bottom-2 {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .uui-padding-vertical-xhuge-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .uui-text-size-large-3 {
    font-size: 16px;
  }

  .uui-layout82_component {
    grid-template-columns: 1fr;
  }

  .uui-padding-vertical-xhuge-4 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .efi-ft-10-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .efi-ft-10-grid {
    grid-template-columns: 1fr;
  }

  .efi-ft-10 {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .efi-ft-09-accordion-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .efi-ft-09 {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .f-gallery-image-side {
    height: 240px;
  }

  .f-gallery-image-x-tall {
    height: 440px;
  }

  .f-gallery-three-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .f-career-tab-content {
    margin-left: 0%;
  }

  .f-career-tab-link {
    width: 100%;
  }

  .f-career-tab-menu-vertical {
    margin-bottom: 40px;
  }

  .f-career-tabs {
    flex-direction: column;
  }

  .card-copy {
    padding: 2em;
  }

  .card-copy.pricing-card.main-pricing-card {
    height: auto;
    top: 0%;
  }

  .nav-link-dropdown {
    justify-content: flex-start;
    width: 100%;
    padding: 15px 0;
  }

  .nav-link-dropdown:hover,
  .nav-link-dropdown.w--current {
    background-image: none;
  }

  .rl-heading-style-h4 {
    font-size: 1.75rem;
  }

  .rl_layout28_component {
    grid-column-gap: 3rem;
  }

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

  .heading-3 {
    font-size: 30px;
    line-height: 1.3;
  }

  .fn-button-secondery {
    transition: none;
  }

  .fn-button-secondery:hover {
    background-color: #0000;
  }

  .fh-features-image-wrapper {
    height: 450px;
  }

  .fn-featured-tabs-content-wrapper {
    width: 100%;
    max-width: 330px;
  }

  .fn-featured-tabs-content {
    width: auto;
  }

  .fn-tabs-link-title {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto;
    grid-template-columns: 0.25fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fn-tabs-link {
    transition: none;
  }

  .fn-tabs-link:hover {
    opacity: 1;
  }

  .fn-featured-tabs {
    margin-bottom: 20px;
  }

  .fn-heading-2 {
    margin-bottom: 12px;
    font-size: 40px;
  }

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

  .fn-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .card-side-content-item-2 {
    border-bottom: 1px solid #878d9533;
  }

  .text-gradient-light-3 {
    font-size: 30px;
  }

  .iphone-2 {
    min-height: auto;
  }

  .feature-icon-3 {
    width: 30px;
    height: 30px;
  }

  .grey-dim-4 {
    font-size: 14px;
  }

  .features-card-heading-3 {
    line-height: 1.2;
  }

  .text-gradient-light-5 {
    font-size: 23px;
  }

  .text-span-5.text-gradient-colorful {
    font-size: 22px;
  }

  .mac-app-holder-2 {
    object-fit: cover;
    width: 40.5em;
    height: 15.1em;
    top: 7%;
    left: -25%;
  }

  .mac-app {
    object-fit: contain;
  }

  .nav-link-holder-about-us {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    display: flex;
  }

  .mac-app-holder-3 {
    width: 22em;
    height: 15em;
  }

  .button-download {
    font-weight: 500;
  }

  .progress-div {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }

  .button-say-hello {
    font-weight: 500;
  }

  .feedback.ligher-grey-bg {
    padding-bottom: 100px;
  }

  .text-gradient-colored-2 {
    font-size: 90px;
  }

  .hero-buttons-holder-2 {
    padding-top: 40px;
  }

  .button-2 {
    font-weight: 500;
  }

  .hero-text-4 {
    font-size: 80px;
  }

  .hero-text-4.text-gradient-light {
    font-size: 65px;
  }

  .heading-4-style-3 {
    font-size: 24px;
  }

  .footer-content-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .link-background-2 {
    display: none;
  }

  .button-3 {
    font-weight: 500;
  }

  .content-tms {
    display: none;
  }

  .mobile-content-tms {
    display: block;
  }

  .content-dep {
    display: none;
  }

  .mobile-content-dep {
    display: block;
  }

  .content-smg,
  .content-crm {
    display: none;
  }

  .mobile-content-crm {
    display: block;
  }

  .content-dapp {
    width: 100%;
    max-width: 350px;
  }

  .mobile-content-smg {
    display: block;
  }

  .content-erp {
    max-width: 350px;
  }

  .mac-app-holder-4 {
    width: 40.5em;
    height: 15.1em;
    left: -29%;
  }

  .card-image {
    padding: 2em;
  }

  .card-image.pricing-card.main-pricing-card {
    height: auto;
    top: 0%;
  }

  .bold-text-4 {
    font-size: 85px;
  }

  .card-mac {
    max-width: 330px;
    padding: 2em;
  }

  .card-mac.pricing-card.main-pricing-card {
    height: auto;
    top: 0%;
  }

  .card-mac.card-no-bottom-padding {
    min-height: 446px;
  }

  .small-card {
    padding: 2em 2em 0;
  }

  .small-card.pricing-card.main-pricing-card {
    height: auto;
    top: 0%;
  }

  .small-card.card-no-bottom-padding {
    min-height: 446px;
  }

  .mobile-content-mlm {
    display: block;
  }

  .content-mlm {
    display: none;
  }

  .udesly-vega-effect {
    white-space: normal;
    font-size: 2rem;
  }

  .nav-link-ttu {
    background-image: linear-gradient(to right, #6eff89, #715cff);
    border-radius: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-2,
  .text-block-3 {
    font-size: 14px;
  }

  .rl_gallery21_spacing-block-1 {
    padding-bottom: 0;
  }

  .rl-heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .rl-padding-global-2 {
    min-width: 0;
  }

  .rl_section_gallery21 {
    width: 100%;
    min-width: 0;
  }

  .waves-bottom-gird-gallery-3 {
    grid-template-columns: 0.9fr 1.25fr 0.75fr;
    width: 100%;
  }

  .waves-top-grid-gallery-3 {
    grid-template-columns: 0.7fr 1.2fr 0.8fr;
    width: 100%;
    max-width: 130vw;
  }

  .cf-pricing-plan-pointer-text-18px,
  .cf-body---18px {
    line-height: 150%;
  }

  .cf-different-tabs-content {
    margin-top: 60px;
    margin-left: 0;
  }

  .cf-different-menu {
    grid-column-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
    width: 100%;
    max-width: 660px;
    margin-right: 0%;
  }

  .cf-different-tabs {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cf-h2-heading-56px {
    font-size: 30px;
  }

  .cf-wrapper-1160 {
    flex-direction: column;
  }

  .cf-wrapper-1160.different-flex {
    align-items: center;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .container-7 {
    min-height: 0;
  }

  .div-block-10,
  .div-block-11 {
    position: relative;
  }

  .text-description {
    text-align: left;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    line-height: 1.5;
    display: block;
  }

  .container-8 {
    align-items: center;
    max-height: 600px;
    display: flex;
  }

  .content-milestone {
    max-width: none;
    margin-top: 20px;
  }

  .features-card-sx-heading-dep {
    font-size: 20px;
  }

  .waves-small-image-wrap-gallery-4 {
    display: none;
  }

  .mobile-content-fos {
    display: block;
  }

  .content-fos,
  .link-background-talk {
    display: none;
  }

  .partner-section {
    padding-bottom: 40px;
  }

  .nav-link-holder-product {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    display: flex;
  }

  .content-price {
    max-width: none;
  }

  .nav-link-holder-about-us-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    display: flex;
  }

  .white-50pct-3 {
    font-size: 18px;
  }

  .client-logo-2 {
    max-width: 130px;
    max-height: 50px;
  }

  .feedbacktwo.ligher-grey-bg,
  .feedback-two.ligher-grey-bg {
    padding-bottom: 100px;
  }

  .grey20-subtitle-2 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .feedback-2.ligher-grey-bg {
    padding-bottom: 100px;
  }

  .grey20-subtitle-3 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .mac-app-holder-5 {
    width: 22em;
    height: 15em;
  }

  .white-50pct-one {
    font-size: 18px;
  }

  .bold-text-11 {
    font-size: 60px;
  }

  .tab-feature-image-holder-2 {
    min-height: 230px;
  }

  .card-2 {
    padding: 2em;
  }

  .tab-card-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .device-holder-2 {
    height: auto;
  }

  .button-4 {
    width: 100%;
    font-weight: 500;
  }

  .feature-icon-new {
    display: flex;
  }

  .cf-logo-background-text {
    font-size: 200px;
    top: -4%;
  }

  .cf-logo-image-container.last {
    margin-right: 47px;
  }

  .cf-logo-image-container.last.hide {
    display: none;
  }

  .cf-logos-contain {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    justify-items: center;
    display: flex;
  }

  .cf-logos-heading {
    margin-top: 0;
    font-size: 28px;
  }

  .cf-logo-wrapper {
    padding-top: 100px;
  }

  .cf-feature-pointer-text-20px {
    font-size: 18px;
  }

  .cf-bottom-line-image {
    bottom: -50px;
  }

  .cf-choose-grid {
    grid-column-gap: 40px;
    grid-row-gap: 200px;
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
  }

  .cf-green-vs-circle {
    top: 3%;
  }

  .cf-20px-text {
    line-height: 150%;
  }

  .cf-h2-heading-56px-2 {
    font-size: 30px;
  }

  .cf-wrapper-1161 {
    flex-direction: column;
  }

  .cf-wrapper-1161.choose-flex {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .container-12 {
    max-width: 728px;
  }

  .features-wrapper {
    justify-content: space-between;
  }

  .rl-heading-style-h2-2 {
    font-size: 2.75rem;
  }

  .rl_layout192_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .rl-padding-section-large-3 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .waves-inside-wide-feature-7 {
    max-width: 280px;
  }

  .waves-wide-tile-features-7 {
    min-height: 330px;
  }

  .waves---grid-features-7 {
    grid-template-columns: 1fr 1fr;
  }

  .waves---sides-heading-button {
    grid-row-gap: 32px;
    text-align: center;
    flex-direction: column;
  }

  .container-13 {
    max-width: 728px;
  }

  .features-wrapper-2 {
    justify-content: space-between;
  }

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

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

  .brix---grid-2-columns-gap-column-80px {
    grid-column-gap: 40px;
  }

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

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

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

  .brix---container-default._10px {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .f-content-image-tall {
    max-width: 100%;
    height: 400px;
  }

  .f-content-list-wrapper-small {
    flex-direction: row;
    max-width: 100%;
  }

  .f-grid-two-column {
    grid-template-columns: 1fr;
  }

  .fn-button-secondery-2 {
    transition: none;
  }

  .fn-button-secondery-2:hover {
    background-color: #0000;
  }

  .fh-features-image-wrapper-2 {
    height: 450px;
  }

  .fn-featured-tabs-content-2 {
    width: 58%;
  }

  .fn-tabs-link-2 {
    transition: none;
  }

  .fn-tabs-link-2:hover {
    opacity: 1;
  }

  .fn-heading-3 {
    margin-bottom: 12px;
    font-size: 40px;
  }

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

  .fn-section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fn-heading-4 {
    font-size: 32px;
  }

  .fn-features-card:hover {
    border-color: #0f1213;
  }

  .brix---logo-strip-image-card {
    border-radius: 12px;
    width: 200px;
  }

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

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

  .brix---section-logo-strip-v6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .brix---paragraph-default-2 {
    line-height: 1.5em;
  }

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

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

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

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

  .brix---grid-content-v15 {
    grid-row-gap: 56px;
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .brix---icon-list {
    width: 18px;
  }

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

  .brix---pricing-content-v10-popular {
    padding-left: 40px;
    padding-right: 40px;
  }

  .brix---grid-1-column-gap-row-16px {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .brix---pricing-content-v10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .brix---grid-2-columns---pricing-v10 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .brix---heading-h1-size {
    font-size: 40px;
    line-height: 1.2em;
  }

  .f-content-list-wrapper-small-2 {
    flex-direction: row;
    max-width: 100%;
  }

  .f-content-text-wrapper {
    max-width: 100%;
  }

  .f-content-image-tall-2 {
    max-width: 100%;
    height: 400px;
  }

  .f-grid-two-column-2 {
    grid-template-columns: 1fr;
  }

  .f-content-image-wrapper-large {
    max-width: 100%;
  }

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

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

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

  .brix---grid-content-section-v6 {
    grid-template-columns: 1fr;
  }

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

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

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

  .tab-feature-image-holder-3 {
    min-height: 230px;
  }

  .card-3 {
    padding: 2em;
  }

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

  .small-content-2 {
    padding-bottom: 2em;
  }

  .trusted-by-grid-content-2 {
    min-width: 200px;
  }

  .text-gradient-light-8 {
    font-size: 20px;
    line-height: 1.2;
  }

  .card-description-4 {
    font-size: 15px;
  }

  .tab-feature-image-holder-4 {
    min-height: 230px;
  }

  .white-50pct-4 {
    font-size: 16px;
    line-height: 1.5;
  }

  .card-4 {
    padding: 2em;
  }

  .card-4.card-tab-feature {
    padding-top: 1.5em;
    padding-left: 1.5em;
  }

  .feature-icon-4 {
    width: 30px;
  }

  .heading-4-style-4 {
    font-size: 22px;
    line-height: 1.3;
  }

  .grey-dim-7 {
    font-size: 15px;
    line-height: 1.5;
  }

  .feedback-card-container-2 {
    max-width: 40vw;
  }

  .white-50pct-5 {
    font-size: 16px;
    line-height: 1.5em;
  }

  .card-5 {
    padding: 2em;
  }

  .feedback-text-2 {
    font-size: 15px;
    line-height: 1.5;
  }

  .container-18 {
    padding-bottom: 0;
  }

  .feedback-author-2 {
    font-size: 15px;
    line-height: 1.5;
  }

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

  .brix---badge-secondary-small-bold-2 {
    padding: 12px 20px;
  }

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

  .section-8 {
    padding-bottom: 40px;
  }

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

  .no-margin {
    font-size: 16px;
    line-height: 1.5;
  }

  .two-column-wrapper {
    grid-column-gap: 20px;
    flex-flow: row;
    margin-right: 0;
    padding-right: 20px;
  }

  .column-two {
    align-items: flex-end;
    width: 100%;
  }

  .image-style-solo {
    height: 400px;
  }

  .column-one,
  .column-one.assymetrical {
    width: 100%;
  }

  .text-white.no-margin {
    font-size: 14px;
  }

  .section-9.light-background {
    padding-top: 20px;
    padding-bottom: 120px;
    overflow: visible;
  }

  .home-new-features-wrapp {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
    padding-left: 60px;
    padding-right: 40px;
    position: absolute;
    left: auto;
    right: 0;
  }

  .in-section-title {
    font-size: 40px;
  }

  .home-feature-number-new {
    font-size: 50px;
  }

  .accordion-title-2 {
    width: 90%;
  }

  .section-11 {
    padding-bottom: 40px;
  }

  .text-gradient-light-title-2 {
    font-size: 40px;
  }

  .small-content-3.no-auto-margin {
    padding-bottom: 0;
  }

  .text-gradient-light-10 {
    font-size: 40px;
  }

  .white-50pct-6 {
    line-height: 1.5em;
  }

  .card-6 {
    padding: 2em;
  }

  .grey-dim-8 {
    font-size: 14px;
    line-height: 1.5;
  }

  .container-20 {
    padding-bottom: 2em;
  }

  .featured-card-image-holder-2 {
    margin-bottom: 3em;
  }

  .text-gradient-light-12 {
    font-size: 40px;
  }

  .grey-dim-9 {
    font-size: 15px;
    line-height: 1.5;
  }

  .container-22 {
    padding-top: 2em;
  }

  .accordion-title-3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .text-gradient-light-15 {
    font-size: 20px;
  }

  .brix---paragraph-default-5 {
    font-size: 16px;
    line-height: 20px;
  }

  .card_side {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .card_traits-list {
    grid-row-gap: 2rem;
  }

  .card_wrapper {
    max-width: none;
    min-height: 6.8em;
  }

  .image-16.min-width {
    min-width: 140px;
  }

  .lottie-animation-2 {
    width: 100%;
    height: 100%;
    margin-top: -3em;
  }

  .text-gradient-light-8-copy {
    font-size: 40px;
    line-height: 1.2;
  }

  .heading-10 {
    font-size: 40px;
  }

  .feedback-text-3 {
    font-size: 14px;
  }

  .cf-secondary-button.pricing-button {
    margin-top: 60px;
  }

  .cf-pricing-plan-content-wrapper {
    margin-bottom: 0;
  }

  .cf-pricing-plan-price {
    margin-bottom: 25px;
  }

  .cf-pricing-plan-text.pricing-1-plan-text {
    font-size: 40px;
  }

  .cf-pricing-box-plan-wrapper {
    text-align: center;
    align-items: center;
  }

  .cf-pricing-box {
    min-height: auto;
  }

  .cf-pricing-box.pricing-1-box,
  .cf-pricing-box.green-pricing-box {
    width: 80%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .cf-primary-button.pricing-button {
    margin-top: 60px;
  }

  .cf-pricing-box-row {
    flex-direction: column;
  }

  .cf-pricing-box-row.pricing-box-2 {
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: space-around;
    justify-items: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .cf-pricing-box-row.pricing-box-1 {
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cf-toggle-arrow-icon {
    order: -1;
    top: 12px;
    left: -5px;
    right: 0;
    transform: rotate(160deg);
  }

  .cf-toggle-save-text {
    font-size: 14px;
  }

  .cf-toggle-contain {
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
  }

  .cf-pricing-hero-heading {
    margin-bottom: 20px;
    font-size: 50px;
  }

  .brix---btn-primary-full-width {
    max-width: 180px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 30px;
    font-size: 16px;
    left: auto;
    right: 20px;
  }

  /* .brix---text-200-list-bold-2,
  .brix---text-200-list-bold-2.white {
    white-space: pre;
  } */

  .brix---icon-list-2 {
    margin-top: 1px;
  }

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

  .brix---grid-1-column-gap-row-16px-2 {
    grid-auto-flow: row;
    align-content: start;
    align-items: stretch;
  }

  .brix---mg-bottom-40px-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    padding-bottom: 20px;
    display: grid;
  }

  .brix---mg-bottom-40px-2.enterprise {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

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

  .brix---paragraph-default-6 {
    margin-top: 0;
  }

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

  .brix---flex-horizontal-start {
    font-size: 16px;
  }

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

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

  .brix---card-3 {
    width: 100%;
    max-width: 550px;
  }

  .brix---btn-primary-white-full-width {
    max-width: 180px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 30px;
    font-size: 16px;
    left: auto;
    right: 20px;
  }

  .brix---card-pricing-popular-3 {
    width: 100%;
    max-width: 550px;
  }

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

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

  .brix---section-5 {
    padding-top: 118px;
    padding-bottom: 118px;
  }
  /* 
  .package-feature-title,
  .package-feature-title.white {
    white-space: pre;
  } */

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

  .brix---text-center-5 {
    margin-top: 0;
  }

  .brix---display-5 {
    font-size: 28px;
    line-height: 38px;
  }

  .brix---display-5.white {
    font-size: 28px;
    line-height: 34px;
  }

  .brix---pricing-content-v9 {
    padding-top: 20px;
  }

  .brix---grid-logo-strip-pricing-v9 {
    grid-template-columns: 1fr 1fr 1fr;
    place-content: center;
    justify-items: center;
  }

  .brix---divider-64px {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .brix---heading-h1-size-3 {
    font-size: 40px;
    line-height: 1.2em;
  }

  .brix---grid-2-columns---pricing-v9 {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

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

  .flex-block {
    align-items: center;
  }

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

  .brix---card-form {
    padding: 54px 32px;
  }

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

  .brix---grid-2-contact-v13 {
    grid-row-gap: 70px;
    grid-template-columns: 1fr;
  }

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

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

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

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

  .brix---grid-contact-v14 {
    grid-row-gap: 70px;
    grid-template-columns: 1fr;
  }

  .cf-toggle-save-container-2 {
    top: -123%;
    bottom: 0%;
    left: 25%;
  }

  .div-block-35 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

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

  .headling-medium {
    width: 60%;
    margin-bottom: 50px;
  }

  .accordion-job {
    padding-left: 20px;
    padding-right: 40px;
  }

  .accordion-item-trigger-2 {
    padding-left: 20px;
  }

  .faq-accordion {
    margin-bottom: 15px;
    padding-bottom: 5px;
  }

  .jobs-input.last {
    width: 18%;
  }

  .jobst-text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 19px;
  }

  .h3 {
    font-size: 66px;
    line-height: 70px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .content-wrapper._20px {
    padding-left: 0;
    padding-right: 0;
  }

  .section-14 {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 30px;
  }

  .container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .container.no-padding-bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section {
    height: auto;
  }

  .nav-menu {
    max-height: none;
    padding-left: 1em;
    padding-right: 1em;
  }

  .grid-4-col {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer {
    padding-top: 0;
  }

  .footer-content {
    grid-template-columns: minmax(150px, 1fr) 1fr;
  }

  .footer-image {
    object-fit: contain;
    min-width: 80px;
    max-width: 80px;
  }

  .fade-in-move-on-scroll {
    flex: 1;
  }

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

  .change-log-container {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2em 1em;
  }

  .hero-text {
    font-size: 56px;
  }

  .style-guide-left-panel {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
  }

  .colors-holder {
    flex-direction: column;
    align-items: flex-start;
  }

  .style-guide-empty-container {
    padding-left: 0;
    padding-right: 0;
  }

  .font-holder {
    flex-direction: column;
    padding: 16px;
  }

  .button.download-button {
    height: 60px;
    font-size: 18px;
  }

  .brand-logo {
    max-width: 80px;
  }

  .nav-link.w--current {
    background-image: linear-gradient(to right, #6eff89, #715cff);
  }

  .hero-section-secondary {
    height: auto;
  }

  .hero-description-short-container {
    max-width: 100%;
  }

  .hero-description {
    margin-bottom: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .hero-content {
    height: auto;
  }

  .trusted-by-grid-content {
    min-width: 170px;
  }

  .text-gradient-light {
    font-size: 30px;
    line-height: 0.8;
  }

  .hero-text-xl {
    font-size: 56px;
  }

  .text-gradient-colored {
    font-size: 40px;
    line-height: 0.8;
  }

  .hero-circle-bg-holder {
    align-items: center;
    height: 100%;
    min-height: 500px;
  }

  .hero-animation {
    padding-left: 1em;
    padding-right: 1em;
  }

  .device {
    width: 320px;
  }

  .device-holder {
    width: 60%;
  }

  .dashboard-app-holder {
    perspective: 110vw;
  }

  .animation-section {
    padding-top: 100px;
  }

  .anim-icons-holder {
    left: -1em;
    right: -1em;
  }

  .anim-icon {
    transform: scale(0.6);
  }

  .anim-icon-holder {
    left: 2%;
  }

  .anim-icon-holder._2 {
    left: -2%;
  }

  .anim-icon-holder._3 {
    left: -5%;
  }

  .anim-icon-holder._4 {
    top: 0%;
  }

  .anim-icon-holder._5 {
    right: -8%;
  }

  .anim-icon-holder._6 {
    right: -3%;
  }

  .card {
    padding-bottom: 2em;
  }

  .card.card-cta {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .card.job-position-card {
    padding: 1em;
  }

  .card-title.no-margin-top {
    font-size: 20px;
  }

  .grid-2col {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

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

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

  .card-list-items-holder {
    width: 100%;
  }

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

  .feedback-item-content {
    align-self: auto;
  }

  .slider {
    min-width: 320px;
  }

  .card-item-content {
    align-self: auto;
    padding-left: 0;
  }

  .heading-4-style {
    font-size: 30px;
  }

  .secondary-page-title {
    line-height: 1;
  }

  .grid-3-features {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .secondary-image-holder {
    height: 350px;
  }

  .grid-10cols {
    grid-template-columns: 1fr 1fr;
  }

  .big-text {
    font-size: 20px;
  }

  .team-link {
    min-height: auto;
  }

  .team-link.active-team-link {
    width: 70vw;
  }

  .team-list {
    grid-template-columns: 1fr 1fr;
  }

  .team-list._5-columns {
    grid-column-gap: 1em;
    max-width: 32em;
  }

  .team-list._4-columns {
    grid-column-gap: 1em;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 30em;
  }

  .job-position-grid {
    grid-template-columns: 1fr 0.5fr 1fr 0.25fr;
  }

  .job-position-link {
    flex-direction: column;
  }

  .post-collection-item {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-display {
    font-size: 50px;
  }

  .card-item {
    flex-direction: column;
  }

  .post-details-grid {
    grid-template-columns: 1fr;
  }

  .team-member-grid-social-media {
    grid-template-columns: 1fr 1fr;
  }

  .footer-gradient-background {
    display: none;
  }

  .nav-last-button-holder.phone {
    display: block;
  }

  .tab-card-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .tab-feature-image {
    object-fit: cover;
  }

  .tab-feature-image-holder {
    min-height: 20vw;
  }

  .ios-side-app-holder {
    border-radius: 14px;
  }

  .accordion-arrow-bottom {
    width: 18px;
    min-width: 18px;
    margin-top: -0.5em;
  }

  .grid-faq {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-columns: 1fr;
  }

  .accordion-title {
    font-size: 30px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    margin-left: 0;
  }

  .bold-text-2 {
    font-size: 18px;
  }

  .udesly-text-black {
    color: #b1b1b1;
    font-size: 10px;
  }

  .udesly-countdown-wrapper {
    width: 100%;
    max-width: 400px;
  }

  .udesly-countdown {
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .bold-text-3 {
    font-size: 20px;
  }

  .text-gradient-light-title {
    font-size: 30px;
  }

  .grey20-subtitle {
    font-size: 16px;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui-primary600);
    background-color: var(--untitled-ui-primary600);
  }

  .uui-button-wrapper.max-width-full-mobile-landscape {
    width: 100%;
  }

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

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    color: var(--untitled-ui-gray700);
    background-color: #fff;
  }

  .uui-button-row {
    align-self: stretch;
  }

  .uui-button-row.button-row-center.is-reverse-mobile-landscape,
  .uui-button-row.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-heading-xxsmall {
    font-size: 16px;
  }

  .uui-space-small {
    min-height: 1.25rem;
  }

  .uui-layout84_right {
    grid-row-gap: 2.5rem;
  }

  .uui-layout84_image-blob {
    width: 120%;
    min-width: 28rem;
    top: 22%;
  }

  .uui-layout84_image {
    height: 40rem;
    margin-left: 1.5rem;
  }

  .uui-layout84_image-wrapper {
    height: 22rem;
    overflow: hidden;
  }

  .uui-layout84_left {
    grid-row-gap: 2.5rem;
  }

  .uui-layout84_content-bottom {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .uui-text-size-large {
    font-size: 1rem;
  }

  .uui-space-xsmall {
    min-height: 0.75rem;
  }

  .uui-heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-layout84_component {
    align-items: stretch;
  }

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

  .uui-page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-layout14_image-wrapper {
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .uui-layout14_item-list {
    grid-row-gap: 2.5rem;
    margin-bottom: 0;
  }

  .uui-layout14_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .udesly-text-effect-wrapper {
    height: auto;
  }

  .greywhite20 {
    font-size: 16px;
  }

  .progresstext {
    font-size: 14px;
  }

  .text-gradient-light-benefit {
    font-size: 30px;
    line-height: 0.8em;
  }

  .nav-link-holder-talk-to-us {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .uui-heroheader06_image-02 {
    width: 100%;
    min-width: auto;
    max-width: 15.25rem;
    position: static;
    inset: 0% 0% auto;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .uui-heroheader06_image-wrapper {
    justify-content: center;
    align-items: flex-start;
    height: 22rem;
    min-height: auto;
    display: flex;
  }

  .uui-button-row-2 {
    align-self: stretch;
  }

  .uui-space-large {
    min-height: 2rem;
  }

  .uui-text-size-xlarge {
    font-size: 1.125rem;
  }

  .uui-space-small-2 {
    min-height: 1.25rem;
  }

  .uui-heading-xlarge {
    font-size: 2.25rem;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-page-padding-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-button-2 {
    font-size: 1rem;
  }

  .uui-button-2:hover {
    border-color: var(--untitled-ui-primary600);
    background-color: var(--untitled-ui-primary600);
  }

  .uui-button-wrapper-3.max-width-full-mobile-landscape {
    width: 100%;
  }

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

  .uui-button-secondary-gray-2 {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray-2:hover {
    color: var(--untitled-ui-gray700);
    background-color: #fff;
  }

  .uui-button-row-3 {
    align-self: stretch;
  }

  .uui-button-row-3.button-row-center.is-reverse-mobile-landscape,
  .uui-button-row-3.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-text-size-medium-2 {
    font-size: 14px;
    line-height: 1.3;
  }

  .uui-heading-xxsmall-2 {
    font-size: 1.125rem;
  }

  .uui-space-small-3 {
    min-height: 1.25rem;
  }

  .uui-layout84_right-2 {
    grid-row-gap: 2.5rem;
  }

  .uui-layout84_image-blob-2 {
    width: 100%;
    min-width: 0;
    max-width: 25rem;
    top: 0%;
  }

  .uui-layout84_image-2 {
    height: 40rem;
    margin-left: 1.5rem;
  }

  .uui-layout84_image-2.hide {
    height: 40rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .uui-layout84_image-wrapper-2 {
    height: 22rem;
    overflow: visible;
  }

  .uui-layout84_left-2 {
    grid-row-gap: 2.5rem;
  }

  .uui-layout84_content-bottom-2 {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .uui-text-size-large-2 {
    font-size: 1rem;
  }

  .uui-space-xsmall-2 {
    min-height: 0.75rem;
  }

  .uui-heading-medium-2 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-layout84_component-2 {
    align-items: stretch;
  }

  .uui-padding-vertical-xhuge-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .uui-page-padding-3 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-layout82_list {
    grid-row-gap: 2.5rem;
  }

  .uui-space-medium {
    min-height: 1.5rem;
  }

  .uui-text-size-large-3 {
    font-size: 1rem;
  }

  .uui-layout82_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .uui-padding-vertical-xhuge-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .efi-ft-09-grid,
  .f-gallery-three-grid {
    grid-template-columns: 1fr;
  }

  .f-h3-heading {
    font-size: 40px;
  }

  .f-section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .f-career-badge {
    margin-bottom: 10px;
    margin-left: 0;
  }

  .f-career-title-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .card-copy.card-cta {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .nav-link-dropdown {
    justify-content: flex-start;
  }

  .nav-link-dropdown.w--current {
    background-image: none;
  }

  .rl_layout28_spacing-block-1 {
    padding-bottom: 0.75rem;
  }

  .rl-heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .rl_layout28_component {
    grid-column-gap: 0px;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

  .heading-3 {
    font-size: 30px;
    line-height: 1.2;
  }

  .fn-button {
    width: 100%;
  }

  .fh-features-image-wrapper {
    height: 350px;
  }

  .fn-featured-tabs-content {
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    display: none;
    position: static;
  }

  .fn-paragraph {
    margin-bottom: 24px;
  }

  .fn-heading-2 {
    font-size: 34px;
  }

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

  .fn-section {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .left-brain-tab-title {
    font-size: 1.125rem;
  }

  .mac-frame {
    height: 40rem;
    margin-left: 1.5rem;
  }

  .grid-3-features-2 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .card-item-content-2 {
    align-self: auto;
  }

  .container-4 {
    padding: 4em 1em;
  }

  .grid-3-features-3 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .card-item-content-3 {
    align-self: auto;
  }

  .heading-4-style-2 {
    font-size: 30px;
  }

  .grey-dim-4 {
    width: 78%;
  }

  .grid-3-features-4 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .mac-app-holder-2 {
    left: 5%;
  }

  .mac-app {
    object-fit: cover;
    width: 67%;
  }

  .mac-app-holder-3 {
    width: 27em;
    height: 15em;
    left: 5%;
  }

  .button-download.download-button,
  .button-say-hello.download-button {
    height: 60px;
    font-size: 18px;
  }

  .container-5 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .feedback.ligher-grey-bg {
    display: block;
  }

  .hero-content-2 {
    height: auto;
  }

  .text-gradient-colored-2 {
    font-size: 85px;
  }

  .hero-text-4 {
    font-size: 56px;
  }

  .hero-text-4.text-gradient-light {
    font-size: 50px;
    line-height: 1;
  }

  .grid-3-features-5 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .card-item-content-4 {
    align-self: auto;
  }

  .heading-4-style-3 {
    font-size: 18px;
  }

  .footer-image-2 {
    object-fit: contain;
  }

  .container-6 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .button-3.download-button {
    height: 60px;
    font-size: 18px;
  }

  .card-item-content-5 {
    align-self: auto;
    align-items: flex-end;
  }

  .grey-dim-6 {
    text-align: right;
  }

  .content-dapp {
    max-width: none;
  }

  .mobile-content-smg {
    display: block;
  }

  .content-erp {
    max-width: none;
  }

  .mac-app-holder-4 {
    left: 5%;
  }

  .card-image.card-cta {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .bold-text-4 {
    font-size: 70px;
    line-height: 1;
  }

  .card-mac {
    max-width: none;
    padding-bottom: 2em;
  }

  .card-mac.card-cta {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .small-card {
    padding-bottom: 0;
  }

  .small-card.card-cta {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .udesly-text-effect-wrapper-2,
  .udesly-text-effect-wrapper-3 {
    height: auto;
  }

  .udesly-vega-effect {
    white-space: normal;
  }

  .udesly-text-effect-wrapper-4 {
    height: auto;
  }

  .nav-link-ttu {
    background-image: linear-gradient(#6eff89, #715cff);
    border-radius: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .rl_gallery21_arrow-left {
    right: 3.5rem;
  }

  .rl_gallery21_slide {
    padding-right: 1.5rem;
  }

  .rl_gallery21_mask {
    width: 100%;
  }

  .rl_gallery21_spacing-block-1 {
    padding-bottom: 0;
  }

  .rl-text-style-medium {
    font-size: 1rem;
  }

  .rl_blog33_spacing-block-2 {
    padding-bottom: 1.25rem;
  }

  .rl-heading-style-h2 {
    font-size: 2.25rem;
  }

  .rl_gallery21_heading-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 0.5fr;
  }

  .rl-padding-section-large-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .rl_section_gallery21 {
    min-width: 0;
  }

  .waves-medium-image-wrap-gallery-3 {
    display: none;
  }

  .waves-bottom-gird-gallery-3 {
    grid-template-columns: 0.9fr 1.25fr;
  }

  .waves-top-grid-gallery-3 {
    grid-template-columns: 0.7fr 1.2fr;
  }

  .waves---section-medium {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .waves-image-gallery-1 {
    max-height: none;
  }

  .waves-grid-gallery-1 {
    grid-template-columns: 1fr;
  }

  .waves-master-gallery-1 {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .lightbox-link {
    min-height: 500px;
  }

  .cf-body---18px {
    font-size: 16px;
  }

  .cf-h3-heading-40px {
    font-size: 22px;
  }

  .cf-different-tab-link {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .cf-different-menu {
    grid-row-gap: 10px;
    width: 100%;
  }

  .cf-h2-heading-56px {
    font-size: 28px;
  }

  .container-7 {
    min-height: 1150px;
  }

  .text-description {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 20px;
    font-size: 16px;
  }

  .text-description-1 {
    font-size: 16px;
  }

  .container-8 {
    max-height: 500px;
  }

  .number-title {
    font-size: 22px;
  }

  .number-description {
    border: 0 solid #000;
    font-size: 12px;
  }

  .text-container-number {
    border: 1px #000;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-13-duplicate {
    width: 100%;
    display: flex;
  }

  .waves-small-image-wrap-gallery-4 {
    display: none;
  }

  .grid-clients-list._1 {
    grid-template-columns: minmax(180px, 1fr) 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .grid-clients-list._2 {
    grid-template-columns: minmax(180px, 1fr) 1fr 1fr 1fr 1fr 1fr;
  }

  .grid-clients-list-2._1 {
    grid-column-gap: 1.8em;
    grid-row-gap: 1.8em;
    grid-template-columns: minmax(180px, 1fr) 1fr 1fr 1fr 1fr;
  }

  .grid-clients-list-2._2 {
    grid-template-columns: minmax(180px, 1fr) 1fr 1fr 1fr 1fr 1fr;
  }

  .link-background-talk {
    display: block;
  }

  .not-sticky-content {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .content-price {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .container-9 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .white-50pct-3 {
    font-size: 16px;
  }

  .feedbacktwo.ligher-grey-bg,
  .feedback-two.ligher-grey-bg {
    display: block;
  }

  .container-10 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .grey20-subtitle-2 {
    font-size: 16px;
  }

  .feedback-2.ligher-grey-bg {
    display: none;
  }

  .container-11 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .grey20-subtitle-3 {
    font-size: 16px;
  }

  .mac-app-holder-5 {
    width: 27em;
    height: 15em;
    left: 5%;
  }

  .bold-text-11 {
    font-size: 40px;
  }

  .mobile-holder {
    perspective: 110vw;
  }

  .text-span-13 {
    font-size: 16px;
  }

  .tab-feature-image-holder-2 {
    min-height: 68vw;
  }

  .tab-card-grid-2 {
    grid-template-columns: 1fr;
  }

  .device-holder-2 {
    width: 60%;
    margin-top: 2em;
  }

  .cf-logo-background-text {
    font-size: 150px;
  }

  .cf-logo-image-container {
    margin-bottom: 0;
    margin-right: 0;
  }

  .cf-logo-image-container.last {
    margin-right: 0;
  }

  .cf-logos-contain {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 90%;
    display: grid;
  }

  .cf-logos-heading {
    width: 90%;
    font-size: 24px;
  }

  .cf-choose-feature-check-icon {
    margin-right: 10px;
  }

  .cf-20px-text {
    font-size: 18px;
  }

  .cf-h2-heading-56px-2 {
    font-size: 28px;
  }

  .cf-wrapper-1161.choose-flex {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .features-metrics {
    padding: 60px 15px;
  }

  .features-wrapper {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .features-block {
    width: 50%;
    margin-bottom: 40px;
  }

  .rl_layout192_spacing-block-3 {
    padding-bottom: 1.5rem;
  }

  .rl-text-style-medium-2 {
    font-size: 1rem;
  }

  .rl_layout192_spacing-block-2 {
    padding-bottom: 1.25rem;
  }

  .rl-heading-style-h2-2 {
    font-size: 2.25rem;
  }

  .rl_layout192_spacing-block-1 {
    padding-bottom: 0.75rem;
  }

  .rl_layout192_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .rl-padding-section-large-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .waves-image-wide-feature-7 {
    width: auto;
    height: 320px;
    position: static;
  }

  .waves-inside-wide-feature-7 {
    text-align: center;
    align-items: center;
    max-width: 80%;
  }

  .waves-wide-tile-features-7 {
    grid-row-gap: 30px;
    align-items: center;
    padding-bottom: 0;
  }

  .waves---grid-features-7 {
    grid-template-columns: 1fr;
  }

  .waves---heading-2-no-margins {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---main-container-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .features-metrics-2 {
    padding: 60px 15px;
  }

  .features-wrapper-2 {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .features-block-2 {
    width: 50%;
    margin-bottom: 40px;
  }

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

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

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

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

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

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

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

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

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

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

  .f-h3-heading-2 {
    font-size: 40px;
  }

  .f-section-large-2 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .fn-button-2 {
    width: 100%;
  }

  .fh-features-image-wrapper-2 {
    height: 350px;
  }

  .fn-featured-tabs-content-2 {
    width: 100%;
    margin-top: 12px;
    position: static;
  }

  .fn-paragraph-2 {
    margin-bottom: 24px;
  }

  .fn-heading-3 {
    font-size: 34px;
  }

  .fn-container-grid-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .fn-section-2 {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fn-heading-4 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .fn-features-card {
    padding: 12px;
  }

  .brix---logo-strip-image-card {
    width: 148px;
    margin: 8px 10px;
  }

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

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

  .brix---section-logo-strip-v6 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .brix---paragraph-default-2 {
    font-size: 15px;
  }

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

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

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

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

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

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

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

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

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

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

  .brix---badge-secondary-small-bold {
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

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

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

  .brix---icon-list {
    width: 16px;
  }

  .brix---grid-pricing-v10-featured {
    grid-template-columns: 1fr;
  }

  .brix---display-3 {
    font-size: 18px;
  }

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

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

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

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

  .brix---inner-container-700px-center._20px {
    padding-left: 20px;
    padding-right: 20px;
  }

  .f-h3-heading-3 {
    font-size: 40px;
  }

  .f-section-large-3 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

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

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

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

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

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

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

  .brix---grid-content-section-v6 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .tab-feature-image-holder-3 {
    min-height: 68vw;
  }

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

  .tab-feature-image-3 {
    top: 190px;
    left: 160px;
    transform: scale(0.7);
  }

  .container-14 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .trusted-by-grid-content-2 {
    min-width: 170px;
  }

  .container-15 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .text-gradient-light-8 {
    font-size: 18px;
  }

  .card-description-4 {
    font-size: 14px;
  }

  .tab-feature-image-holder-4 {
    min-height: 35vw;
  }

  .white-50pct-4 {
    font-size: 15px;
  }

  .container-16 {
    padding-top: 3em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .container-17 {
    padding-top: 2em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .card-item-content-6 {
    align-self: auto;
  }

  .feature-icon-4 {
    width: 25px;
    height: 35px;
  }

  .heading-4-style-4 {
    font-size: 18px;
  }

  .grey-dim-7 {
    font-size: 14px;
  }

  .text-gradient-light-9 {
    font-size: 30px;
  }

  .feedback-card-container-2 {
    max-width: 50vw;
  }

  .white-50pct-5 {
    font-size: 15px;
  }

  .slider-4 {
    min-width: 320px;
  }

  .feedback-text-2 {
    font-size: 14px;
  }

  .container-18 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .feedback-author-2 {
    font-size: 14px;
  }

  .brix---btn-primary-3 {
    padding: 18px 32px;
    font-size: 16px;
  }

  .brix---badge-secondary-small-bold-2 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brix---btn-primary-white-2 {
    padding: 18px 32px;
    font-size: 16px;
  }

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

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

  .no-margin {
    font-size: 15px;
  }

  .two-column-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .column-two {
    align-items: center;
    max-height: none;
  }

  .column-two.assymetrical {
    width: 100%;
  }

  .home-feature-item-new {
    width: 28%;
  }

  .image-style-solo {
    height: 360px;
  }

  .column-one.assymetrical {
    width: 100%;
  }

  .text-white.no-margin {
    font-size: 13px;
  }

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

  .section-9.light-background {
    padding-bottom: 80px;
  }

  .home-new-features-wrapp {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    padding: 25px 15px;
    position: relative;
    left: auto;
    right: auto;
  }

  .in-section-title {
    font-size: 30px;
  }

  .home-feature-number-new {
    margin-bottom: 5px;
    font-size: 30px;
  }

  .section-10 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-10.without-top-spacing {
    padding-top: 0;
  }

  .uui-text-size-large-4 {
    font-size: 1rem;
  }

  .container-19 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .text-gradient-light-title-2 {
    font-size: 30px;
  }

  .grid-3-features-6 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .card-item-content-7 {
    align-self: auto;
  }

  .text-gradient-light-10 {
    font-size: 30px;
  }

  .white-50pct-6 {
    font-size: 15px;
  }

  .container-20 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .ios-side-app-holder-2 {
    border-radius: 14px;
  }

  .container-21 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .text-gradient-light-12 {
    font-size: 30px;
  }

  .grid-faq-2 {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-columns: 1fr;
  }

  .grey-dim-9 {
    font-size: 14px;
  }

  .container-22 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .accordion-title-3 {
    font-size: 20px;
  }

  .text-gradient-light-15 {
    font-size: 18px;
  }

  .tab-feature-image-4 {
    top: 310px;
    bottom: 0;
    left: 70px;
    transform: scale(1.4);
  }

  .tab-feature-image-5 {
    top: 140px;
    left: 160px;
    transform: scale(0.6);
  }

  .brix---paragraph-default-5 {
    font-size: 15px;
  }

  .card_wrapper {
    min-height: 5.8em;
  }

  .image-16.min-width {
    min-width: 120px;
  }

  .lottie-animation-2 {
    width: 70%;
    height: 100%;
    max-height: none;
    margin-top: -5em;
  }

  .brix---paragraph-default-opy {
    font-size: 15px;
  }

  .container-23 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .cf-pricing-plan-content-text {
    font-size: 16px;
  }

  .cf-pricing-plan-tick-icon {
    margin-right: 10px;
  }

  .cf-pricing-plan-content-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cf-pricing-plan-note-text {
    text-align: center;
  }

  .cf-pricing-plan-text {
    font-size: 32px;
  }

  .cf-pricing-box-plan-wrapper {
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .cf-pricing-box.pricing-1-box {
    width: 100%;
    max-width: 430px;
  }

  .cf-pricing-box.green-pricing-box {
    width: 100%;
    max-width: 430px;
    min-height: 320px;
    margin-bottom: 5%;
  }

  .cf-pricing-box-row {
    flex-direction: column;
  }

  .cf-pricing-box-wrapper {
    margin-top: 100px;
  }

  .cf-toggle-arrow-icon {
    max-width: 22px;
  }

  .cf-toggle-save-text {
    font-size: 13px;
  }

  .cf-pricing-toggle-header-wrapper {
    flex-direction: column;
  }

  .cf-colourful-text {
    padding-bottom: 0;
  }

  .cf-pricing-hero-heading {
    font-size: 42px;
  }

  .brix---btn-primary-full-width {
    max-width: 150px;
    padding: 15px 20px;
    font-size: 15px;
  }

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

  .brix---color-neutral-812 {
    margin-bottom: 10px;
  }

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

  .brix---icon-list-2.margin-top {
    margin-top: 0;
  }

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

  .brix---grid-1-column-gap-row-16px-2 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .brix---mg-bottom-40px-2 {
    grid-auto-flow: row;
    margin-bottom: 24px;
  }

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

  .brix---paragraph-default-6 {
    margin-bottom: 10px;
  }

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

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

  .brix---heading-h1-size-2.custom {
    font-size: 30px;
  }

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

  .brix---heading-h3-size-4 {
    font-size: 22px;
  }

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

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

  .brix---btn-primary-white-full-width {
    max-width: 150px;
    padding: 15px 20px;
    font-size: 15px;
  }

  .brix---color-neutral-814 {
    margin-bottom: 10px;
  }

  .brix---badge-secondary-small-bold-3 {
    padding-top: 6px;
    padding-bottom: 6px;
  }

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

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

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

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

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

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

  .package-feature-title {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .package-feature-title.white {
    margin-bottom: 5px;
  }

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

  .brix---display-4 {
    font-size: 30px;
  }

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

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

  .brix---display-5 {
    font-size: 28px;
    line-height: 32px;
  }

  .brix---display-5.white {
    font-size: 28px;
  }

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

  .brix---pricing-content-v9 {
    min-height: 170px;
    padding-bottom: 10px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .brix---grid-logo-strip-pricing-v9 {
    grid-column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .brix---paragraph-default-8 {
    margin-bottom: 10px;
  }

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

  .brix---text-area {
    border-radius: 18px;
  }

  .brix---input {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

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

  .brix---card-form {
    min-height: 560px;
    padding: 36px 30px 48px;
  }

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

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

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

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

  .brix---grid-1-column-gap-row-gap-56px {
    grid-row-gap: 40px;
  }

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

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

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

  .brix---text-area-line {
    min-height: 150px;
  }

  .brix---text-area-line::placeholder {
    font-size: 22px;
    line-height: 34px;
  }

  .brix---input-line {
    min-height: 74px;
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 34px;
  }

  .brix---input-line::placeholder {
    font-size: 22px;
  }

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

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

  .brix---inner-container-400px {
    max-width: 100%;
  }

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

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

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

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

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

  .div-block-35 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .div-block-36 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .headling-medium {
    margin-bottom: 40px;
  }

  .accordion-job {
    padding-right: 10px;
  }

  .faq-accordion {
    margin-bottom: 20px;
  }

  .faq-circle {
    width: 40px;
    height: 25px;
  }

  .jobs-input {
    width: 70%;
  }

  .jobs-input.last {
    width: 30%;
  }

  .job-description {
    font-size: 14px;
  }

  .jobst-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .h3 {
    font-size: 52px;
    line-height: 48px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
    font-weight: 600;
  }

  h4 {
    font-size: 24px;
    font-weight: 600;
  }

  h5 {
    font-size: 20px;
    font-weight: 500;
  }

  h6 {
    font-weight: 500;
  }

  .section-13 {
    padding-bottom: 20px;
  }

  .section-13.ligher-grey-bg {
    padding-bottom: 30px;
  }

  .section-13.ligher-grey-bg.zindex-3 {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .container {
    width: auto;
    max-width: none;
    padding: 0 2em;
    font-style: normal;
  }

  .container.nav-container {
    height: 90%;
    padding-left: 1em;
    padding-right: 1em;
  }

  .container.hero-container {
    display: block;
  }

  .container.no-padding-bottom {
    padding-top: 2em;
  }

  .container.clients-container {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .nav-menu-container {
    align-items: flex-end;
  }

  .navbar {
    height: 70px;
  }

  .hero-section.home-hero-section {
    height: 85vh;
    display: block;
  }

  .nav-menu {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
    max-height: none;
    padding-top: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-center-text {
    width: 100%;
  }

  .grid-6-col {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
  }

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

  .utility-page-content {
    padding: 29px;
  }

  .utility-page-form {
    justify-content: space-between;
    height: 420px;
    padding: 30px;
  }

  .footer {
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-image {
    width: 90%;
    min-width: 80px;
    max-width: 100px;
  }

  .made-by-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link-holder {
    display: none;
  }

  .content {
    width: 100%;
    min-width: 0;
    display: block;
  }

  .white-50pct {
    font-size: 16px;
  }

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

  .rich-text h5 {
    font-size: 17px;
    line-height: 1.4;
  }

  .rich-text figure {
    margin-top: 2em;
    margin-bottom: 3em;
    padding: 15px;
  }

  .rich-text blockquote {
    padding-left: 10px;
    font-size: 20px;
  }

  .rich-text ul {
    padding-left: 20px;
  }

  .rich-text h3 {
    font-size: 19px;
    line-height: 1.4;
  }

  .rich-text figcaption {
    font-size: 12px;
    line-height: 18px;
  }

  .rich-text h1 {
    font-size: 26px;
    font-weight: 500;
  }

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

  .rich-text h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .rich-text ol {
    padding-left: 20px;
  }

  .rich-text h4 {
    font-size: 18px;
    line-height: 1.4;
  }

  .rich-text h6 {
    font-size: 17px;
    line-height: 1.4;
  }

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

  .style-guide-title-holder {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .hero-text {
    font-size: 30px;
    font-weight: 500;
  }

  .paragraph-m {
    font-size: 16px;
  }

  .style-guide-left-panel {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
  }

  .headings-container {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .grid-holder {
    padding: 1em;
  }

  .paragraph-container {
    width: 100%;
  }

  .colors-holder {
    align-items: stretch;
  }

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

  .aa-font {
    font-size: 80px;
  }

  .button {
    width: 100%;
    height: 38px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .button.with-icon {
    background-position: 85%, 0 0;
    width: 50%;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 14px;
  }

  .button.with-icon:hover {
    background-position: 89%, 0 0;
  }

  .button.empty-button {
    width: 100%;
    height: 46px;
    font-size: 18px;
  }

  .button.download-button {
    padding-left: 2em;
    padding-right: 2em;
  }

  .button-holder,
  .headings-holder {
    padding: 1em;
  }

  .sg---color-primary {
    width: 100%;
    height: 100px;
  }

  .brand-logo {
    max-width: 55px;
  }

  .nav-link {
    font-weight: 400;
  }

  .nav-link.w--current {
    background-image: linear-gradient(to right, #6eff89, #715cff);
    border-radius: 20px;
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    font-weight: 700;
  }

  .nav-link.w--current:hover {
    font-size: 14px;
    font-weight: 500;
  }

  .hero-section-secondary {
    min-height: auto;
  }

  .footer-description {
    margin-top: -2em;
    font-size: 15px;
  }

  .footer-description.desc {
    font-size: 14px;
  }

  .social-media-icons {
    margin-bottom: 0;
  }

  .hero-description {
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
  }

  .hero-content {
    align-items: flex-start;
    max-height: 450px;
    display: block;
  }

  .contact-form {
    padding: 2em 1em;
  }

  .license-box {
    padding-left: 1em;
    padding-right: 1em;
  }

  .client-logo {
    outline-offset: 0px;
    border: 0 #000;
    outline: 3px #fff;
    min-width: 80px;
    max-width: 80px;
    max-height: 47px;
  }

  .instruction-item {
    padding-left: 1em;
    padding-right: 1em;
  }

  .trusted-by-grid-content {
    border: 1px #000;
    min-width: 130px;
  }

  .text-gradient-light {
    font-size: 30px;
    line-height: 0.8;
  }

  .hero-text-xl {
    font-size: 48px;
  }

  .text-gradient-colored {
    font-size: 28px;
    line-height: 1;
  }

  .grid-clients._1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    max-width: none;
    display: grid;
  }

  .grid-clients._2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .grid-clients._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .hero-cricle-bg {
    width: 80vw;
    height: 80vw;
    top: -35vw;
    left: -37vw;
  }

  .hero-circle-bg-holder {
    align-items: center;
    min-height: 650px;
  }

  .hero-animation {
    padding-left: 10px;
    padding-right: 10px;
    top: 100px;
  }

  .device-holder {
    width: 90%;
  }

  .dashboard-app-holder {
    perspective: 70vw;
    border-radius: 20px;
  }

  .animation-section {
    min-height: 150vh;
    margin-top: 85vh;
    padding-top: 60px;
  }

  .main-hero-bg-holder {
    overflow: visible;
  }

  .anim-icons-holder {
    left: -0.5em;
    right: -0.5em;
  }

  .anim-icon-holder {
    left: -5%;
  }

  .anim-icon-holder._2 {
    left: -8%;
  }

  .anim-icon-holder._3 {
    left: -10%;
  }

  .anim-icon-holder._4 {
    right: -3%;
  }

  .anim-icon-holder._5 {
    top: 25%;
    right: -9%;
  }

  .anim-icon-holder._6 {
    top: 59%;
    right: -8%;
  }

  .text-container.left-align {
    padding-bottom: 0;
  }

  .small-content {
    max-width: none;
    padding-bottom: 0;
  }

  .small-content.no-auto-margin {
    padding-bottom: 0;
  }

  .card {
    padding: 1.5em;
  }

  .card.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 0;
    max-height: none;
    padding-top: 1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .card.card-cta {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .card.job-position-card {
    padding: 1.5em;
  }

  .card.card-tab-feature {
    padding: 2em 1em;
  }

  .card.pricing-card {
    background-image: linear-gradient(140deg, #ffffff1a, #ffffff0d);
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    overflow: hidden;
  }

  .card.pricing-card:hover {
    background-image: linear-gradient(
      140deg,
      #ffffff1a,
      #ffffff0d 0%,
      #ffffff0d
    );
  }

  .card.pricing-card:active {
    background-image: linear-gradient(
      140deg,
      var(--primary),
      #5598b4 44%,
      var(--secondary)
    );
  }

  .card.pricing-card.main-pricing-card {
    width: 100%;
    min-width: 0%;
    max-width: none;
  }

  .card.card-no-bottom-padding {
    min-height: 410px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-description {
    font-size: 16px;
  }

  .hero-buttons-holder {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 80%;
    display: flex;
  }

  .preloader {
    display: none;
  }

  .preloader-logo {
    min-width: 40px;
  }

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

  .iphone {
    max-height: 680px;
  }

  .price {
    font-size: 40px;
  }

  .pricing-features-holders {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .card-list-items-holder {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 1.2em;
    padding-bottom: 1.2em;
  }

  .feedback-card-container {
    width: 290px;
    max-width: none;
    min-height: 340px;
  }

  .slider-container {
    padding-top: 0;
    display: none;
  }

  .slide {
    padding-left: 5px;
    padding-right: 5px;
  }

  .slider {
    min-width: 280px;
  }

  .card-item-content {
    padding-left: 0;
  }

  .heading-4-style {
    font-size: 24px;
  }

  .feature-icon {
    color: #98caff;
    width: 40px;
    height: 40px;
  }

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

  .secondary-page-title {
    font-size: 38px;
  }

  .secondary-page-holders {
    margin-bottom: 0;
  }

  .secondary-hero-image-holder {
    padding-top: 2.3em;
    padding-bottom: 3em;
  }

  .secondary-image-holder {
    height: 200px;
    margin-top: -2em;
  }

  .features-image-gradient {
    height: 100px;
  }

  .text-hidden {
    line-height: 1.2;
  }

  .hero-text-1 {
    font-size: 16px;
    line-height: 1;
  }

  .featured-card-image-holder {
    margin-bottom: 2em;
    padding-top: 4px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .features-card-sx-heading {
    margin-top: 10px;
    font-size: 17px;
  }

  .big-text {
    font-size: 18px;
  }

  .team-link {
    width: 100%;
  }

  .team-link.active-team-link {
    width: 80vw;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

  .team-list._5-columns {
    display: none;
  }

  .team-list._4-columns {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .job-position-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 0.5fr;
  }

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

  .insights-person-holder {
    width: 60px;
    height: 60px;
  }

  .heading-display {
    font-size: 34px;
  }

  .team-member-grid-social-media {
    grid-template-columns: 1fr;
  }

  .footer-name {
    color: #fff;
  }

  .footer-name-infinit {
    height: 25vw;
  }

  .footer-name-holder {
    align-items: flex-end;
    max-height: 99px;
  }

  .footer-gradient-background {
    opacity: 0.5;
    filter: blur(70px);
  }

  .ios-app {
    object-fit: cover;
    width: 100%;
  }

  .nav-last-button-holder.phone {
    display: block;
  }

  .clients-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 10000vw;
    min-width: 0%;
    max-width: none;
    padding-top: 20px;
    display: flex;
    overflow: visible;
  }

  .tabs-menu {
    flex-direction: column;
    margin-bottom: 1em;
  }

  .tab-card-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .tab-feature-image {
    height: 100%;
  }

  .tab-feature-image-holder {
    min-height: 66vw;
    margin-bottom: -2em;
    margin-right: -1em;
  }

  .footer-download-buttons {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    display: flex;
  }

  .ios-side-app-holder {
    border-radius: 10px;
  }

  .features-side-phones-rotated {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    transform: rotate(-38deg);
  }

  .buy-template-holder {
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em;
  }

  .accordion-item {
    flex: 0 auto;
    display: block;
  }

  .accordion-arrow-bottom {
    width: 16px;
    min-width: 16px;
  }

  .grid-faq {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .accordion-title {
    font-size: 20px;
  }

  .dropdown {
    width: 100%;
    display: none;
  }

  .dropdown-toggle {
    width: 100%;
    margin-left: 0;
  }

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

  .icon {
    justify-content: flex-end;
    display: block;
  }

  .dropdown-list.w--open {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    background-color: #5858584d;
    width: 100%;
  }

  .dropdown-link-3 {
    white-space: pre-line;
    word-break: break-all;
  }

  .grey20 {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .justify-grey-dim {
    font-size: 14px;
  }

  .small-secondary-text {
    font-size: 0;
    line-height: 1.2;
  }

  .bold-text-2 {
    font-size: 18px;
  }

  .udesly-text-black {
    color: #b1b1b1;
    padding-top: 1em;
    font-size: 10px;
  }

  .udesly-seconds-left {
    background-image: linear-gradient(
      225deg,
      var(--primary) 18%,
      var(--secondary) 85%
    );
    opacity: 0.8;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: lighten;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Schibsted Grotesk, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .udesly-minutes-left,
  .udesly-hours-left,
  .udesly-days-left {
    font-family: Schibsted Grotesk, sans-serif;
    font-weight: 500;
  }

  .udesly-countdown-wrapper {
    width: 100%;
  }

  .udesly-date-block {
    font-size: 1.5rem;
  }

  .fs_numbercount-1_text {
    color: var(--untitled-ui-gray300);
    font-size: 12px;
  }

  .fs_numbercount-1_number {
    font-size: 1.5rem;
  }

  .fs_numbercount-1_wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    padding: 2rem 1rem 1rem;
    font-family: Schibsted Grotesk, sans-serif;
    display: flex;
    overflow: visible;
  }

  .fs_numbercount-1_component {
    grid-template-columns: 1fr;
  }

  .bold-text-3 {
    font-size: 20px;
  }

  .text-gradient-light-title {
    font-size: 26px;
  }

  .grey20-subtitle {
    text-align: center;
    font-size: 16px;
  }

  .uui-heading-xxsmall {
    color: var(--light-grey);
    width: 80%;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 0;
  }

  .uui-layout14_item-list {
    grid-template-columns: 1fr 1fr;
  }

  .card-image-mac {
    width: 100%;
  }

  .feature-icon-2 {
    width: 50px;
    height: 50px;
    padding: 8px;
  }

  .udesly-izar-effect {
    min-height: auto;
  }

  .udesly-text-effect-wrapper {
    height: auto;
  }

  .udesly-morph {
    font-size: 3rem;
  }

  .udesly-text-morph-block {
    font-size: 16px;
  }

  .text-gradient-colorful {
    font-size: 25px;
    font-weight: 600;
  }

  .greywhite20 {
    text-align: left;
    font-size: 16px;
  }

  .div-block-2 {
    width: 100%;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .progress-bar {
    background-color: #f1f1f126;
    border-radius: 5px;
    width: 100%;
    height: 7px;
    padding-bottom: 0;
  }

  ._751progress {
    background-color: #4ffef8;
    border-radius: 5px;
    width: 75%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  ._752progress {
    background-color: #fd4ffe;
    border-radius: 5px;
    width: 75%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  ._801progress {
    background-color: var(--secondary);
    border-radius: 5px;
    width: 80%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  ._951progress {
    background-color: #1bea9e;
    border-radius: 5px;
    width: 95%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  ._501progress {
    background-color: #f8b26b;
    border-radius: 5px;
    width: 50%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  ._502progress {
    background-color: #f86b6b;
    border-radius: 5px;
    width: 50%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .progresstext {
    color: #fff;
    padding-bottom: 0.5em;
    font-size: 14px;
    font-weight: 600;
  }

  .text-gradient-light-benefit {
    font-size: 26px;
  }

  .feedback-div {
    display: block;
  }

  .talk-to-us {
    font-size: 60px;
  }

  .nav-link-holder-talk-to-us {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .uui-heroheader06_image-wrapper {
    height: 16rem;
  }

  .uui-heroheader06_component {
    grid-template-columns: 1fr;
  }

  .uui-layout84_item-2 {
    width: 100%;
  }

  .uui-layout84_item-2._1 {
    width: 100%;
    margin-top: 0;
  }

  .uui-layout84_item-2._4 {
    bottom: 0;
  }

  .uui-layout84_right-2 {
    grid-row-gap: 2rem;
    flex-flow: wrap;
    top: 0%;
  }

  .uui-layout84_image-blob-2 {
    max-width: 20rem;
    top: 10%;
  }

  .uui-layout84_image-2.hide {
    height: 22rem;
    max-height: 22rem;
  }

  .uui-layout84_image-wrapper-2 {
    height: 18rem;
    margin-top: 40px;
    margin-bottom: 0;
  }

  .uui-layout84_left-2 {
    grid-row-gap: 2rem;
    flex-flow: wrap;
  }

  .uui-padding-vertical-xhuge-3 {
    padding-top: 0;
  }

  .uui-layout82_list {
    grid-template-columns: 1fr;
  }

  .uui-text-size-large-3 {
    font-size: 14px;
  }

  .efi-h5 {
    color: var(--black);
    font-weight: 600;
  }

  .efi-ft-10-features-grid {
    grid-template-columns: 1fr;
  }

  .ft-10-tab-link.w--current,
  .efi-ft-10-container {
    display: none;
  }

  .efi-description {
    color: var(--dim-grey);
  }

  .f-gallery-image-x-tall {
    height: 300px;
  }

  .f-career-detail {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .f-career-detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-career-button-primary {
    margin-top: 14px;
  }

  .f-career-top-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-career-card {
    padding: 32px 24px;
  }

  .f-career-tab-link {
    width: 100%;
    min-width: auto;
  }

  .card-copy {
    padding: 1.5em;
  }

  .card-copy.card-cta {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .card-copy.job-position-card {
    padding: 1.5em;
  }

  .card-copy.card-tab-feature {
    padding: 2em 1em;
  }

  .nav-link-dropdown {
    justify-content: flex-start;
    width: auto;
    min-width: 0;
    max-width: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
  }

  .nav-link-dropdown:hover {
    background-image: none;
  }

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

  .heading-3 {
    font-size: 30px;
    line-height: 1.2;
  }

  .fn-button-secondery,
  .fn-button,
  .fn-button-wrapper {
    width: 100%;
  }

  .fh-features-image-wrapper {
    height: 220px;
  }

  .fn-featured-tabs-content {
    display: none;
  }

  .fn-tabs-paragraph {
    text-align: left;
    font-size: 16px;
  }

  .fn-tabs-link-title {
    flex-direction: row;
    grid-template-columns: 0.25fr 1fr;
  }

  .fn-featured-tabs-menu {
    padding-bottom: 20px;
  }

  .fn-featured-tabs {
    margin-top: 20px;
  }

  .left-brain-tab-title {
    color: #fff;
    width: 80%;
  }

  .content-3 {
    display: block;
  }

  .container-4 {
    padding: 2em 1em 3em;
  }

  .white-50pct-2 {
    font-size: 16px;
  }

  .card-side-content-item-2 {
    border-bottom: 1px solid #878d9533;
    padding: 5px;
  }

  .card-side-content-2 {
    box-shadow: none;
  }

  .text-gradient-light-3 {
    font-size: 30px;
  }

  .section-2 {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .feature-icon-3 {
    width: 30px;
    height: 30px;
  }

  .heading-4-style-2 {
    font-size: 24px;
  }

  .icon-grey-2 {
    background-image: linear-gradient(
      45deg,
      var(--primary) 33%,
      var(--secondary)
    );
    color: #fffc;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    width: 30px;
    height: 30px;
    margin-top: 3px;
  }

  .grey-dim-4 {
    font-size: 14px;
  }

  .grid-3-features-4 {
    display: block;
  }

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

  .features-card-heading-3 {
    margin-bottom: 5px;
  }

  .text-gradient-light-5 {
    font-size: 20px;
  }

  .text-span-4 {
    color: var(--bg-grey);
    font-size: 14px;
  }

  .text-span-5.text-gradient-colorful {
    font-size: 22px;
  }

  .mac-app-holder-3 {
    object-fit: fill;
    width: 18em;
    height: 11em;
    position: absolute;
    top: 7%;
    left: 5%;
    right: 0%;
    overflow: hidden;
  }

  .button-download {
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-download.with-icon {
    background-position: 85%, 0 0;
    padding-left: 20px;
    padding-right: 40px;
  }

  .button-download.with-icon:hover {
    background-position: 89%, 0 0;
  }

  .button-download.download-button {
    padding-left: 2em;
    padding-right: 2em;
  }

  .text-gradient-colored-small {
    font-size: 25px;
    line-height: 1.1;
  }

  .progress-div {
    padding-bottom: 1em;
  }

  .button-say-hello {
    width: 100%;
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .button-say-hello.with-icon {
    background-position: 85%, 0 0;
    width: 50%;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 14px;
  }

  .button-say-hello.with-icon:hover {
    background-position: 89%, 0 0;
  }

  .button-say-hello.download-button {
    padding-left: 2em;
    padding-right: 2em;
  }

  .container-5 {
    padding: 3em 1em 4em;
  }

  .body {
    overflow: visible;
  }

  .feedback {
    display: none;
  }

  .feedback.ligher-grey-bg {
    z-index: 0;
    display: block;
  }

  .grid-clients-first._1 {
    display: block;
  }

  .hero-content-2 {
    align-items: flex-start;
    max-height: 450px;
  }

  .text-gradient-colored-2 {
    font-size: 65px;
    line-height: 1.1;
  }

  .hero-text-3 {
    font-size: 16px;
  }

  .hero-buttons-holder-2 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 90%;
  }

  .button-2 {
    width: 50%;
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .button-2.with-icon {
    background-position: 85%, 0 0;
    width: 50%;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 14px;
  }

  .button-2.with-icon:hover {
    background-position: 89%, 0 0;
  }

  .hero-text-4 {
    font-size: 30px;
    font-weight: 500;
  }

  .hero-text-4.text-gradient-light {
    font-size: 30px;
    line-height: 1.2;
  }

  .grid-3-features-5 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    margin-bottom: 1.5em;
  }

  .card-item-content-4 {
    text-align: right;
  }

  .heading-4-style-3 {
    font-size: 18px;
  }

  .grey-dim-5 {
    text-align: left;
    font-size: 16px;
  }

  .div-block-7 {
    padding-top: 20px;
  }

  .container-6 {
    padding: 3em 1em;
  }

  .footer-content-2 {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .button-3 {
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-3.download-button {
    padding-left: 2em;
    padding-right: 2em;
  }

  .card-item-content-5 {
    text-align: right;
    align-items: flex-end;
  }

  .grey-dim-6 {
    text-align: right;
  }

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

  .content-tms {
    display: none;
  }

  .mobile-content-tms {
    display: block;
  }

  .card-colored-bg-3 {
    opacity: 1;
    background-color: #d0d5dd;
    background-image: none;
    border-radius: 20px;
    font-size: 1630px;
    box-shadow: inset 0 1px 20px #00183f4d;
  }

  .content-dep {
    display: none;
  }

  .mobile-content-dep {
    display: block;
  }

  .content-smg,
  .content-crm {
    display: none;
  }

  .mobile-content-crm {
    display: block;
  }

  .content-dapp {
    display: none;
  }

  .mobile-content-smg {
    display: block;
  }

  .content-erp {
    display: none;
  }

  .mobile-content-erp,
  .mobile-content-dapp {
    display: block;
  }

  .feature-content {
    padding-bottom: 20px;
  }

  .content-dapp-copy {
    display: none;
  }

  .card-image {
    padding: 1.5em;
  }

  .card-image.card-cta {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .card-image.job-position-card {
    padding: 1.5em;
  }

  .card-image.card-tab-feature {
    padding: 2em 1em;
  }

  .mobile-content-smg-copy {
    display: block;
  }

  .card-side-content-item-bottom {
    border: 1px #000;
    padding: 5px;
  }

  .card-mac {
    padding: 1.5em;
  }

  .card-mac.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 0;
    max-height: none;
    padding-top: 1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .card-mac.card-cta {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .card-mac.job-position-card {
    padding: 1.5em;
  }

  .card-mac.card-tab-feature {
    padding: 2em 1em;
  }

  .card-mac.card-no-bottom-padding {
    min-height: 410px;
  }

  .small-card {
    padding: 1.5em 1.5em 0;
  }

  .small-card.card-no-bottom-padding {
    max-width: none;
    height: 100%;
    min-height: 0;
    max-height: none;
    padding-top: 1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .small-card.card-cta {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .small-card.job-position-card {
    padding: 1.5em;
  }

  .small-card.card-tab-feature {
    padding: 2em 1em;
  }

  .small-card.card-no-bottom-padding {
    min-height: 410px;
  }

  .mobile-content-mlm {
    display: block;
  }

  .content-mlm {
    display: none;
  }

  .genius-img-holder {
    left: -4%;
  }

  .genius-img {
    object-fit: contain;
    min-width: 350px;
  }

  .udesly-izar-effect-2 {
    min-height: auto;
  }

  .udesly-text-effect-wrapper-2 {
    height: auto;
  }

  .udesly-izar-effect-3 {
    min-height: auto;
  }

  .udesly-text-effect-wrapper-3 {
    height: 45px;
  }

  .udesly-vega-effect {
    white-space: normal;
    word-break: normal;
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .udesly-text-effect-wrapper-4 {
    height: auto;
  }

  .nav-link-ttu {
    background-color: var(--light-grey);
    background-image: none;
    border-radius: 100%;
    padding: 10px 15px;
  }

  .text-block-2,
  .text-block-3 {
    font-size: 14px;
    font-weight: 400;
  }

  .rl_gallery21_heading-wrapper {
    grid-template-columns: 1fr;
  }

  .waves-small-image-wrap-gallery-3 {
    display: block;
  }

  .waves-small-image-wrap-gallery-3.last-image-top-grid {
    display: none;
  }

  .waves-bottom-gird-gallery-3 {
    grid-template-columns: 0.8fr 1.2fr;
    height: 30vh;
  }

  .waves-top-grid-gallery-3 {
    grid-template-columns: 0.7fr 0.8fr;
    height: 30vh;
    margin-bottom: 16px;
  }

  .waves---section-medium {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .text-container-team.left-align,
  .text-container-copy.left-align {
    padding-bottom: 0;
  }

  .waves-image-gallery-1 {
    max-width: none;
  }

  .waves-column-gallery-1 {
    flex-wrap: nowrap;
    height: 100%;
    display: flex;
  }

  .waves-grid-gallery-1 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    place-content: stretch;
    place-items: center start;
    max-width: none;
  }

  .waves-master-gallery-1 {
    width: 100%;
    max-width: none;
  }

  .waves---main-container {
    max-width: none;
  }

  .waves---section-medium-2 {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .lightbox-link {
    width: auto;
    min-height: 0;
  }

  .cf-pricing-plan-pointer-text-18px {
    font-size: 16px;
  }

  .cf-pricing-plan-check-icon {
    margin-right: 8px;
  }

  .cf-h3-heading-40px {
    font-size: 20px;
  }

  .cf-different-tab-link.w--current {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .cf-different-menu {
    justify-content: flex-start;
  }

  .cf-h2-heading-56px {
    font-size: 24px;
  }

  .cf-wrapper-1160 {
    width: 90%;
  }

  .container-7 {
    height: 100%;
    min-height: 0;
    max-height: none;
  }

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

  .div-block-12 {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .div-block-13 {
    height: 100%;
    padding-bottom: 10px;
  }

  .text-description {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: none;
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
    display: block;
  }

  .text-container-2.no-border-bottom {
    height: auto;
    min-height: 0;
  }

  .container-8 {
    max-height: none;
  }

  .content-milestone {
    width: auto;
    max-width: none;
  }

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

  .features-card-sx-heading-dep {
    font-size: 20px;
  }

  .waves-small-image-wrap-gallery-4,
  .waves-small-image-wrap-gallery-4.last-image-top-grid {
    display: none;
  }

  .waves-small-image-wrap-gallery-3-copy {
    display: block;
  }

  .waves-small-image-wrap-gallery-3-copy.last-image-top-grid {
    display: none;
  }

  .text-block-5 {
    font-size: 13px;
  }

  .grid-clients-list._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    max-width: none;
    display: grid;
  }

  .grid-clients-list._2 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-clients-list-2._2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: minmax(180px, 1fr) 1fr 1fr 1fr 1fr;
  }

  .grid-clients-list-2._1 {
    grid-column-gap: 1.8em;
    grid-row-gap: 1.8em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    max-width: none;
    display: grid;
  }

  .grid-clients-list-2._2 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .mobile-content-fos {
    display: block;
  }

  .content-fos {
    display: none;
  }

  .link-background-talk {
    display: block;
  }

  .partner-section {
    padding-bottom: 20px;
    display: none;
    overflow: hidden;
  }

  .partner-section.ligher-grey-bg {
    padding-bottom: 30px;
  }

  .text-block-6,
  .text-block-7 {
    font-size: 14px;
  }

  .clients-logo-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    width: 10000vw;
    min-width: 0;
    max-width: none;
    padding-top: 20px;
    display: flex;
    overflow: visible;
  }

  .content-price {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .container-9 {
    padding: 3em 1em;
  }

  .white-50pct-3 {
    font-size: 15px;
  }

  .client-logo-2 {
    max-height: 45px;
  }

  .feedbacktwo,
  .feedbacktwo.ligher-grey-bg,
  .feedback-two {
    display: none;
  }

  .feedback-two.ligher-grey-bg {
    z-index: 0;
    padding-bottom: 60px;
    display: block;
  }

  .text-container-3 {
    overflow: visible;
  }

  .container-10 {
    width: auto;
    max-width: none;
    padding: 0 2em;
    font-style: normal;
  }

  .container-10.clients-container {
    width: 100%;
    max-width: 100%;
  }

  .clients-list-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    min-width: 0%;
    max-width: 100px;
    padding-top: 20px;
    display: flex;
  }

  .grey20-subtitle-2 {
    text-align: center;
    font-size: 16px;
  }

  .feedback-2 {
    display: none;
  }

  .feedback-2.ligher-grey-bg {
    z-index: 0;
    width: 10000vw;
    padding-bottom: 100px;
    display: block;
    overflow: hidden;
  }

  .container-11 {
    width: auto;
    max-width: none;
    padding: 0 2em;
    font-style: normal;
  }

  .container-11.clients-container {
    width: 100%;
    max-width: 100%;
  }

  .clients-list-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1000000vw;
    min-width: 0%;
    max-width: none;
    padding-top: 20px;
    display: flex;
  }

  .grey20-subtitle-3 {
    text-align: center;
    font-size: 16px;
  }

  .mac-app-holder-5 {
    object-fit: cover;
    width: 14.2em;
    height: 9em;
    position: absolute;
    top: 7%;
    left: 5%;
    right: 0%;
    overflow: visible;
  }

  .white-50pct-one {
    font-size: 16px;
  }

  .bold-text-11 {
    font-size: 30px;
    line-height: 1;
  }

  .mobile-holder {
    perspective: 70vw;
    border-radius: 20px;
  }

  .text-span-13 {
    font-size: 15px;
    line-height: 1.3;
  }

  .card-description-2 {
    font-size: 14px;
  }

  .tab-feature-image-holder-2 {
    min-height: 66vw;
    margin-bottom: -2em;
    margin-right: -1em;
  }

  .card-2 {
    padding: 1.5em;
  }

  .card-2.card-tab-feature {
    padding: 2em 1em;
  }

  .tab-card-grid-2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .tabs-menu-2 {
    flex-direction: column;
    margin-bottom: 1em;
  }

  .tab-feature-image-2 {
    height: 100%;
  }

  .device-holder-2 {
    width: 90%;
  }

  .button-4 {
    width: 100%;
    height: 38px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .button-4.empty-button {
    width: 100%;
    height: 46px;
    font-size: 18px;
  }

  .feature-icon-new {
    color: #98caff;
    width: 40px;
    height: 40px;
  }

  .cf-logo-background-text {
    font-size: 80px;
    top: -7%;
  }

  .cf-logo-image-container {
    height: auto;
    min-height: 60px;
  }

  .cf-logos-contain {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    align-items: center;
  }

  .cf-logos-heading {
    font-size: 22px;
  }

  .cf-logo-wrapper {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .cf-feature-pointer-text-20px {
    font-size: 16px;
    line-height: 140%;
  }

  .cf-choose-feature-check-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .cf-choose-feature-bold-text-16px {
    margin-bottom: 20px;
  }

  .cf-choose-feature-wrapper {
    padding: 40px 15px;
  }

  .cf-bottom-line-image {
    left: 0;
  }

  .cf-h2-heading-56px-2 {
    font-size: 24px;
  }

  .cf-wrapper-1161 {
    width: 90%;
  }

  .container-12 {
    max-width: none;
  }

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

  .waves---heading-3-no-margins {
    font-size: 22px;
  }

  .waves-tile-small-feature-7 {
    text-align: center;
    align-items: center;
  }

  .waves-inside-tile-vertical-features-7 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves-image-wide-feature-7 {
    width: 100%;
    height: auto;
  }

  .waves-inside-wide-feature-7 {
    max-width: 100%;
  }

  .waves-wide-tile-features-7 {
    padding-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---heading-2-no-margins {
    font-size: 34px;
  }

  .waves---section-medium-3 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .container-13 {
    max-width: none;
  }

  .brix---link-icon-right {
    width: 18px;
  }

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

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

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

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

  .brix---image-wrapper-br-24px-shadow {
    border-radius: 16px;
  }

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

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

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

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

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

  .fn-button-secondery-2,
  .fn-button-2,
  .fn-button-wrapper-2 {
    width: 100%;
  }

  .fh-features-image-wrapper-2 {
    height: 220px;
  }

  .brix---logo-strip-image-card {
    box-shadow: 0 1px 6px 0 var(--elements-webflow-library--general--shadow-02);
    border-radius: 10px;
    width: 120px;
    margin: 6px;
  }

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

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

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

  .brix---section-logo-strip-v6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brix---paragraph-default-2 {
    font-size: 14px;
    line-height: 1.5em;
  }

  .brix---heading-h4-size {
    font-size: 18px;
    line-height: 24px;
  }

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

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

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

  .brix---grid-2-columns-gap-56px {
    grid-row-gap: 36px;
  }

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

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

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

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

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

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

  .brix---badge-secondary-small-bold {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 16px;
  }

  .brix---badge-wrapper-top-right {
    top: 14px;
    right: 14px;
  }

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

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

  .brix---grid-pricing-v10-featured {
    grid-template-columns: 1fr;
  }

  .brix---display-3 {
    font-size: 18px;
    line-height: 1.8em;
  }

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

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

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

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

  .brix---buttons-row-center {
    flex-direction: column;
  }

  .brix---image-wrapper-br-24px-shadow-2 {
    border-radius: 16px;
  }

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

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

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

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

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

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

  .brix---grid-content-section-v6 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .card-description-3 {
    font-size: 14px;
  }

  .tab-feature-image-holder-3 {
    min-height: 66vw;
    margin-bottom: -2em;
    margin-right: -1em;
  }

  .card-3 {
    padding: 1.5em;
  }

  .card-3.card-tab-feature {
    padding: 2em 1em;
  }

  .tab-card-grid-3 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .tabs-menu-3 {
    flex-direction: column;
    margin-bottom: 1em;
  }

  .small-content-2 {
    padding-bottom: 2em;
  }

  .tab-feature-image-3 {
    height: 100%;
    top: 40px;
    left: 100px;
    transform: scale(1);
    object-position: top !important;
  }

  .container-14 {
    padding: 3em 1em;
  }

  .trusted-by-grid-content-2 {
    min-width: 130px;
  }

  .container-15 {
    padding: 3em 1em;
  }

  .text-gradient-light-8 {
    font-size: 18px;
  }

  .card-description-4 {
    font-size: 14px;
  }

  .tab-feature-image-holder-4 {
    min-height: 60vw;
    margin-bottom: -2em;
    margin-right: -1em;
    overflow: visible;
  }

  .white-50pct-4 {
    font-size: 14px;
  }

  .card-4 {
    padding: 1.5em;
  }

  .card-4.card-tab-feature {
    padding: 1.5em 1em 2em;
  }

  .container-16,
  .container-17 {
    padding: 3em 1em;
  }

  .feature-icon-4 {
    width: 25px;
    height: 25px;
  }

  .heading-4-style-4 {
    font-size: 18px;
  }

  .feedback-card-container-2 {
    max-width: 80vw;
    min-height: 340px;
  }

  .slider-container-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .white-50pct-5 {
    font-size: 14px;
  }

  .card-5 {
    padding: 1.5em;
  }

  .slider-4 {
    min-width: 280px;
  }

  .slide-3 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-18 {
    padding: 3em 1em 0;
  }

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

  .brix---badge-secondary-small-bold-2 {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 16px;
  }

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

  .section-8 {
    padding-bottom: 20px;
  }

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

  .no-margin {
    font-size: 15px;
  }

  .two-column-wrapper {
    padding-right: 0;
  }

  .home-feature-item-new {
    width: 100%;
  }

  .image-style-solo {
    height: 300px;
  }

  .text-white.no-margin {
    font-size: 14px;
  }

  .home-new-features-wrapp {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .in-section-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .home-feature-number-new {
    font-size: 28px;
  }

  .accordion-title-2 {
    width: 84%;
  }

  .section-11 {
    padding-bottom: 20px;
  }

  .section-11.ligher-grey-bg {
    padding-bottom: 30px;
  }

  .ft-10-tab-link-2.w--current {
    display: none;
  }

  .text-container-6.left-align {
    padding-bottom: 0;
  }

  .efi-h5-2 {
    color: #0f0f11;
    font-weight: 600;
  }

  .features-side-phones-rotated-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    transform: rotate(-38deg);
  }

  .container-19 {
    width: auto;
    max-width: none;
    padding: 0 2em;
    font-style: normal;
  }

  .efi-description-2 {
    color: #878d95;
  }

  .text-gradient-light-title-2 {
    font-size: 30px;
  }

  .icon-grey-3 {
    color: #fffc;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, #ed1f41 33%, #ff7c54);
    -webkit-background-clip: text;
    background-clip: text;
    width: 30px;
    height: 30px;
    margin-top: 3px;
  }

  .small-content-3 {
    max-width: none;
    padding-bottom: 0;
  }

  .small-content-3.no-auto-margin {
    padding-bottom: 0;
  }

  .grid-3-features-6 {
    display: block;
  }

  .text-gradient-light-10 {
    font-size: 25px;
  }

  .white-50pct-6 {
    font-size: 14px;
  }

  .card-6 {
    padding: 1.5em;
  }

  .container-20 {
    padding: 3em 1em;
  }

  .ios-side-app-holder-2 {
    border-radius: 10px;
  }

  .featured-card-image-holder-2 {
    margin-bottom: 1.5em;
    padding-top: 4px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .container-21 {
    padding: 3em 1em;
  }

  .text-gradient-light-12 {
    font-size: 26px;
  }

  .grey-dim-9 {
    font-size: 13px;
  }

  .container-22 {
    padding: 3em 1em;
  }

  .accordion-title-3 {
    font-size: 18px;
  }

  .text-gradient-light-15 {
    font-size: 16px;
  }

  .tab-feature-image-4 {
    height: 100%;
    top: 0px;
    left: 10px;
    transform: scale(2.1);
    object-position: top !important;
  }

  .tab-feature-image-5 {
    height: 100%;
    top: 20px;
    left: 100px;
    transform: scale(1);
    object-position: top !important;
  }

  .brix---paragraph-default-5 {
    font-size: 15px;
    line-height: 1.5em;
  }

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

  .card_side.is-front {
    padding: 1.5rem;
  }

  .card_side.is-back {
    padding: 1.5rem;
    transform: rotateX(0) rotateY(180deg) rotateZ(0);
  }

  .card_cta-wrapper {
    inset: auto auto 0.5rem 0.5rem;
  }

  .card_cta-wrapper.is-back {
    bottom: 2rem;
    left: 1.5rem;
  }

  .card_traits-item {
    grid-column-gap: 0.5rem;
  }

  .card_traits {
    grid-row-gap: 1rem;
  }

  .card_traits-list {
    grid-column-gap: 0.5rem;
    grid-row-gap: 1rem;
  }

  .heading-type {
    font-size: 0.75rem;
  }

  .card_traits-icon-wrapper {
    display: none;
  }

  .card_wrapper {
    width: 100%;
    max-width: 9em;
    height: 100%;
    min-height: 9em;
  }

  .card-img {
    position: relative;
  }

  .card_main-text {
    margin-bottom: 1.5rem;
  }

  .card_stamp-wrapper {
    width: 4rem;
  }

  .lottie-animation-2 {
    width: 90%;
    margin-top: -3em;
  }

  .text-gradient-light-8-copy {
    font-size: 26px;
  }

  .heading-10 {
    font-size: 25px;
  }

  .brix---paragraph-default-opy {
    font-size: 15px;
    line-height: 1.5em;
  }

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

  .container-23 {
    width: auto;
    max-width: none;
    padding: 0 2em;
    font-style: normal;
  }

  .container-23.clients-container {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .clients-list-5 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 10000vw;
    min-width: 0%;
    max-width: none;
    padding-top: 20px;
    display: flex;
    overflow: visible;
    gap:11em;
  }

  .feedback-div-3 {
    display: block;
  }

  .cf-secondary-button {
    font-size: 16px;
  }

  .cf-pricing-box-plan-wrapper {
    width: 100%;
  }

  .cf-pricing-box.pricing-1-box,
  .cf-pricing-box.green-pricing-box {
    padding: 30px 15px;
  }

  .cf-primary-button {
    padding: 16px 20px;
  }

  .cf-pricing-box-row.pricing-box-2 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .cf-pricing-box-wrapper.pricing-1-box {
    margin-top: 110px !important;
    top: -80px;
  }

  .cf-toggle-save-text {
    font-size: 13px;
  }

  .cf-toggle-save-container {
    left: 27%;
  }

  .cf-toggle-text {
    font-size: 14px;
  }

  .cf-toggle-dot.green-toggle-dot {
    width: 15px;
    height: 15px;
  }

  .cf-toggle-dot.green-toggle-dot.mobile {
    display: flex;
  }

  .cf-toggle-dot.green-toggle-dot.desktop {
    display: none;
  }

  .cf-toggle-contain.white-toggle {
    border-radius: 17px;
    width: 43px;
    height: 23px;
  }

  .cf-toggle-contain.white-toggle.mobile {
    display: flex;
  }

  .cf-toggle-contain.white-toggle.hide {
    display: none;
  }

  .cf-pricing-hero-para {
    font-size: 16px;
  }

  .cf-colourful-text {
    padding-bottom: 0;
  }

  .cf-white-top-heading {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .cf-pricing-hero-section {
    padding-top: 160px;
    padding-bottom: 150px;
  }

  .brix---btn-primary-full-width {
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    font-style: normal;
    line-height: 18px;
    left: 0;
    right: 0;
  }

  .brix---text-200-list-bold-2 {
    white-space: normal;
    font-size: 13px;
  }

  .brix---color-neutral-812.align-top {
    align-items: flex-start;
  }

  .brix---color-neutral-812.space-between {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: wrap;
  }

  .brix---icon-list-2 {
    width: 24px;
    max-width: 13px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 8px;
  }

  .brix---icon-list-2.margin-top.mt1 {
    margin-top: 2px;
    margin-bottom: 0;
  }

  .brix---icon-list-item-wrapper-2.margin-top {
    margin-top: 20px;
  }

  .brix---icon-list-item-wrapper-2.margin-top.w100 {
    align-items: flex-start;
  }

  .brix---grid-1-column-gap-row-16px-2 {
    width: auto;
  }

  .brix---mg-bottom-40px-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    place-content: stretch flex-start;
    align-items: flex-start;
    padding-bottom: 60px;
    display: flex;
  }

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

  .brix---paragraph-default-6 {
    font-size: 12px;
    line-height: 1.5em;
  }

  .brix---text-300-medium {
    font-size: 14px;
  }

  .brix---heading-h1-size-2 {
    margin-bottom: 0;
    font-size: 26px;
    line-height: 37px;
  }

  .brix---heading-h1-size-2.custom {
    font-size: 26px;
  }

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

  .brix---btn-primary-white-full-width {
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    left: 0;
    right: 0;
  }

  .brix---badge-secondary-small-bold-3 {
    padding: 4px 8px;
    font-size: 11px;
    line-height: 16px;
  }

  .brix---badge-wrapper-top-right-2 {
    top: 14px;
    right: 14px;
  }

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

  .brix---badge-secondary---tabs {
    margin-left: 0;
    margin-right: 0;
    padding: 14px 22px;
    font-size: 16px;
    line-height: 18px;
  }

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

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

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

  .package-feature-title {
    white-space: normal;
    font-size: 14px;
    line-height: 20px;
  }

  .package-feature-title.white {
    margin-bottom: 8px;
    font-size: 14px;
  }

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

  .text-span-26.same-size {
    font-size: 12px;
    line-height: 1.3em;
  }

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

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

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

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

  .brix---display-5 {
    font-size: 22px;
  }

  .brix---display-5.white {
    font-size: 22px;
    line-height: 27px;
  }

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

  .brix---pricing-v9-icon-wrapper {
    margin-bottom: 22px;
    margin-right: 0;
  }

  .brix---flex-horizontal-pricing-v9 {
    flex-direction: column;
    margin-bottom: 18px;
  }

  .brix---pricing-content-v9 {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }

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

  .brix---grid-1-column-gap-row-16px-3.hide {
    display: none;
  }

  .brix---grid-logo-strip-pricing-v9 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .brix---divider-64px {
    margin-top: 32px;
    margin-bottom: 32px;
  }

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

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

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

  .brix---section-6 {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .brix---paragraph-default-8 {
    font-size: 13px;
    line-height: 1.5em;
  }

  .flex-block {
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .div-block-33 {
    margin-top: 0;
  }

  .div-block-33.align-top {
    grid-column-gap: 21px;
    grid-row-gap: 5px;
    flex-flow: wrap;
    margin-top: 5px;
  }

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

  .brix---text-area {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    line-height: 26px;
  }

  .brix---text-area::placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .brix---input {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    line-height: 18px;
  }

  .brix---input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .brix---card-form {
    padding-left: 23px;
    padding-right: 23px;
  }

  .brix---text-200-bold-2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-end;
    font-size: 14px;
    line-height: 16px;
    display: flex;
  }

  .brix---big-icon-left {
    border-radius: 14px;
    max-width: 50px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .brix---big-icon-left-mg-extra {
    border-radius: 14px;
    max-width: 56px;
    margin-bottom: 16px;
    margin-right: 0;
  }

  .brix---link-big-icon-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 26px 24px;
  }

  .brix---link-big-icon-wrapper-2,
  .brix---link-big-icon-wrapper-no-hover {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

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

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

  .brix---text-area-line {
    border-bottom-width: 1px;
    min-height: 130px;
  }

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

  .brix---input-line {
    border-bottom-width: 1px;
    min-height: 58px;
    font-size: 16px;
    line-height: 18px;
  }

  .brix---input-line::placeholder {
    font-size: 16px;
    line-height: 18px;
  }

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

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

  .brix---card-link-icon-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
  }

  .brix---inner-container-400px {
    max-width: 100%;
  }

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

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

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

  .cf-toggle-save-container-2 {
    top: -122%;
    left: 27%;
  }

  .cf-toggle-save-container-2.hide {
    display: none;
  }

  .brix---pricing-content-v99 {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-span-27 {
    margin-top: 0;
  }

  .div-block-34 {
    order: -1;
  }

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

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

  .headling-medium {
    width: 90%;
  }

  .accordion-job,
  .accordion-item-trigger-2 {
    padding-left: 10px;
  }

  .title-regular {
    font-size: 13px;
  }

  .faq-accordion {
    margin-bottom: 20px;

    padding-bottom: 5px;

    padding-right: 15px;
  }

  .faq-circle {
    justify-content: center;

    align-items: center;

    height: 18px;

    margin-top: 0;

    margin-right: 0;
  }

  .jobs-input {
    width: 100%;

    margin-bottom: 10px;

    margin-right: 0%;
  }

  .jobs-input.last {
    width: 100%;
  }

  .job-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .jobst-text {
    margin-top: 8px;
    font-size: 15px;
    line-height: 22px;
  }

  .h3 {
    font-size: 47px;
    line-height: 46px;
  }

  .open-close-box {
    height: 100%;
  }

  .flex-jobs {
    flex-wrap: wrap;
  }

  .section-14 {
    padding-bottom: 20px;
  }
}

#w-node-b8cd0294-b542-c7b6-a3a2-58c9dec2ba8e-3a19e39d,
#w-node-b8cd0294-b542-c7b6-a3a2-58c9dec2ba93-3a19e39d,
#w-node-b8cd0294-b542-c7b6-a3a2-58c9dec2ba98-3a19e39d,
#w-node-_5ca9b294-f164-b9ea-4f60-34762976e926-3a19e39d,
#w-node-d8fb4c99-e460-fee9-e69e-fd50aa50ea54-3a19e39d,
#w-node-d8fb4c99-e460-fee9-e69e-fd50aa50ea64-3a19e39d,
#w-node-d8fb4c99-e460-fee9-e69e-fd50aa50ea74-3a19e39d,
#w-node-_64b9cfe6-2648-6c47-eaea-5b86f24247fb-3a19e39d,
#w-node-ff98c361-0c8b-cb5a-32d0-688039eb62b9-3a19e39d,
#w-node-ff98c361-0c8b-cb5a-32d0-688039eb62b4-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc448607693-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076a3-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076b3-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076c6-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076c9-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076d7-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076de-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076e5-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076ec-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076f5-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc4486076fd-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc448607704-3a19e39d,
#w-node-d4efc184-e66d-4675-1400-8bc44860770b-3a19e39d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_98fa0c05-bc5f-c0dd-66e1-0a05d8a2c911-3a19e39d,
#w-node-_36cf36dc-2f9b-bf5e-0ad0-b3c2eef1eb27-3a19e39d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9aa510b8-6d73-44ca-f140-90e1d8c933d4-3a19e39d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9aa510b8-6d73-44ca-f140-90e1d8c933ed-3a19e39d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9aa510b8-6d73-44ca-f140-90e1d8c933ee-3a19e39d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71c2f9f5-c072-3f5b-cac4-708cec1fa0e3-3a19e39d,
#w-node-_055a2273-ae09-a749-2e59-8bc32f38e9fb-3a19e39d {
  place-self: auto;
}

#w-node-_56588877-2fc4-5956-0a25-cd8636d97ee9-3a19e39d,
#w-node-_56588877-2fc4-5956-0a25-cd8636d97eea-3a19e39d,
#w-node-_56588877-2fc4-5956-0a25-cd8636d97f06-3a19e39d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8bacde8d-777f-a547-781b-ca53cd471579-3a19e39d,
#w-node-_8bacde8d-777f-a547-781b-ca53cd471582-3a19e39d {
  place-self: auto;
}

#w-node-_8bacde8d-777f-a547-781b-ca53cd4715ae-3a19e39d,
#w-node-_8bacde8d-777f-a547-781b-ca53cd4715af-3a19e39d,
#w-node-_8bacde8d-777f-a547-781b-ca53cd4715d3-3a19e39d,
#w-node-_24ef0d93-198d-eccc-edd1-808a823e5a6d-3a19e39d,
#w-node-_24ef0d93-198d-eccc-edd1-808a823e5a74-3a19e39d,
#w-node-_24ef0d93-198d-eccc-edd1-808a823e5a7b-3a19e39d,
#w-node-_24ef0d93-198d-eccc-edd1-808a823e5a82-3a19e39d,
#w-node-cfd268a2-bce9-5b71-9320-a4da589ad017-3a19e39d,
#w-node-_4e908985-e516-b081-5943-1d549b789856-3a19e39d,
#w-node-c7285276-c56b-7990-7359-128229099e04-3a19e39d,
#w-node-ce77cff8-8d4e-9c49-b562-05fe04133698-3a19e39d,
#w-node-_4707e2da-2c4f-495b-bc0a-c985002a9f89-3a19e39d,
#w-node-_62bd577d-3fe6-3dd7-c969-bd832a51238f-3a19e39d,
#w-node-_62bd577d-3fe6-3dd7-c969-bd832a5123ab-3a19e39d,
#w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d59-0a144c54 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c887c81d-5a39-0442-ab26-e899be8a081d-3a19e3df {
  grid-area: span 1 / span 6 / span 1 / span 6;
  align-self: center;
}

#w-node-_4c20380c-decb-8b4c-fd76-b782533c1aae-3a19e3df,
#w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9ea-3a19e3df,
#w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-3a19e3df,
#w-node-_7d61ae05-ecd1-38c1-fb6b-9944eef3651e-3a19e3df,
#w-node-_02ff6699-0b23-e35c-2212-f3de242d80cb-3a19e3df,
#w-node-_7c72e88d-0855-4a35-b804-728e01e0f8c0-3a19e3df,
#w-node-_3a44c87a-6e51-8e71-8c89-4f6f630faee5-3a19e3df,
#w-node-_7de61a2c-1627-86a7-7358-8fb0484d7de3-3a19e3df,
#w-node-f126b420-431a-6f2a-ccd8-4215e9d2c6d9-3a19e3df,
#w-node-_73ba5834-e399-84c8-d813-86c4bafdd2a0-3a19e3df,
#w-node-_297d7db2-819e-2e1b-b1cd-30ce46dc36b7-3a19e3df,
#w-node-_818654bf-2743-ae00-033c-7f0d421b9200-3a19e3df,
#w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fbe-3a19e3df,
#w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fde-3a19e3df,
#w-node-_1d19fdaf-3e99-0cdb-1be3-89978db63000-3a19e3df,
#w-node-_692c5189-b6ac-b0e7-22c5-c2cc9807153a-3a19e3df,
#w-node-_692c5189-b6ac-b0e7-22c5-c2cc9807153f-3a19e3df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-3a19e440 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e440 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  place-self: center;
}

#w-node-_273f5e80-1d18-f4bf-51c8-b3f238d4442e-3a19e440,
#w-node-_273f5e80-1d18-f4bf-51c8-b3f238d44430-3a19e440 {
  align-self: center;
}

#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dadff-3a19e440,
#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae01-3a19e440,
#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae03-3a19e440,
#w-node-_1e85396a-d69d-7796-d9a5-cb0bd073da77-3a19e440 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae08-3a19e440,
#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae0a-3a19e440 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae0c-3a19e440 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_1974316e-56a2-4feb-ee85-3c97b38b9001-3a19e440 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_02ea1124-577f-4652-1115-9fb5e1377104-3a19e440,
#w-node-_02ea1124-577f-4652-1115-9fb5e137710e-3a19e440,
#w-node-_02ea1124-577f-4652-1115-9fb5e1377118-3a19e440,
#w-node-_02ea1124-577f-4652-1115-9fb5e1377122-3a19e440,
#w-node-_02ea1124-577f-4652-1115-9fb5e137712c-3a19e440,
#w-node-_02ea1124-577f-4652-1115-9fb5e1377136-3a19e440,
#w-node-_43819241-dc07-5a32-fe00-9914c5dec9c1-3a19e440,
#w-node-_7554c511-f3f5-81d1-8348-3a32b1cfe86b-3a19e440,
#w-node-_43819241-dc07-5a32-fe00-9914c5dec9c6-3a19e440,
#w-node-e5c055c0-0390-1119-7316-bf8055cb5ebc-3a19e440,
#w-node-_9c6a6a3a-6021-6088-8168-ba2cb1505c14-3a19e440,
#w-node-_1e4eed50-4770-b14a-72b0-dbb29b471dd1-3a19e440,
#w-node-_45d5b1ea-36b1-fcf1-758d-e0940b590619-3a19e440,
#w-node-_45d5b1ea-36b1-fcf1-758d-e0940b59061b-3a19e440,
#w-node-_45d5b1ea-36b1-fcf1-758d-e0940b59061d-3a19e440 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d538fde-143e-eaa1-2f31-632fd2dff92d-d2dff923 {
  place-self: center;
}

#w-node-_9d538fde-143e-eaa1-2f31-632fd2dff933-d2dff923 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c7787-3a19e441 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f2fb423f-7673-267c-657c-64c8bca49607-3a19e441 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a1d-3a19e442 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a3f-3a19e442 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_41be5e0a-8d19-7612-2e24-365674faf3d7-3a19e443,
#w-node-_41be5e0a-8d19-7612-2e24-365674faf3d9-3a19e443,
#w-node-_41be5e0a-8d19-7612-2e24-365674faf3db-3a19e443,
#w-node-_41be5e0a-8d19-7612-2e24-365674faf3e5-3a19e443,
#w-node-_41be5e0a-8d19-7612-2e24-365674faf3e7-3a19e443,
#w-node-_41be5e0a-8d19-7612-2e24-365674faf3e9-3a19e443,
#w-node-d4b369b6-31f4-dd50-d08a-46a4ac9e6d35-3a19e444,
#w-node-d4b369b6-31f4-dd50-d08a-46a4ac9e6d39-3a19e444,
#w-node-d4b369b6-31f4-dd50-d08a-46a4ac9e6d3d-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b26-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b29-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b37-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b3c-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b41-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b46-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b4d-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b52-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b57-3a19e444,
#w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b5c-3a19e444,
#w-node-c3ac04c4-b7ad-eb39-bc2d-759465a3b05c-3a19e444,
#w-node-_6ac17db9-046d-df26-f8e3-946360898d8e-3a19e444 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7f0f45df-1f38-ebf2-fa57-feaefc9fdec8-3a19e444 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ac303de2-a454-c94d-591c-f96349bafd91-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafd95-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafd99-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafda0-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafda3-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdb1-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdb6-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdbb-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdc0-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdc7-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdcf-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafdd6-3a19e444,
#w-node-ac303de2-a454-c94d-591c-f96349bafddd-3a19e444,
#w-node-ff98c361-0c8b-cb5a-32d0-688039eb62b9-3a19e444,
#w-node-ff98c361-0c8b-cb5a-32d0-688039eb62b4-3a19e444 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f650400-6ff1-7213-c661-30c3230af5c7-3a19e444 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-3a19e445 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e445 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_622a45c8-103c-30e3-5783-4d46ad938c14-3a19e447,
#w-node-b1078083-528c-8a78-9451-10023c5ce546-3a19e447,
#w-node-_2d0a1bf9-b5f4-adf1-c02a-5eac1e935d88-3a19e447,
#w-node-_7eb1222e-9580-c875-bb4c-680b609efc47-3a19e447,
#w-node-c36b843d-59da-f500-5277-867ccfc46c3b-3a19e447,
#w-node-_4863c51c-4368-cf5e-69b5-d0addca86478-3a19e447,
#w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7d8c-3a19e448,
#w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7dac-3a19e448,
#w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7dce-3a19e448,
#w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7df0-3a19e448,
#w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7e17-3a19e448,
#w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7e46-3a19e448,
#w-node-f1dc0c78-cadb-50af-31c8-a764dfa6c4cf-3a19e448,
#w-node-b7c647b4-319e-48d0-bb7f-84c3ba31f00b-3a19e448,
#w-node-_0750ebdb-0560-a671-c7f4-4faee1ff8947-3a19e449,
#w-node-_0750ebdb-0560-a671-c7f4-4faee1ff894b-3a19e449,
#w-node-_0750ebdb-0560-a671-c7f4-4faee1ff894f-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fa0-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fa3-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fb1-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fb8-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fbf-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fc6-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fcf-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fd7-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fde-3a19e449,
#w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fe5-3a19e449,
#w-node-_58c0fee2-97e4-ab72-45d2-367ccade75b2-3a19e449,
#w-node-d7e99b0c-f4fb-8bc5-8298-55449987f8bc-3a19e449,
#w-node-_5d8079a6-92b2-4e1c-ab80-ee91086d881a-3a19e449,
#w-node-_94360918-0b87-6f15-5301-cf9ea680714b-3a19e449,
#w-node-_94360918-0b87-6f15-5301-cf9ea680713b-3a19e449,
#w-node-_94360918-0b87-6f15-5301-cf9ea6807143-3a19e449,
#w-node-_739e7cf9-dc8c-26b2-f0d6-9c0f34cd865c-3a19e449,
#w-node-_4c3ac673-afb4-cc88-afb5-d72bb57a412d-3a19e449,
#w-node-_4c3ac673-afb4-cc88-afb5-d72bb57a4135-3a19e449,
#w-node-_6c3ad24f-323e-a42a-c649-08043dcf4eee-3a19e449,
#w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f02-3a19e449,
#w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f0a-3a19e449,
#w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f69-3a19e449,
#w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f61-3a19e449,
#w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f52-3a19e449,
#w-node-_535bd08e-5a2d-af5b-cada-a8dcbb3db532-3a19e449,
#w-node-da3841b5-7fa1-f1b1-5e36-814ac0387251-3a19e449,
#w-node-_535bd08e-5a2d-af5b-cada-a8dcbb3db557-3a19e449,
#w-node-bbd4200a-86a3-b90d-8d7c-c3dd931e2c7e-3a19e449,
#w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad15-3a19e449,
#w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad20-3a19e449,
#w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19132c-3a19e449,
#w-node-_1cfd6ebc-7a31-da66-f1b8-84414e191343-3a19e449,
#w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19134b-3a19e449,
#w-node-_8eafb0f0-0bcd-78f4-f2b2-68f2176cf9eb-3a19e449,
#w-node-_8eafb0f0-0bcd-78f4-f2b2-68f2176cfa0b-3a19e449,
#w-node-_8eafb0f0-0bcd-78f4-f2b2-68f2176cfa2d-3a19e449,
#w-node-_34f6f977-9198-53db-5be5-8525d417bafa-3a19e449,
#w-node-_34f6f977-9198-53db-5be5-8525d417bb23-3a19e449,
#w-node-_34f6f977-9198-53db-5be5-8525d417bb51-3a19e449 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459e6e-3a19e44a,
#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459eb6-3a19e44a,
#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ebc-3a19e44a,
#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ec1-3a19e44a,
#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ec6-3a19e44a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1440px) {
  #w-node-d4efc184-e66d-4675-1400-8bc4486076c6-3a19e39d {
    place-self: auto;
  }

  #w-node-d4efc184-e66d-4675-1400-8bc4486076f5-3a19e39d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d4efc184-e66d-4675-1400-8bc448607717-3a19e39d {
    align-self: end;
  }

  #w-node-d4efc184-e66d-4675-1400-8bc44860771a-3a19e39d {
    justify-self: auto;
  }

  #w-node-d4efc184-e66d-4675-1400-8bc44860771e-3a19e39d,
  #w-node-d4efc184-e66d-4675-1400-8bc448607725-3a19e39d {
    align-self: end;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d6d-0a144c54,
  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d87-0a144c54 {
    align-self: center;
  }

  #w-node-c887c81d-5a39-0442-ab26-e899be8a081d-3a19e3df {
    grid-column: span 6 / span 6;
  }

  #w-node-_4c20380c-decb-8b4c-fd76-b782533c1aae-3a19e3df,
  #w-node-_43067a18-a43e-22a4-7fd1-28fe8c564887-3a19e3df,
  #w-node-_43067a18-a43e-22a4-7fd1-28fe8c56489b-3a19e3df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1e85396a-d69d-7796-d9a5-cb0bd073da77-3a19e440 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: end;
  }

  #w-node-_1974316e-56a2-4feb-ee85-3c97b38b9001-3a19e440 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b26-3a19e444 {
    place-self: auto;
  }

  #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b4d-3a19e444 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ac303de2-a454-c94d-591c-f96349bafda0-3a19e444 {
    place-self: auto;
  }

  #w-node-ac303de2-a454-c94d-591c-f96349bafdc7-3a19e444 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fa0-3a19e449 {
    place-self: auto;
  }

  #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fcf-3a19e449 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43a8-3a19e449 {
    align-self: end;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43ab-3a19e449 {
    justify-self: auto;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43b4-3a19e449,
  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43bf-3a19e449 {
    align-self: end;
  }

  #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f0a-3a19e449,
  #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f69-3a19e449 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e440 {
    place-self: center start;
  }

  #w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad20-3a19e449,
  #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e191343-3a19e449 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e903-3a19e39d,
  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e916-3a19e39d,
  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e91c-3a19e39d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-dde11347-41d0-0bbf-2968-477587ef2110-3a19e39d,
  #w-node-_5916a33d-5a75-e9b1-3571-faf2ec7237f2-3a19e39d,
  #w-node-_36cf36dc-2f9b-bf5e-0ad0-b3c2eef1eb1a-3a19e39d,
  #w-node-_36cf36dc-2f9b-bf5e-0ad0-b3c2eef1eb4e-3a19e39d,
  #w-node-cf3df8ad-2284-6b4e-6ff0-6f822721c90f-3a19e39d,
  #w-node-cf3df8ad-2284-6b4e-6ff0-6f822721c91c-3a19e39d,
  #w-node-_9aa510b8-6d73-44ca-f140-90e1d8c933d3-3a19e39d,
  #w-node-_9aa510b8-6d73-44ca-f140-90e1d8c933e0-3a19e39d,
  #w-node-cf3df8ad-2284-6b4e-6ff0-6f822721c9bd-3a19e39d,
  #w-node-cf3df8ad-2284-6b4e-6ff0-6f822721c9ca-3a19e39d {
    align-self: start;
  }

  #w-node-_56588877-2fc4-5956-0a25-cd8636d97eea-3a19e39d {
    order: 9999;
  }

  #w-node-c74eab2a-2931-45a6-3723-b1a3a38b0e3a-3a19e39d {
    order: -9999;
  }

  #w-node-_8bacde8d-777f-a547-781b-ca53cd4715af-3a19e39d {
    order: 9999;
  }

  #w-node-_8bacde8d-777f-a547-781b-ca53cd4715ef-3a19e39d {
    order: -9999;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d59-0a144c54 {
    grid-column: span 3 / span 3;
  }

  #w-node-c887c81d-5a39-0442-ab26-e899be8a081d-3a19e3df {
    grid-column: span 4 / span 4;
  }

  #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-3a19e3df {
    align-self: start;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-3a19e440 {
    grid-column: span 6 / span 6;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e440 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    justify-self: start;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a00-3a19e442 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e903-3a19e444 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e916-3a19e444 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e91c-3a19e444,
  #w-node-_936e288d-1130-500b-215b-d022ea27af82-3a19e444 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_936e288d-1130-500b-215b-d022ea27af95-3a19e444 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_936e288d-1130-500b-215b-d022ea27af9e-3a19e444 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-3a19e445 {
    grid-column: span 6 / span 6;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e445 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d4efc184-e66d-4675-1400-8bc44860771a-3a19e39d,
  #w-node-d4efc184-e66d-4675-1400-8bc448607721-3a19e39d,
  #w-node-d4efc184-e66d-4675-1400-8bc448607728-3a19e39d {
    justify-self: end;
  }

  #w-node-cf3df8ad-2284-6b4e-6ff0-6f822721c9d7-3a19e39d {
    order: 9999;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d87-0a144c54 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c887c81d-5a39-0442-ab26-e899be8a081d-3a19e3df {
    grid-column: span 4 / span 4;
  }

  #w-node-c887c81d-5a39-0442-ab26-e899be8a083a-3a19e3df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4c20380c-decb-8b4c-fd76-b782533c1aae-3a19e3df,
  #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-3a19e3df {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fbe-3a19e3df {
    place-self: auto center;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-3a19e440,
  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e440 {
    grid-column: span 2 / span 2;
  }

  #w-node-_9d538fde-143e-eaa1-2f31-632fd2dff926-d2dff923 {
    order: -9999;
  }

  #w-node-_9d538fde-143e-eaa1-2f31-632fd2dff933-d2dff923 {
    order: 9999;
    grid-area: 2 / span 1 / 3 / span 1;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a0b-3a19e442 {
    grid-column: span 2 / span 2;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a0d-3a19e442 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a1d-3a19e442,
  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a3f-3a19e442 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-3a19e445,
  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-3a19e445 {
    grid-column: span 2 / span 2;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43ab-3a19e449,
  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43b7-3a19e449,
  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43c2-3a19e449 {
    justify-self: end;
  }

  #w-node-d7e99b0c-f4fb-8bc5-8298-55449987f8bc-3a19e449,
  #w-node-_94360918-0b87-6f15-5301-cf9ea680713b-3a19e449,
  #w-node-_94360918-0b87-6f15-5301-cf9ea6807143-3a19e449,
  #w-node-_739e7cf9-dc8c-26b2-f0d6-9c0f34cd865c-3a19e449,
  #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f02-3a19e449,
  #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f61-3a19e449,
  #w-node-da3841b5-7fa1-f1b1-5e36-814ac0387251-3a19e449,
  #w-node-bbd4200a-86a3-b90d-8d7c-c3dd931e2c7e-3a19e449,
  #w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad15-3a19e449,
  #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e191343-3a19e449,
  #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19134b-3a19e449 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_34f6f977-9198-53db-5be5-8525d417bafa-3a19e449 {
    place-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e903-3a19e39d {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e916-3a19e39d {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e91c-3a19e39d {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-_28034c87-a86b-83a8-3a50-aa70621a7a65-3a19e39d,
  #w-node-_8bacde8d-777f-a547-781b-ca53cd471596-3a19e39d {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d59-0a144c54 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d6d-0a144c54 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-3a19e3df {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fbe-3a19e3df {
    justify-self: auto;
  }

  #w-node-_43819241-dc07-5a32-fe00-9914c5dec9c1-3a19e440 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d91ac63b-6830-ad42-9bc6-67bbf09f2acc-3a19e440 {
    place-self: auto;
  }

  #w-node-_1c287cbb-a645-d992-0499-64c4868473e7-3a19e440,
  #w-node-_45d5b1ea-36b1-fcf1-758d-e0940b59061f-3a19e440 {
    justify-self: end;
  }

  #w-node-_9d538fde-143e-eaa1-2f31-632fd2dff92d-d2dff923 {
    justify-self: start;
  }

  #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c7777-3a19e441,
  #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c777b-3a19e441,
  #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c777f-3a19e441,
  #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c7783-3a19e441 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d7e99b0c-f4fb-8bc5-8298-55449987f8bc-3a19e449,
  #w-node-_94360918-0b87-6f15-5301-cf9ea6807143-3a19e449,
  #w-node-_739e7cf9-dc8c-26b2-f0d6-9c0f34cd865c-3a19e449,
  #w-node-da3841b5-7fa1-f1b1-5e36-814ac0387251-3a19e449,
  #w-node-bbd4200a-86a3-b90d-8d7c-c3dd931e2c7e-3a19e449,
  #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19134b-3a19e449 {
    grid-area: 1 / 1 / 2 / 2;
  }
}
