:root {
  --black: #0f0f11;
  --primary: #3de85d;
  --gradient-color-3: #03f6f4;
  --secondary: #6a54ff;
  --light-black: #222;
  --white-10: rgba(255, 255, 255, .1);
  --dim-grey: #878d95;
  --bg-grey: #d4d4d4;
  --nav-line-gradient-3: #a0fbcd;
  --light-grey: #f1f1f1;
  --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;
  --flowui-component-library-gray-900: #160042;
  --flowui-component-library-gray-500: #6b7094;
  --flowui-component-library-gray-100: #f7f9fd;
  --flowui-component-library-white: white;
  --flowui-component-library-gray-700: #282556;
  --relume-library-lite-rl-black: black;
  --relume-library-lite-rl-white: white;
  --untitled-ui-primary300: #d6bbfb;
  --untitled-ui-primary500: #9e77ed;
  --untitled-ui-primary900: #42307d;
  --flowui-component-library-grey-300: #e4e6f1;
}

.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-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: .7px;
  margin-bottom: 10px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color .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 rgba(61, 232, 93, .76);
  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 {
  z-index: 1;
  background-color: var(--black);
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}

.section.ligher-grey-bg {
  background-color: var(--light-black);
  padding-top: 30px;
  padding-bottom: 80px;
}

.section.ligher-grey-bg.zindex-3 {
  z-index: 3;
  background-color: var(--light-black);
  padding-top: 30px;
  padding-bottom: 10px;
}

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

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

.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: 6em;
  padding-bottom: 0;
}

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

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

.navbar {
  z-index: 101;
  height: 70px;
  background-color: rgba(15, 15, 17, .92);
  border-bottom: 0 rgba(0, 0, 0, .05);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

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

.nav-menu {
  max-height: 36px;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  display: flex;
}

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

.grid-6-col {
  width: 100%;
  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: 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 {
  width: 100%;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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 .4s;
  position: relative;
  overflow: hidden;
}

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

.link-block-underline {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.footer {
  z-index: 1;
  background-color: var(--black);
  align-items: flex-start;
  padding-top: 3em;
  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: inline-block;
}

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

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

.footer-heading {
  color: rgba(235, 240, 255, .5);
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}

.made-by-section {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  border-top: 1px solid rgba(255, 255, 255, .2);
  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: rgba(255, 255, 255, .5);
  text-align: justify;
  align-self: auto;
  font-size: 20px;
  font-weight: 300;
}

.contact-form-grid {
  width: 100%;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  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: rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 1em;
}

.error-message {
  text-align: center;
  background-color: rgba(255, 181, 181, .2);
  border: 1px solid rgba(255, 181, 181, .5);
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
}

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

.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 {
  width: 42px;
  height: 42px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: none;
}

.copyright-text {
  color: rgba(255, 255, 255, .6);
  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: rgba(255, 255, 255, .8);
}

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

.rich-text h5 {
  letter-spacing: .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: rgba(50, 50, 50, 0);
  text-decoration: none;
}

.rich-text figure {
  width: 100%;
  min-width: 100%;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 3px;
  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: .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: rgba(255, 255, 255, .6);
  letter-spacing: .2px;
  margin-top: 0;
  font-size: 12px;
  line-height: 24px;
}

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

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

.rich-text h2 {
  letter-spacing: .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: .5px;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 21px;
  line-height: 1.3;
}

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

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

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

.style-guide-tab-holder:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, .05);
}

.style-guide-tab-holder.w--current {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
}

.style-guide-left-panel-holder {
  width: 405px;
  background-color: rgba(255, 255, 255, .1);
  align-items: flex-start;
  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: rgba(255, 255, 255, .1);
  border-radius: 12px;
}

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

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

.subscribe-button:hover {
  background-color: rgba(255, 255, 255, .9);
}

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

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

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

.grid-holder {
  grid-row-gap: 30px;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

.colors-container {
  background-color: rgba(255, 255, 255, .1);
}

.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: rgba(255, 255, 255, .1);
  border-radius: 12px;
  justify-content: space-between;
  margin-top: 2em;
  padding: 2em;
  display: flex;
}

.button {
  width: 180px;
  height: 48px;
  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;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color .35s, background-color .35s, opacity .35s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.button:hover {
  opacity: .9;
  color: rgba(15, 15, 17, .8);
}

.button.with-icon {
  width: 190px;
  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.with-icon:hover {
  opacity: 1;
  color: #fff;
  background-position: 83%, 0 0;
}

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

.button.empty-button {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-image: none;
  border: 1px solid #fff;
}

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

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

.borders {
  width: 100%;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.borders.center {
  height: 100px;
}

.button-holder {
  grid-row-gap: 30px;
  background-color: rgba(255, 255, 255, .1);
  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: rgba(255, 255, 255, .1);
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

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

.subscribe-email:hover {
  background-color: rgba(0, 0, 0, .02);
}

.subscribe-email:focus {
  background-color: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.subscribe-email::-ms-input-placeholder {
  color: rgba(255, 255, 255, .4);
}

.subscribe-email::placeholder {
  color: rgba(255, 255, 255, .4);
}

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

.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 {
  max-width: 150px;
}

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

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

.nav-link {
  z-index: 1;
  height: 100%;
  color: rgba(255, 255, 255, .8);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  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 {
  max-width: 260px;
  margin-top: -2em;
  font-size: 14px;
  line-height: 1.5;
}

.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-link {
  z-index: 1;
  border-radius: 6px;
  padding: 5px;
  font-size: 16px;
  position: relative;
}

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

.hero-description {
  max-width: 700px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
}

.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;
  width: 100%;
  height: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

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

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

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

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

.input-field:focus {
  background-color: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .8);
}

.input-field::-ms-input-placeholder {
  color: rgba(255, 255, 255, .4);
}

.input-field::placeholder {
  color: rgba(255, 255, 255, .4);
}

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

.link {
  z-index: 1;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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 .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 {
  width: 100%;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  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 {
  min-height: 80px;
  background-color: var(--white-10);
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1em;
  display: flex;
}

.client-logo {
  width: 100%;
  height: 100%;
  max-height: 65px;
  max-width: 120px;
  min-width: 120px;
  object-fit: contain;
  padding-top: 1em;
}

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

.instruction-item {
  background-color: rgba(255, 255, 255, .1);
  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 {
  width: auto;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
}

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

.section-background {
  z-index: -1;
  background-color: var(--light-black);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 44px;
}

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

.text-gradient-colored {
  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;
  padding-left: .125em;
  font-size: 95px;
}

.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-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

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

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

.main-hero-bg {
  z-index: 0;
  width: 50vw;
  height: 65vh;
  max-width: none;
  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);
  margin-top: -40%;
  position: absolute;
}

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

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

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

.device-holder {
  height: 87vh;
  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;
  display: block;
  position: relative;
}

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

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

.animation-section {
  z-index: 2;
  min-height: 200vh;
  background-image: linear-gradient(to bottom, rgba(15, 15, 17, 0), var(--black) 9%, var(--black));
  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;
  top: -100vh;
  bottom: -100%;
  left: 0%;
  right: 0%;
  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;
  top: 0;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.anim-icon {
  width: 85px;
}

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

.anim-icon-holder {
  position: absolute;
  top: -2%;
  bottom: auto;
  left: 6%;
  right: auto;
}

.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;
  display: flex;
}

.text-container.left-align {
  text-align: left;
  align-items: flex-start;
  padding-bottom: 2em;
  font-style: normal;
}

.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 {
  margin-left: 0;
}

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

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

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

.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;
  height: 100%;
  padding: 2em;
}

.card.pricing-card:hover {
  background-image: linear-gradient(140deg, var(--primary), #5598b4 44%, var(--secondary));
}

.card.pricing-card.main-pricing-card {
  z-index: 3;
  height: 110%;
  top: -5%;
}

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

.card-noise-bg {
  z-index: 1;
  opacity: .03;
  background-image: url('../images/Noisy.png');
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: visible;
}

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

.card-title.no-margin-top {
  margin-top: 0;
  font-size: 24px;
}

.card-description {
  max-width: 350px;
  color: rgba(255, 255, 255, .5);
  text-align: justify;
}

.card-colored-bg {
  z-index: -1;
  background-image: linear-gradient(87deg, var(--primary), rgba(3, 246, 244, .7) 44%, var(--secondary));
  opacity: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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(--black);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

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

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

.list {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  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 {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: 50% 0%;
}

.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 1fr 1fr;
  padding-top: 5%;
  padding-bottom: 5%;
}

.pricing-item {
  height: 100%;
  max-height: 800px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-type {
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
}

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

.pricing-button-holder {
  width: 100%;
  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: stretch;
  margin-top: 3em;
  display: flex;
}

.pricing-features-holders {
  width: 100%;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: rgba(255, 255, 255, .8);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  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 {
  width: 15px;
  height: 12px;
  filter: contrast(200%);
  mix-blend-mode: overlay;
  object-fit: contain;
}

.list-item {
  color: rgba(255, 255, 255, .8);
  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: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

._40pct-white-text {
  color: rgba(255, 255, 255, .4);
}

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

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

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

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

.feedback-card-container {
  height: 100%;
  max-width: 25vw;
  min-height: 300px;
  min-width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  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 {
  width: 90px;
  height: 90px;
  max-width: none;
  object-fit: cover;
  position: absolute;
}

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

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

.feedback-image-circle.feedback-color-green {
  background-color: #bef0c6;
}

.feedback-image-circle.feedback-color-violet {
  background-color: #dbd1fc;
}

.feedback-image-circle.feedback-color-yellow {
  background-color: #ffd9a2;
}

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

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

.slider {
  height: auto;
  max-width: 25vw;
  min-width: 380px;
  background-color: rgba(0, 0, 0, 0);
  overflow: visible;
}

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

.feedback-author {
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  margin-bottom: 0;
  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;
  top: auto;
  bottom: -50px;
  left: 0;
  right: 0%;
}

.feedback-text {
  color: rgba(255, 255, 255, .8);
}

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

.feedback-position {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
}

.card-item-content {
  z-index: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  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 {
  width: 50px;
  height: 50px;
  color: #98caff;
  object-fit: contain;
  background-color: rgba(241, 241, 241, .15);
  border-radius: 10px;
  padding: 8px;
  font-size: 12px;
}

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

.play-icon-holder:hover {
  box-shadow: 0 0 9px 8px rgba(0, 0, 0, .5);
}

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

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

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

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

.yearly-link-discount {
  border: 1px solid rgba(255, 255, 255, .2);
  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;
}

.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;
  width: 30vw;
  height: 30vw;
  max-width: none;
  background-image: linear-gradient(173deg, var(--primary), var(--gradient-color-3) 28%, var(--gradient-color-3) 46%, #30b6ff 62%, #00f0ff 75%, var(--secondary));
  opacity: .65;
  filter: blur(120px);
  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 {
  padding-bottom: 0;
}

.secondary-hero-gradient {
  z-index: 0;
  width: 100%;
  height: 60%;
  max-width: none;
  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(150px);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 30%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

.features-image-gradient {
  z-index: 2;
  height: 20%;
  background-image: linear-gradient(to bottom, rgba(15, 15, 17, 0), var(--black));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

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

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

.features-card-image-border {
  background-image: linear-gradient(rgba(255, 255, 255, .31), rgba(255, 255, 255, 0));
  border-radius: 8px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.features-card-sx-heading {
  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;
  background-image: linear-gradient(138deg, #25292d, #131519);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

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

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

.grid-10cols {
  width: 100%;
  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;
}

.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 {
  width: 70%;
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: flex;
}

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

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

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

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

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

.team-name {
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

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

.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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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 {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 30px;
  grid-auto-columns: 1fr;
  align-content: space-around;
  justify-content: start;
  align-items: center;
  justify-items: start;
  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 {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1em;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.post-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-item-overlay {
  z-index: 1;
  height: 30%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  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: rgba(255, 255, 255, .5);
  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), rgba(106, 84, 255, 0) 96%);
  opacity: .6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.insights-person-holder {
  width: 80px;
  height: 80px;
  mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .1));
  border-radius: 5px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.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(.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 {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

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

.insights-hero-gradient-holder {
  opacity: .2;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.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 {
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
  display: flex;
}

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

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

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

.horizontal-line.post-details {
  height: 4px;
  background-color: rgba(255, 255, 255, .2);
  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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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 {
  width: 100%;
  border-radius: 10px;
}

.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 {
  width: 100%;
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

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

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

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

.footer-gradient-bg-holder {
  z-index: -1;
  width: 100%;
  height: 40vw;
  max-width: none;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  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: rgba(255, 255, 255, .2);
  letter-spacing: -.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-infinit {
  width: 100%;
  height: 20vw;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

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

.footer-gradient-background {
  width: 100%;
  height: 100%;
  max-width: none;
  background-image: linear-gradient(83deg, var(--primary), var(--gradient-color-3) 28%, var(--gradient-color-3) 46%, #30b6ff 62%, #00f0ff 75%, var(--secondary));
  opacity: .5;
  filter: blur(150px);
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
}

.company-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.dashboard-app-perspective {
  transform-style: preserve-3d;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: none;
}

.dashboard-app-perspective._2 {
  height: 100%;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

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

.instructions-code {
  color: rgba(255, 255, 255, .8);
  background-color: rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 1em;
  font-style: italic;
}

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

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

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

.clients-list {
  z-index: 2;
  width: 10000vw;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  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 {
  height: 36px;
  color: rgba(255, 255, 255, .5);
  background-color: rgba(255, 255, 255, 0);
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 1.5em;
  font-size: 15px;
  transition: background-color .35s, color .35s;
  display: flex;
}

.tab-link:hover {
  color: rgba(255, 255, 255, .8);
  background-color: rgba(255, 255, 255, .05);
}

.tab-link.w--current {
  color: #fff;
  background-color: rgba(255, 255, 255, .2);
}

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

.tab-pane {
  width: 100%;
}

.tab-card-grid {
  float: none;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--light-black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  position: static;
}

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

.tab-feature-image-holder {
  min-height: 150px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-top: .5em;
  margin-bottom: .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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.download-icon {
  width: 20px;
}

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

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

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

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

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

.features-side-phones-rotated {
  width: 120%;
  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;
  display: grid;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(-210px, -160px)rotate(-38deg);
}

.features-side-phones-left {
  width: 100%;
}

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

.features-side-phones-right, .side-iphone {
  width: 100%;
}

.feedback-image-holder {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 2px;
  right: 2px;
}

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

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

.team-member-job-position {
  color: rgba(255, 255, 255, .5);
}

.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;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.buy-template-link {
  grid-column-gap: 10px;
  opacity: .8;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .4s, opacity .4s, box-shadow .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 rgba(0, 0, 0, .23);
}

.buy-this-template-button-container {
  width: 100%;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border-radius: 6px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  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 {
  width: 20px;
  height: 20px;
  background-image: url('../images/webflow-blue-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  margin-right: 5px;
  display: block;
}

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

.team-image-gradient-active {
  width: 100%;
  height: 200%;
  background-image: linear-gradient(to bottom, var(--light-black) 50%, var(--secondary));
  opacity: 1;
  border-radius: 165px;
  display: inline-block;
  position: absolute;
  top: -100%;
  bottom: 0%;
  left: 0%;
  right: 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 .35s;
  display: flex;
}

.accordion-item-trigger:hover {
  opacity: .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 {
  width: 8.5em;
  color: #fff;
  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: rgba(88, 88, 88, .3);
  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: justify;
  margin-bottom: 50px;
  font-size: 20px;
}

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

.small-secondary-text {
  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: .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 {
  width: 705px;
  justify-content: space-around;
  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 {
  width: 1rem;
  height: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  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: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: grid;
}

.fs_numbercount-1_wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  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 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 56px;
}

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

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

.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 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-primary100);
}

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

.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 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-gray100);
  background-color: #fff;
}

.uui-button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-space-xxsmall {
  width: 100%;
  min-height: .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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, 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 {
  width: 3.5rem;
  height: 3.5rem;
  border: .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;
  display: flex;
}

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

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

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

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

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

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

.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;
  align-items: center;
  justify-items: 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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, 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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-heading-subheading {
  color: var(--untitled-ui-primary600);
  margin-bottom: .75rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 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;
  top: auto;
  bottom: auto;
  left: 3rem;
  right: auto;
}

.uui-layout14_image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 33rem;
  background-color: var(--untitled-ui-gray100);
  align-items: center;
  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;
  top: 4%;
  bottom: 0%;
  left: 6%;
  right: 6%;
  overflow: hidden;
}

.feature-icon-2 {
  width: 50px;
  height: 50px;
  color: #fafafa;
  object-fit: contain;
  background-color: rgba(241, 241, 241, .15);
  border-radius: 10px;
  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 {
  min-height: 4rem;
  text-align: center;
  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 {
  height: 4rem;
  text-align: center;
  position: relative;
}

.text-gradient-colourful {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -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 {
  width: 100%;
  background-color: rgba(241, 241, 241, .15);
  border-radius: 20px;
  padding-bottom: 0;
}

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

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

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

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

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

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

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

.white-50pct-center {
  color: rgba(255, 255, 255, .5);
}

.text-gradient-light-benefit {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 41px;
}

.feedback-div {
  width: 1em;
}

.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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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;
  top: 4%;
  bottom: 0%;
  left: 6%;
  right: 6%;
  overflow: hidden;
}

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

.uui-heroheader06_image-01 {
  width: 48rem;
  min-width: 48rem;
  border: .25rem solid var(--untitled-ui-gray900);
  border-radius: .625rem;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 12%;
  right: auto;
}

.uui-heroheader06_image-01.shadow-xxlarge.hide-mobile-landscape {
  border-width: .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: .75rem;
  grid-row-gap: .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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, 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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, 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;
  top: 5%;
  bottom: 5%;
  left: 9%;
  right: 9.5%;
  overflow: hidden;
}

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

.ipad-device-holder {
  border-radius: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

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

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

.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 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-primary100);
}

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

.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 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-gray100);
  background-color: #fff;
}

.uui-button-row-3 {
  grid-column-gap: .75rem;
  grid-row-gap: .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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-space-xxsmall-2 {
  width: 100%;
  min-height: .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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, 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 {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-icon-featured-outline-large-2 {
  width: 3.5rem;
  height: 3.5rem;
  border: .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;
  display: flex;
}

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

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

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

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

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

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

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

.uui-text-size-large-2 {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.125rem;
  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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

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

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

.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;
  top: 4%;
  bottom: 0%;
  left: 6%;
  right: 6%;
  overflow: hidden;
}

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

.booking-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-icon-featured-outline-large-3 {
  width: 3.5rem;
  height: 3.5rem;
  border: .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;
  display: flex;
}

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

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

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

.uui-text-size-large-3 {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.125rem;
  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: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-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 {
  height: 400px;
  min-height: 400px;
  cursor: pointer;
  background-color: #eee;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 20px 20px;
  transition: all .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: rgba(0, 0, 0, 0);
  padding-left: 0;
  padding-right: 20px;
}

.ft-10-tab-link.w--current {
  color: #bdbdbd;
  background-color: rgba(0, 0, 0, 0);
  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 {
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

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

.efi-ft-09-bar {
  color: #1a1e27;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.f-gallery-lightbox {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  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: -.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: .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;
  width: 100%;
  max-width: 580px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  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: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

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

.f-career-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: var(--flowui-component-library-gray-100);
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  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: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

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

.f-career-card:hover {
  box-shadow: 0 48px 140px -48px rgba(57, 59, 106, .16);
}

.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 {
  min-width: 295px;
  color: #1b114a;
  letter-spacing: -.01em;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  margin-bottom: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .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;
  min-height: 100px;
  background-image: linear-gradient(140deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border-radius: 20px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5), inset 0 1px 2px rgba(255, 255, 255, .1);
}

.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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: none;
}

.ios-device-perspective._2 {
  height: 100%;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-link-dropdown {
  z-index: 1;
  height: 100%;
  color: rgba(255, 255, 255, .8);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, 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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.rl_layout28_tabs-link {
  background-color: rgba(0, 0, 0, 0);
  border-left: 2px solid rgba(0, 0, 0, 0);
  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: rgba(0, 0, 0, 0);
}

.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, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -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 {
  min-width: 137px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color .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 .25s, border-color .25s;
  display: flex;
}

.fn-button:hover {
  opacity: .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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

.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: rgba(0, 0, 0, 0);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  transition: opacity .25s;
  display: flex;
}

.fn-tabs-link:hover {
  opacity: .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 {
  width: 100%;
  max-width: 1310px;
  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;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

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

.fn-section {
  width: 100%;
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  align-items: center;
  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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

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

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

.mac-device-img-center {
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.text-gradient-light-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -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: rgba(255, 255, 255, .5);
}

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

.text-gradient-light-3 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -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;
  top: 4%;
  bottom: 0%;
  left: 6%;
  right: 6%;
  overflow: hidden;
}

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

.ios-app-2 {
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.feature-icon-3 {
  width: 35px;
  height: 35px;
  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;
  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, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 41px;
}

.icon-grey-2 {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, .8);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  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;
}

.div-block-6 {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .35fr;
  grid-auto-columns: 1fr;
  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(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 35px;
}

.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 {
  width: 45em;
  height: 24.5em;
  object-fit: contain;
  position: absolute;
  top: 7%;
  left: -1%;
}

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

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

.mac-app {
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: 50% 0%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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 {
  height: 48px;
  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;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color .35s, background-color .35s, opacity .35s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.button-download:hover {
  opacity: .9;
  color: rgba(15, 15, 17, .8);
}

.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 {
  min-width: 250px;
  background-image: none;
  border-radius: 100px;
}

.button-download.empty-button {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-image: none;
  border: 1px solid #fff;
}

.button-download.empty-button:hover {
  background-color: rgba(255, 255, 255, .1);
}

.button-download.download-button {
  height: 70px;
  text-transform: uppercase;
  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));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 95px;
  line-height: 0;
}

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

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

.button-say-hello {
  height: 48px;
  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;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color .35s, background-color .35s, opacity .35s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.button-say-hello:hover {
  opacity: .9;
  color: rgba(15, 15, 17, .8);
}

.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 {
  min-width: 250px;
  background-image: none;
  border-radius: 100px;
}

.button-say-hello.empty-button {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-image: none;
  border: 1px solid #fff;
}

.button-say-hello.empty-button:hover {
  background-color: rgba(255, 255, 255, .1);
}

.button-say-hello.download-button {
  height: 70px;
  text-transform: uppercase;
  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;
  width: 100%;
  height: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  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 {
  height: 48px;
  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;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color .35s, background-color .35s, opacity .35s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.button-2:hover {
  opacity: .9;
  color: rgba(15, 15, 17, .8);
}

.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;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  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: 5em 2em;
}

.subscribe-button-2 {
  width: 100px;
  height: 100%;
  color: #0f0f11;
  background-color: #fff;
  border: 0 solid #000;
  border-radius: 0 8px 8px 0;
  padding: 5px;
  font-weight: 400;
  transition: background-color .35s;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.subscribe-button-2:hover {
  background-color: rgba(255, 255, 255, .9);
}

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

.success-message-2 {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border: 0 #3de85d;
  border-radius: 8px;
  padding: 1em;
}

.social-media-icon-2 {
  width: 20px;
  height: 20px;
  opacity: .7;
  filter: invert();
}

.link-background-2 {
  z-index: -1;
  background-image: linear-gradient(65deg, #3de85d, #6a54ff);
  border-radius: 100px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-3 {
  height: 48px;
  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;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color .35s, background-color .35s, opacity .35s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.button-3:hover {
  opacity: .9;
  color: rgba(15, 15, 17, .8);
}

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

.card-item-content-5 {
  z-index: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 1px 20px rgba(0, 24, 63, .3);
}

.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), rgba(3, 246, 244, .7) 44%, var(--secondary));
  opacity: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mobile-content-smg {
  display: none;
}

.content-erp {
  max-width: 600px;
}

.mobile-content-erp, .mobile-content-dapp {
  display: none;
}

.mac-app-holder-4 {
  width: 45em;
  height: 25.5em;
  object-fit: cover;
  position: absolute;
  top: 7%;
  left: -6%;
}

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

.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;
  max-width: 600px;
  min-height: 100px;
  background-image: linear-gradient(140deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border-radius: 20px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5), inset 0 1px 2px rgba(255, 255, 255, .1);
}

.card-mac.card-no-bottom-padding {
  height: 100%;
  max-width: 450px;
  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;
  min-height: 0;
  background-image: linear-gradient(140deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border-radius: 20px;
  padding: 4em 4em 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5), inset 0 1px 2px rgba(255, 255, 255, .1);
}

.small-card.card-no-bottom-padding {
  height: 100%;
  max-width: 450px;
  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: var(--light-grey);
}

.genius-img-holder {
  z-index: -1;
  border-radius: 20px 20px 0 0;
  position: absolute;
  top: 3%;
  bottom: 0%;
  left: 6%;
  right: 6%;
  overflow: hidden;
}

.genius-img {
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

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

.udesly-izar-effect-2 {
  min-height: 4rem;
  text-align: left;
  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 {
  min-height: 4rem;
  text-align: left;
  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 {
  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;
  height: 100%;
  color: rgba(255, 255, 255, .8);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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: .5rem;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.rl_gallery21_arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rl_gallery21_arrow-right {
  width: 3rem;
  height: 3rem;
  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;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.rl_gallery21_arrow-left {
  width: 3rem;
  height: 3rem;
  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;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 4rem;
}

.rl_gallery21_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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 {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_blog33_spacing-block-2 {
  width: 100%;
  color: var(--black);
  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 {
  width: 100%;
  max-width: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  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 {
  min-width: 800px;
  background-color: var(--relume-library-lite-rl-white);
  border-radius: 30px;
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: visible;
}

.waves-image-gallery-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.waves-small-image-wrap-gallery-3 {
  height: 70%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.waves-big-image-wrap-gallery-3 {
  height: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.waves-medium-image-wrap-gallery-3 {
  height: 80%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.waves-bottom-gird-gallery-3 {
  width: 120vw;
  height: 39vh;
  grid-template-rows: auto;
  grid-template-columns: .9fr .8fr 1.2fr .7fr;
  margin-bottom: 0;
}

.waves-top-grid-gallery-3 {
  width: 120vw;
  height: 39vh;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1.2fr .8fr .9fr;
  margin-bottom: 16px;
}

.waves-master-gallery-3 {
  height: auto;
  position: -webkit-sticky;
  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 {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  border-radius: 24px;
}

.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 .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: rgba(0, 0, 0, .8);
  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: rgba(0, 0, 0, .8);
  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 {
  width: 32px;
  height: auto;
  background-color: var(--light-grey);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-right: 16px;
}

.cf-different-tab-link {
  opacity: .3;
  letter-spacing: -.01em;
  background-color: rgba(0, 0, 0, 0);
  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: rgba(0, 0, 0, 0);
}

.cf-different-menu {
  width: 85%;
  max-width: 540px;
  flex-direction: column;
  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 {
  width: 90%;
  max-width: 1160px;
  justify-content: space-between;
  align-items: center;
  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 {
  width: 100%;
  height: 100%;
  min-height: 0;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(241, 241, 241, .83);
  background-image: url('../images/it-team-sixteen.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 24px;
}

.div-block-10 {
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(15, 15, 17, .14);
  border-radius: 24px;
  position: relative;
}

.div-block-11 {
  width: 100%;
  height: 100%;
  background-color: var(--untitled-ui-gray300);
  border-radius: 2px;
}

.div-block-12 {
  height: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  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 {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  padding: 40px;
}

.text-description {
  max-width: 700px;
  color: #717171;
  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 {
  width: 100%;
  height: 100%;
  max-height: 500px;
  min-height: 0;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #d0d5dd;
  border-radius: 24px;
}

.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 {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  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 {
  max-width: 4.3em;
  background-image: linear-gradient(139deg, var(--primary), var(--secondary));
  text-transform: uppercase;
  border-radius: 3px;
  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 {
  height: 70%;
  border-radius: 8px;
  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 1fr 1fr 1fr 1fr 1fr;
  overflow: visible;
}

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

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

.mobile-content-fos {
  display: none;
}

.link-background-talk {
  z-index: -1;
  border: 1.8px none var(--light-grey);
  background-image: linear-gradient(65deg, var(--primary), var(--secondary));
  border-radius: 100px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link-background-talk:hover {
  background-color: rgba(0, 0, 0, 0);
  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;
  max-width: none;
  background-color: var(--black);
  padding-top: 10px;
  padding-bottom: 30px;
  display: block;
  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;
  width: 10000vw;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  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 {
  max-width: 600px;
  display: block;
}

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

.text-block-8 {
  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: rgba(255, 255, 255, .5);
}

.section-3 {
  z-index: 1;
  background-color: #0f0f11;
  position: relative;
}

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

.client-logo-2 {
  width: 100%;
  height: 100%;
  max-height: 65px;
  max-width: 160px;
  object-fit: contain;
}

.clients-list-2 {
  z-index: 2;
  width: 10000vw;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  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(--light-black);
  display: block;
  overflow: hidden;
}

.feedback-two.ligher-grey-bg.zindex-3 {
  z-index: 3;
}

.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;
  width: 10000vw;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  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;
  width: 10000vw;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  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: #fff;
  text-align: justify;
  align-self: auto;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (min-width: 1280px) {
  .nav-menu {
    max-height: 36px;
  }

  .footer-image {
    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 {
    max-width: 120px;
    min-width: 120px;
  }

  .trusted-by-container {
    text-align: center;
    justify-content: center;
  }

  .grid-clients._1 {
    width: auto;
    grid-column-gap: 0em;
    grid-row-gap: 0em;
  }

  .grid-clients._2 {
    width: auto;
  }

  .text-container.left-align {
    padding-bottom: 2em;
    font-style: normal;
  }

  .card.card-no-bottom-padding {
    height: 100%;
    max-height: 600px;
    max-width: none;
    min-height: 100px;
    min-height: 780px;
    padding-top: 4em;
  }

  .card-colored-bg {
    overflow: visible;
  }

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

  .card-image-mac {
    width: 50em;
  }

  .div-block-2 {
    padding-bottom: 30px;
  }

  .feedback-div {
    width: 1em;
  }

  .uui-heroheader06_image-02 {
    z-index: 2;
    left: -11%;
  }

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

  .uui-heroheader06_image-wrapper {
    position: relative;
  }

  .ios-device-holder {
    top: 5%;
    bottom: 5%;
    left: 9%;
    right: 9.5%;
  }

  .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 {
    width: 100%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .25fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    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 {
    width: 45em;
    height: 25.5em;
    object-fit: cover;
    position: absolute;
    top: 7%;
    left: 1%;
  }

  .ios-device-holder-reunion {
    top: 5%;
    bottom: 5%;
    left: 9%;
    right: 9.5%;
  }

  .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 rgba(0, 0, 0, .2);
  }

  .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 {
    width: 45em;
    height: 25.5em;
    object-fit: cover;
    position: absolute;
    top: 7%;
    left: -6%;
  }

  .card-image.card-no-bottom-padding {
    height: 100%;
    min-height: 100100px;
    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: 0;
    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-clients-list-2._1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

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

@media screen and (min-width: 1440px) {
  .section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section.ligher-grey-bg {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .section.ligher-grey-bg.zindex-3 {
    padding-top: 35px;
  }

  .section.ligher {
    padding-top: 50px;
  }

  .section.ligher.zindex-3 {
    background-color: var(--black);
    padding-bottom: 30px;
  }

  .container {
    max-width: 1350px;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

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

  .nav-menu {
    max-height: 36px;
  }

  .footer {
    background-color: var(--black);
    padding-bottom: 3em;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr .75fr;
  }

  .footer-logo-link.w--current {
    font-size: 16px;
  }

  .footer-image {
    max-width: 100px;
    margin-left: 3em;
  }

  .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 {
    width: 180px;
    text-align: center;
    justify-content: center;
  }

  .button.with-icon {
    width: 188px;
    text-align: left;
    align-self: flex-start;
    align-items: center;
    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 {
    max-width: 120px;
    min-width: 120px;
  }

  .text-gradient-light {
    margin-bottom: 25px;
    font-size: 44px;
    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: .1em;
    grid-row-gap: .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: .1em;
    grid-row-gap: .1em;
  }

  .text-container {
    padding-bottom: 0;
    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 {
    height: 100%;
    max-width: none;
    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), rgba(3, 246, 244, .7) 44%, var(--secondary));
  }

  .preloader {
    width: auto;
    height: auto;
    object-fit: cover;
  }

  .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 {
    width: 50px;
    height: 50px;
    color: #98caff;
    background-color: rgba(241, 241, 241, .15);
    border-radius: 100px;
    padding: 10px;
    font-size: 12px;
  }

  .play-icon-holder {
    margin-top: -76px;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
  }

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

  .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: var(--bg-grey);
  }

  .card-side-content-items {
    padding-left: 1em;
  }

  .card-side-content-item {
    margin-top: 0;
    padding-top: 30px;
  }

  .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: rgba(0, 0, 0, 0);
    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: rgba(0, 0, 0, 0);
    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: .5em;
  }

  .ios-side-app-holder {
    border-radius: 27px;
    left: 10%;
    right: 9%;
  }

  .dropdown {
    height: 10px;
    flex: 0 auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: none;
  }

  .dropdown-toggle {
    width: 8.5em;
    height: auto;
    object-fit: fill;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 100px;
    margin-left: 10px;
    margin-right: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    transition: all 1s cubic-bezier(1, -.005, 0, 1.048);
    display: block;
  }

  .dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .text-block {
    color: rgba(255, 255, 255, .8);
    text-align: left;
    border-radius: 20px;
    justify-content: flex-start;
    font-weight: 500;
    display: block;
  }

  .icon {
    width: auto;
    color: rgba(255, 255, 255, .8);
    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: rgba(88, 88, 88, .3);
    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: rgba(255, 255, 255, 0);
  }

  .grey20 {
    max-width: none;
    color: var(--dim-grey);
    text-align: justify;
    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;
    align-content: center;
    justify-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: .8rem;
    line-height: 2;
    display: block;
  }

  .udesly-seconds-left {
    background-image: repeating-linear-gradient(225deg, var(--primary), var(--secondary));
    opacity: .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;
    height: auto;
    background-image: linear-gradient(65deg, var(--primary), var(--secondary));
    border-radius: 100px;
    padding-bottom: 30px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .icon-grey {
    width: 3em;
    height: 3em;
    color: rgba(255, 255, 255, .8);
    -webkit-text-stroke-color: rgba(255, 255, 255, .8);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(rgba(255, 255, 255, .8), #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    align-items: flex-start;
    font-size: 12px;
  }

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

  .icon-embed-xxsmall {
    width: 4em;
    height: 4em;
  }

  .grey20-center {
    max-width: none;
    color: var(--dim-grey);
    text-align: center;
    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: rgba(0, 0, 0, 0);
    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, rgba(255, 255, 255, .8), #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 32px;
    font-weight: 400;
  }

  .text-gradient-light-title {
    background-image: linear-gradient(to right, rgba(255, 255, 255, .8), #fff 50%, rgba(255, 255, 255, .5));
    font-size: 56px;
    line-height: 1;
  }

  .grey20-subtitle {
    max-width: none;
    color: var(--dim-grey);
    text-align: center;
    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 {
    width: 45em;
    height: 25.5em;
    object-fit: cover;
    border-radius: 0;
    top: 7%;
    left: -5.5%;
    right: 0%;
  }

  .feature-icon-2 {
    width: 65px;
    height: 65px;
    color: #fafafa;
    background-color: rgba(241, 241, 241, .15);
    border-radius: 15px;
    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 {
    max-width: none;
    color: var(--bg-grey);
    text-align: justify;
    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 {
    width: 30%;
    height: 0;
    background-color: var(--nav-line-gradient-3);
    mix-blend-mode: color-dodge;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 10px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  .progress-bar {
    width: 100%;
    height: 0;
    background-color: rgba(241, 241, 241, .15);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
  }

  ._751progress {
    width: 75%;
    height: 0;
    mix-blend-mode: color-dodge;
    background-color: #4ffef8;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._752progress {
    width: 75%;
    height: 0;
    mix-blend-mode: color-dodge;
    background-color: #fd4ffe;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._801progress {
    width: 80%;
    height: 0;
    background-color: var(--secondary);
    mix-blend-mode: color-dodge;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._951progress {
    width: 95%;
    height: 0;
    mix-blend-mode: color-dodge;
    background-color: #1bea9e;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._501progress {
    width: 50%;
    height: 0;
    mix-blend-mode: color-dodge;
    background-color: #f8b26b;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  ._502progress {
    width: 50%;
    height: 0;
    mix-blend-mode: color-dodge;
    background-color: #f86b6b;
    border: 0 rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding-bottom: 7px;
    padding-right: 0;
    line-height: 1;
    display: block;
    overflow: visible;
  }

  .progresstext {
    color: var(--light-grey);
    margin-bottom: .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 {
    margin-bottom: 10px;
    font-size: 32px;
  }

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

  .container-3 {
    width: 100%;
    max-width: 0;
  }

  .feedback-div {
    width: 1em;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .talk-to-us {
    font-size: 70px;
    font-weight: 700;
    line-height: .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 {
    height: 700px;
    max-width: 250px;
  }

  .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 {
    width: 48rem;
    min-width: 48rem;
    border-width: .8rem;
    border-color: #000;
    border-radius: .6rem;
    left: 8%;
    right: auto;
  }

  .uui-heroheader06_image-wrapper {
    min-height: 37.6rem;
    border-radius: 50px;
  }

  .device-combination {
    max-width: 300px;
  }

  .ios-device-holder {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0;
    top: 5%;
    bottom: 5%;
    left: 9%;
    right: 9.5%;
  }

  .ios-device-img {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .ipad-device-holder {
    border-radius: 0;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 11%;
  }

  .ipad-device-img {
    z-index: 0;
    width: 100%;
    border-radius: 0;
  }

  .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: .75fr 1.5fr .75fr;
  }

  .uui-text-size-large-2 {
    color: var(--dim-grey);
  }

  .uui-max-width-large-2 {
    max-width: 48rem;
    clear: none;
    object-fit: fill;
    flex-flow: column;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    padding-top: 2em;
    display: flex;
  }

  .uui-padding-vertical-xhuge-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .ios-device-holder-center {
    top: 2%;
    bottom: -4%;
    left: 28%;
    right: 25%;
  }

  .ios-device-img-center {
    z-index: 0;
    width: 100%;
    border-radius: 30px;
    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 {
    max-width: none;
    color: var(--untitled-ui-gray600);
    text-align: justify;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .heading-3 {
    margin-bottom: 20px;
    line-height: .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 {
    min-height: 780px;
    order: 1;
    align-items: stretch;
    justify-items: stretch;
  }

  .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;
    top: 6%;
    bottom: 0%;
    left: 4%;
    right: -1%;
  }

  .mac-device-img-center {
    z-index: 0;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    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 {
    width: 100%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .35fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    align-items: center;
    display: grid;
  }

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

  .text-gradient-light-4 {
    margin-bottom: 25px;
    font-size: 32px;
  }

  .icon-grey-2 {
    width: 3em;
    height: 3em;
    color: rgba(255, 255, 255, .8);
    -webkit-text-stroke-color: rgba(255, 255, 255, .8);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(rgba(255, 255, 255, .8), #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    align-items: flex-start;
  }

  .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 {
    width: 100%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .25fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    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 {
    width: 45em;
    height: 25.5em;
    object-fit: cover;
    position: absolute;
    top: 7%;
    left: 1%;
  }

  .ios-device-holder-reunion {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0;
    top: 4%;
    bottom: 5%;
    left: 9%;
    right: 9.5%;
  }

  .ios-device-img-reunion {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 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 {
    width: 45em;
    height: 25.5em;
    object-fit: contain;
    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 {
    width: 222px;
    text-align: center;
    justify-content: center;
  }

  .button-download.with-icon {
    width: 188px;
    text-align: left;
    align-self: flex-start;
    align-items: center;
    padding-right: 65px;
  }

  .required {
    color: #ff5353;
  }

  .text-gradient-colored-small {
    font-size: 105px;
    line-height: 1;
    text-decoration: underline;
  }

  .button-say-hello {
    width: 180px;
    text-align: center;
    justify-content: center;
  }

  .button-say-hello.with-icon {
    width: 188px;
    text-align: left;
    align-self: flex-start;
    align-items: center;
    padding-right: 65px;
  }

  .container-5 {
    max-width: 1350px;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .container-5.clients-container {
    max-width: 100%;
    min-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 {
    width: 180px;
    text-align: center;
    justify-content: center;
  }

  .button-2.with-icon {
    width: auto;
    text-align: left;
    align-self: flex-start;
    align-items: center;
    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 rgba(0, 24, 63, .3);
  }

  .mobile-content-dep, .mobile-content-crm {
    display: none;
  }

  .content-dapp {
    max-width: 600px;
  }

  .card-col {
    background-image: linear-gradient(87deg, var(--primary), rgba(3, 246, 244, .7) 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 {
    width: 45em;
    height: 25.5em;
    object-fit: cover;
    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 {
    height: 100%;
    max-width: none;
    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 {
    height: 100%;
    max-width: none;
    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;
    top: 3%;
    bottom: 0%;
    left: 6%;
    right: 6%;
  }

  .genius-img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 0;
  }

  .text-span-9, .text-span-10, .text-span-11 {
    padding-left: .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: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-clients-list._2 {
    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: 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;
    display: grid;
  }

  .grid-clients-list-2._2 {
    grid-column-gap: .1em;
    grid-row-gap: .1em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 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: rgba(0, 0, 0, 0);
    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 {
    max-width: 1350px;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .clients-list-3 {
    background-color: rgba(0, 0, 0, 0);
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grey20-subtitle-2 {
    max-width: none;
    color: #878d95;
    text-align: center;
    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 {
    max-width: 1350px;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 0;
    padding-bottom: 0;
    font-style: normal;
  }

  .clients-list-4 {
    background-color: rgba(0, 0, 0, 0);
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grey20-subtitle-3 {
    max-width: none;
    color: #878d95;
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
  }

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

  .white-50pct-one {
    color: #fff;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
  }
}

@media screen and (max-width: 991px) {
  .section {
    padding-bottom: 40px;
  }

  .nav-menu {
    height: auto;
    max-height: none;
    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;
    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 {
    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: rgba(255, 255, 255, .1);
    padding-top: 4px;
    transition: background-color .35s;
    display: flex;
  }

  .menu-button.w--open {
    background-color: rgba(255, 255, 255, .25);
    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: 0;
    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 {
    max-height: 50px;
    max-width: 80px;
    min-width: 80px;
  }

  .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: 100%;
    height: auto;
    max-width: 350px;
  }

  .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 {
    max-width: 400px;
    min-width: 400px;
  }

  .card.pricing-card:hover {
    background-image: linear-gradient(140deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  }

  .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 {
    width: 100%;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .feedback-text, .feedback-name-and-position {
    font-size: 14px;
  }

  .feature-icon {
    display: flex;
  }

  .play-icon-holder {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }

  .featured-card-image-holder {
    margin-bottom: 2em;
  }

  .features-card-sx-heading {
    font-size: 20px;
  }

  .grid-10cols {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .team-link {
    width: 90%;
  }

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

  .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 {
    top: 10%;
    bottom: auto;
    left: auto;
    right: 10%;
  }

  .insights-person-holder._8 {
    left: 67%;
  }

  .insights-person-holder._9 {
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .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: .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 {
    min-height: auto;
    justify-content: flex-start;
    padding: 4rem 2rem;
  }

  .uui-layout14_item-list {
    grid-template-columns: .5fr 1fr;
  }

  .uui-layout14_component {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .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 {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

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

  .uui-layout84_content-bottom-2 {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .uui-padding-vertical-xhuge-3 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .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 {
    width: 100%;
    justify-content: flex-start;
    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: rgba(0, 0, 0, 0);
  }

  .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: .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 rgba(135, 141, 149, .2);
  }

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

  .text-gradient-light-5 {
    font-size: 23px;
  }

  .text-span-5.text-gradient-colorful {
    font-size: 22px;
  }

  .mac-app-holder-2 {
    width: 40.5em;
    height: 15.1em;
    object-fit: cover;
    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: .5em;
    padding-bottom: .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 {
    width: 100%;
    grid-template-columns: .9fr 1.25fr .75fr;
  }

  .waves-top-grid-gallery-3 {
    width: 100%;
    max-width: 130vw;
    grid-template-columns: .7fr 1.2fr .8fr;
  }

  .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 {
    width: 100%;
    max-width: 660px;
    grid-column-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
    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 {
    max-height: 600px;
    align-items: center;
    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;
  }

  .client-logo-2 {
    max-height: 50px;
    max-width: 130px;
  }

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

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

  .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(300px, 1fr) 1fr;
  }

  .footer-image {
    max-width: 80px;
    object-fit: contain;
  }

  .fade-in-move-on-scroll {
    flex: 1;
  }

  .content {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    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: 110px;
  }

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

  .hero-text-xl {
    font-size: 56px;
  }

  .text-gradient-colored {
    line-height: .8;
  }

  .hero-circle-bg-holder {
    height: 100%;
    min-height: 500px;
    align-items: center;
  }

  .hero-animation {
    padding-left: 1em;
    padding-right: 1em;
  }

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

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

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

  .job-position-grid {
    grid-template-columns: 1fr .5fr 1fr .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;
  }

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

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

  .nav-link-holder-talk-to-us {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .uui-heroheader06_image-02 {
    width: 100%;
    max-width: 15.25rem;
    min-width: auto;
    position: static;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .uui-heroheader06_image-wrapper {
    height: 22rem;
    min-height: auto;
    justify-content: center;
    align-items: flex-start;
    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-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: 120%;
    min-width: 28rem;
    top: 22%;
  }

  .uui-layout84_image-2 {
    height: 40rem;
    margin-left: 1.5rem;
  }

  .uui-layout84_image-wrapper-2 {
    height: 22rem;
    overflow: hidden;
  }

  .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: .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: 4rem;
    padding-bottom: 4rem;
  }

  .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: .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 {
    width: 100%;
    justify-content: center;
    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 {
    width: 67%;
    object-fit: cover;
  }

  .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: 3em;
    grid-row-gap: 3em;
    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: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .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: .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: .9fr 1.25fr;
  }

  .waves-top-grid-gallery-3 {
    grid-template-columns: .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 {
    width: 100%;
    grid-row-gap: 10px;
  }

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

  .not-sticky-content {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .content-price {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container-9 {
    padding-left: 1em;
    padding-right: 1em;
  }

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

@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 {
    padding-bottom: 20px;
  }

  .section.ligher-grey-bg {
    padding-bottom: 30px;
  }

  .section.ligher-grey-bg.zindex-3 {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .container {
    width: auto;
    max-width: none;
    padding: 0 2em;
    font-style: normal;
  }

  .container.hero-container {
    display: block;
  }

  .container.clients-container {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .hero-section.home-hero-section {
    height: 85vh;
    display: block;
  }

  .nav-menu {
    height: auto;
    max-height: none;
  }

  .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 {
    height: 420px;
    justify-content: space-between;
    padding: 30px;
  }

  .footer {
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-image {
    width: 90%;
    max-width: 80px;
  }

  .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 {
    width: 50%;
    background-position: 85%, 0 0;
    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: 110px;
  }

  .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: -1em;
  }

  .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 {
    max-height: 450px;
    align-items: flex-start;
    display: block;
  }

  .contact-form {
    padding: 2em 1em;
  }

  .license-box {
    padding-left: 1em;
    padding-right: 1em;
  }

  .client-logo {
    max-height: 47px;
    max-width: 80px;
    min-width: 80px;
    outline-offset: 0px;
    border: 0 #000;
    outline: 3px #fff;
  }

  .instruction-item {
    padding-left: 1em;
    padding-right: 1em;
  }

  .trusted-by-grid-content {
    min-width: 130px;
    border: 1px #000;
  }

  .text-gradient-light {
    font-size: 30px;
    line-height: .8;
  }

  .hero-text-xl {
    font-size: 48px;
  }

  .text-gradient-colored {
    font-size: 70px;
    line-height: 1.1;
  }

  .grid-clients._1 {
    width: auto;
    max-width: none;
    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;
    display: grid;
  }

  .grid-clients._2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .hero-cricle-bg {
    width: 80vw;
    height: 80vw;
    top: -35vw;
    left: -37vw;
  }

  .hero-circle-bg-holder {
    min-height: 650px;
    align-items: center;
  }

  .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: -.5em;
    right: -.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 {
    height: 100%;
    max-height: none;
    max-width: none;
    min-height: 0;
    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 {
    width: 100%;
    height: auto;
    max-width: none;
    min-width: 0;
    background-image: linear-gradient(140deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    overflow: hidden;
  }

  .card.pricing-card:hover {
    background-image: linear-gradient(140deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .05));
  }

  .card.pricing-card:active {
    background-image: linear-gradient(140deg, var(--primary), #5598b4 44%, var(--secondary));
  }

  .card.pricing-card.main-pricing-card {
    width: 100%;
    max-width: none;
    min-width: 0%;
  }

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

  .card-title {
    font-size: 22px;
  }

  .card-description {
    font-size: 16px;
  }

  .hero-buttons-holder {
    width: 80%;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    display: flex;
  }

  .preloader-logo {
    min-width: 150px;
  }

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

  .iphone {
    max-height: 680px;
  }

  .price {
    font-size: 40px;
  }

  .pricing-features-holders {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .card-list-items-holder {
    width: 100%;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    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 {
    width: 40px;
    height: 40px;
    color: #98caff;
  }

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

  .secondary-page-title {
    font-size: 44px;
  }

  .secondary-page-holders {
    margin-bottom: 10px;
  }

  .secondary-hero-image-holder {
    padding-top: 2.3em;
    padding-bottom: 3em;
  }

  .features-image-gradient {
    height: 30px;
  }

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

  .featured-card-image-holder {
    margin-bottom: 2em;
    padding-top: 4px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .features-card-sx-heading {
    font-size: 20px;
  }

  .big-text {
    font-size: 18px;
  }

  .team-link {
    width: 70%;
  }

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

  .team-list {
    grid-template-columns: 1fr;
  }

  .job-position-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr .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 {
    max-height: 99px;
    align-items: flex-end;
  }

  .footer-gradient-background {
    opacity: .5;
    filter: blur(70px);
  }

  .ios-app {
    width: 100%;
    object-fit: cover;
  }

  .clients-list {
    width: 10000vw;
    max-width: none;
    min-width: 0%;
    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;
    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;
  }

  .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 {
    width: 100%;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    background-color: rgba(88, 88, 88, .3);
  }

  .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: .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: 30px;
  }

  .grey20-subtitle {
    text-align: center;
    font-size: 16px;
  }

  .uui-heading-xxsmall {
    width: 80%;
    color: var(--light-grey);
    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 {
    width: 100%;
    height: 7px;
    background-color: rgba(241, 241, 241, .15);
    border-radius: 5px;
    padding-bottom: 0;
  }

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

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

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

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

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

  ._502progress {
    width: 50%;
    height: 7px;
    background-color: #f86b6b;
    border-radius: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .progresstext {
    color: #fff;
    padding-bottom: .5em;
    font-size: 14px;
    font-weight: 600;
  }

  .text-gradient-light-benefit {
    font-size: 30px;
  }

  .feedback-div {
    display: block;
  }

  .talk-to-us {
    font-size: 60px;
  }

  .nav-link-holder-talk-to-us {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .uui-heroheader06_image-wrapper {
    height: 16rem;
  }

  .uui-heroheader06_component, .uui-layout82_list {
    grid-template-columns: 1fr;
  }

  .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 {
    width: auto;
    max-width: none;
    min-width: 0;
    justify-content: flex-start;
    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: .25fr 1fr;
  }

  .fn-featured-tabs-menu {
    padding-bottom: 20px;
  }

  .fn-featured-tabs {
    margin-top: 20px;
  }

  .left-brain-tab-title {
    width: 80%;
    color: #fff;
  }

  .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 rgba(135, 141, 149, .2);
    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 {
    width: 30px;
    height: 30px;
    background-image: linear-gradient(45deg, var(--primary) 33%, var(--secondary));
    color: rgba(255, 255, 255, .8);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 3px;
  }

  .grey-dim-4 {
    font-size: 14px;
  }

  .grid-3-features-4 {
    display: block;
  }

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

  .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 {
    width: 18em;
    height: 11em;
    object-fit: fill;
    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 {
    width: 50%;
    background-position: 85%, 0 0;
    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 {
    max-height: 450px;
    align-items: flex-start;
  }

  .text-gradient-colored-2 {
    font-size: 65px;
    line-height: 1.1;
  }

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

  .hero-buttons-holder-2 {
    width: 90%;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .button-2 {
    width: 50%;
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .button-2.with-icon {
    width: 50%;
    background-position: 85%, 0 0;
    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;
  }

  .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 rgba(0, 24, 63, .3);
  }

  .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 {
    height: 100%;
    max-height: none;
    max-width: none;
    min-height: 0;
    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 {
    height: 100%;
    max-height: none;
    max-width: none;
    min-height: 0;
    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 {
    min-width: 350px;
    object-fit: contain;
  }

  .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: linear-gradient(#6eff89, #715cff);
    border-radius: 15px;
    padding: 10px 30px;
  }

  .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 {
    height: 30vh;
    grid-template-columns: .8fr 1.2fr;
  }

  .waves-top-grid-gallery-3 {
    height: 30vh;
    grid-template-columns: .7fr .8fr;
    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 {
    height: 100%;
    flex-wrap: nowrap;
    display: flex;
  }

  .waves-grid-gallery-1 {
    max-width: none;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-content: stretch;
    justify-content: stretch;
    align-items: center;
    justify-items: start;
  }

  .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%;
    max-height: none;
    min-height: 0;
  }

  .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 {
    max-width: none;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    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 {
    width: 100%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    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;
  }

  .grid-clients-list._1 {
    width: auto;
    max-width: none;
    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 {
    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 {
    width: auto;
    max-width: 316px;
    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: grid;
  }

  .grid-clients-list-2._2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .mobile-content-fos {
    display: block;
  }

  .content-fos {
    display: none;
  }

  .partner-section {
    padding-bottom: 20px;
    display: block;
    overflow: hidden;
  }

  .partner-section.ligher-grey-bg {
    padding-bottom: 30px;
  }

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

  .clients-logo-list {
    width: 10000vw;
    max-width: none;
    min-width: 0;
    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;
    padding-top: 20px;
    display: flex;
    overflow: visible;
  }

  .content-price {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .container-9 {
    padding: 3em 1em;
  }

  .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 {
    width: 100%;
    max-width: 100px;
    min-width: 0%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    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 {
    width: 1000000vw;
    max-width: none;
    min-width: 0%;
    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;
    padding-top: 20px;
    display: flex;
  }

  .grey20-subtitle-3 {
    text-align: center;
    font-size: 16px;
  }

  .mac-app-holder-5 {
    width: 14.2em;
    height: 9em;
    object-fit: cover;
    position: absolute;
    top: 7%;
    left: 5%;
    right: 0%;
    overflow: visible;
  }

  .white-50pct-one {
    font-size: 16px;
  }
}

#w-node-c887c81d-5a39-0442-ab26-e899be8a081d-0e73707f {
  grid-area: span 1 / span 6 / span 1 / span 6;
  align-self: center;
}

#w-node-_4c20380c-decb-8b4c-fd76-b782533c1aae-0e73707f, #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9ea-0e73707f, #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-0e73707f, #w-node-_7d61ae05-ecd1-38c1-fb6b-9944eef3651e-0e73707f, #w-node-_02ff6699-0b23-e35c-2212-f3de242d80cb-0e73707f, #w-node-_7c72e88d-0855-4a35-b804-728e01e0f8c0-0e73707f, #w-node-_3a44c87a-6e51-8e71-8c89-4f6f630faee5-0e73707f, #w-node-_7de61a2c-1627-86a7-7358-8fb0484d7de3-0e73707f, #w-node-f126b420-431a-6f2a-ccd8-4215e9d2c6d9-0e73707f, #w-node-_73ba5834-e399-84c8-d813-86c4bafdd2a0-0e73707f, #w-node-_297d7db2-819e-2e1b-b1cd-30ce46dc36b7-0e73707f, #w-node-_818654bf-2743-ae00-033c-7f0d421b9200-0e73707f, #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fbe-0e73707f, #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fde-0e73707f, #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db63000-0e73707f, #w-node-_692c5189-b6ac-b0e7-22c5-c2cc9807153a-0e73707f, #w-node-_692c5189-b6ac-b0e7-22c5-c2cc9807153f-0e73707f, #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d59-0a144c54 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-0e737083 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e737083 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
  justify-self: auto;
}

#w-node-_273f5e80-1d18-f4bf-51c8-b3f238d4442e-0e737083, #w-node-_273f5e80-1d18-f4bf-51c8-b3f238d44430-0e737083 {
  align-self: center;
}

#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dadff-0e737083, #w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae01-0e737083, #w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae03-0e737083, #w-node-_1e85396a-d69d-7796-d9a5-cb0bd073da77-0e737083 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae08-0e737083, #w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae0a-0e737083 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b6f331c6-72cb-1471-fe0f-c8d7648dae0c-0e737083 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_1974316e-56a2-4feb-ee85-3c97b38b9001-0e737083 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_02ea1124-577f-4652-1115-9fb5e1377104-0e737083, #w-node-_02ea1124-577f-4652-1115-9fb5e137710e-0e737083, #w-node-_02ea1124-577f-4652-1115-9fb5e1377118-0e737083, #w-node-_02ea1124-577f-4652-1115-9fb5e1377122-0e737083, #w-node-_02ea1124-577f-4652-1115-9fb5e137712c-0e737083, #w-node-_02ea1124-577f-4652-1115-9fb5e1377136-0e737083, #w-node-_43819241-dc07-5a32-fe00-9914c5dec9c1-0e737083, #w-node-_7554c511-f3f5-81d1-8348-3a32b1cfe86b-0e737083, #w-node-_43819241-dc07-5a32-fe00-9914c5dec9c6-0e737083, #w-node-e5c055c0-0390-1119-7316-bf8055cb5ebc-0e737083, #w-node-_9c6a6a3a-6021-6088-8168-ba2cb1505c14-0e737083, #w-node-_1e4eed50-4770-b14a-72b0-dbb29b471dd1-0e737083, #w-node-_45d5b1ea-36b1-fcf1-758d-e0940b590619-0e737083, #w-node-_45d5b1ea-36b1-fcf1-758d-e0940b59061b-0e737083, #w-node-_45d5b1ea-36b1-fcf1-758d-e0940b59061d-0e737083 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d538fde-143e-eaa1-2f31-632fd2dff92d-d2dff923 {
  align-self: center;
  justify-self: center;
}

#w-node-_9d538fde-143e-eaa1-2f31-632fd2dff933-d2dff923 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c7787-0e737084 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f2fb423f-7673-267c-657c-64c8bca49607-0e737084 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a1d-0e737086 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a3f-0e737086 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_41be5e0a-8d19-7612-2e24-365674faf3d7-0e737087, #w-node-_41be5e0a-8d19-7612-2e24-365674faf3d9-0e737087, #w-node-_41be5e0a-8d19-7612-2e24-365674faf3db-0e737087, #w-node-_41be5e0a-8d19-7612-2e24-365674faf3e5-0e737087, #w-node-_41be5e0a-8d19-7612-2e24-365674faf3e7-0e737087, #w-node-_41be5e0a-8d19-7612-2e24-365674faf3e9-0e737087, #w-node-d4b369b6-31f4-dd50-d08a-46a4ac9e6d35-0e737088, #w-node-d4b369b6-31f4-dd50-d08a-46a4ac9e6d39-0e737088, #w-node-d4b369b6-31f4-dd50-d08a-46a4ac9e6d3d-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b26-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b29-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b37-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b3c-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b41-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b46-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b4d-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b52-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b57-0e737088, #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b5c-0e737088, #w-node-c3ac04c4-b7ad-eb39-bc2d-759465a3b05c-0e737088, #w-node-_6ac17db9-046d-df26-f8e3-946360898d8e-0e737088 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7f0f45df-1f38-ebf2-fa57-feaefc9fdec8-0e737088 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ac303de2-a454-c94d-591c-f96349bafd91-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafd95-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafd99-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafda0-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafda3-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdb1-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdb6-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdbb-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdc0-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdc7-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdcf-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafdd6-0e737088, #w-node-ac303de2-a454-c94d-591c-f96349bafddd-0e737088, #w-node-ff98c361-0c8b-cb5a-32d0-688039eb62b9-0e737088, #w-node-ff98c361-0c8b-cb5a-32d0-688039eb62b4-0e737088 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f650400-6ff1-7213-c661-30c3230af5c7-0e737088 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-0e73708a {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e73708a {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_622a45c8-103c-30e3-5783-4d46ad938c14-0e73708c, #w-node-b1078083-528c-8a78-9451-10023c5ce546-0e73708c, #w-node-_2d0a1bf9-b5f4-adf1-c02a-5eac1e935d88-0e73708c, #w-node-_7eb1222e-9580-c875-bb4c-680b609efc47-0e73708c, #w-node-c36b843d-59da-f500-5277-867ccfc46c3b-0e73708c, #w-node-_4863c51c-4368-cf5e-69b5-d0addca86478-0e73708c, #w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7d8c-0e73708d, #w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7dac-0e73708d, #w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7dce-0e73708d, #w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7df0-0e73708d, #w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7e17-0e73708d, #w-node-b94cce48-5e4a-6aeb-199d-b95ed96e7e46-0e73708d, #w-node-f1dc0c78-cadb-50af-31c8-a764dfa6c4cf-0e73708d, #w-node-b7c647b4-319e-48d0-bb7f-84c3ba31f00b-0e73708d, #w-node-_0750ebdb-0560-a671-c7f4-4faee1ff8947-0e73708e, #w-node-_0750ebdb-0560-a671-c7f4-4faee1ff894b-0e73708e, #w-node-_0750ebdb-0560-a671-c7f4-4faee1ff894f-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fa0-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fa3-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fb1-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fb8-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fbf-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fc6-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fcf-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fd7-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fde-0e73708e, #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fe5-0e73708e, #w-node-_58c0fee2-97e4-ab72-45d2-367ccade75b2-0e73708e, #w-node-d7e99b0c-f4fb-8bc5-8298-55449987f8bc-0e73708e, #w-node-_5d8079a6-92b2-4e1c-ab80-ee91086d881a-0e73708e, #w-node-_94360918-0b87-6f15-5301-cf9ea680714b-0e73708e, #w-node-_94360918-0b87-6f15-5301-cf9ea680713b-0e73708e, #w-node-_94360918-0b87-6f15-5301-cf9ea6807143-0e73708e, #w-node-_739e7cf9-dc8c-26b2-f0d6-9c0f34cd865c-0e73708e, #w-node-_4c3ac673-afb4-cc88-afb5-d72bb57a412d-0e73708e, #w-node-_4c3ac673-afb4-cc88-afb5-d72bb57a4135-0e73708e, #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4eee-0e73708e, #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f02-0e73708e, #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f0a-0e73708e, #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f69-0e73708e, #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f61-0e73708e, #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f52-0e73708e, #w-node-_535bd08e-5a2d-af5b-cada-a8dcbb3db532-0e73708e, #w-node-da3841b5-7fa1-f1b1-5e36-814ac0387251-0e73708e, #w-node-_535bd08e-5a2d-af5b-cada-a8dcbb3db557-0e73708e, #w-node-bbd4200a-86a3-b90d-8d7c-c3dd931e2c7e-0e73708e, #w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad15-0e73708e, #w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad20-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19132c-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e191343-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19134b-0e73708e, #w-node-_8eafb0f0-0bcd-78f4-f2b2-68f2176cf9eb-0e73708e, #w-node-_8eafb0f0-0bcd-78f4-f2b2-68f2176cfa0b-0e73708e, #w-node-_8eafb0f0-0bcd-78f4-f2b2-68f2176cfa2d-0e73708e, #w-node-_34f6f977-9198-53db-5be5-8525d417bafa-0e73708e, #w-node-_34f6f977-9198-53db-5be5-8525d417bb23-0e73708e, #w-node-_34f6f977-9198-53db-5be5-8525d417bb51-0e73708e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459e6e-0e73708f, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459eb6-0e73708f, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ebc-0e73708f, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ec1-0e73708f, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ec6-0e73708f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1440px) {
  #w-node-c887c81d-5a39-0442-ab26-e899be8a081d-0e73707f {
    grid-column: span 6 / span 6;
  }

  #w-node-_4c20380c-decb-8b4c-fd76-b782533c1aae-0e73707f, #w-node-_43067a18-a43e-22a4-7fd1-28fe8c564887-0e73707f, #w-node-_43067a18-a43e-22a4-7fd1-28fe8c56489b-0e73707f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d6d-0a144c54, #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d87-0a144c54 {
    align-self: center;
  }

  #w-node-_1e85396a-d69d-7796-d9a5-cb0bd073da77-0e737083 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: end;
  }

  #w-node-_1974316e-56a2-4feb-ee85-3c97b38b9001-0e737083 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b26-0e737088 {
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_30d23b9b-56b5-4c8b-4464-83d9ac1b1b4d-0e737088 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ac303de2-a454-c94d-591c-f96349bafda0-0e737088 {
    align-self: auto;
    justify-self: auto;
  }

  #w-node-ac303de2-a454-c94d-591c-f96349bafdc7-0e737088 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fa0-0e73708e {
    align-self: auto;
    justify-self: auto;
  }

  #w-node-c99eb3fa-b975-b182-1c70-88a8f92a9fcf-0e73708e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43a8-0e73708e {
    align-self: end;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43ab-0e73708e {
    justify-self: auto;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43b4-0e73708e, #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43bf-0e73708e {
    align-self: end;
  }

  #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f0a-0e73708e, #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f69-0e73708e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e737083 {
    align-self: center;
    justify-self: start;
  }

  #w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad20-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e191343-0e73708e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-c887c81d-5a39-0442-ab26-e899be8a081d-0e73707f {
    grid-column: span 4 / span 4;
  }

  #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-0e73707f {
    align-self: start;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d59-0a144c54 {
    grid-column: span 3 / span 3;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-0e737083 {
    grid-column: span 6 / span 6;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e737083 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    justify-self: start;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a00-0e737086 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e903-0e737088 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e916-0e737088 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_5ca9b294-f164-b9ea-4f60-34762976e91c-0e737088, #w-node-_936e288d-1130-500b-215b-d022ea27af82-0e737088 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_936e288d-1130-500b-215b-d022ea27af95-0e737088 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_936e288d-1130-500b-215b-d022ea27af9e-0e737088 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-0e73708a {
    grid-column: span 6 / span 6;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e73708a {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c887c81d-5a39-0442-ab26-e899be8a081d-0e73707f {
    grid-column: span 4 / span 4;
  }

  #w-node-c887c81d-5a39-0442-ab26-e899be8a083a-0e73707f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4c20380c-decb-8b4c-fd76-b782533c1aae-0e73707f, #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-0e73707f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fbe-0e73707f {
    align-self: auto;
    justify-self: center;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-0e737083, #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e737083 {
    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-0e737086 {
    grid-column: span 2 / span 2;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a0d-0e737086 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a1d-0e737086, #w-node-_9e4d2a83-1b42-07af-d664-df46b6f10a3f-0e737086 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793ec-0e73708a, #w-node-_6c716324-43fa-ba68-bc77-ad4f98d793f6-0e73708a {
    grid-column: span 2 / span 2;
  }

  #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43ab-0e73708e, #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43b7-0e73708e, #w-node-f097f5dd-e983-99f2-f036-c4c17f9c43c2-0e73708e {
    justify-self: end;
  }

  #w-node-d7e99b0c-f4fb-8bc5-8298-55449987f8bc-0e73708e, #w-node-_94360918-0b87-6f15-5301-cf9ea680713b-0e73708e, #w-node-_94360918-0b87-6f15-5301-cf9ea6807143-0e73708e, #w-node-_739e7cf9-dc8c-26b2-f0d6-9c0f34cd865c-0e73708e, #w-node-_6c3ad24f-323e-a42a-c649-08043dcf4f02-0e73708e, #w-node-_3f3fcc42-d1c1-c3a2-6e85-ee5915296f61-0e73708e, #w-node-da3841b5-7fa1-f1b1-5e36-814ac0387251-0e73708e, #w-node-bbd4200a-86a3-b90d-8d7c-c3dd931e2c7e-0e73708e, #w-node-d133e6f5-0f93-c726-3fdb-2ae9bcc7ad15-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e191343-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19134b-0e73708e {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_34f6f977-9198-53db-5be5-8525d417bafa-0e73708e {
    align-self: auto;
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8f2e8001-1b60-6509-87b5-4b53795ec9fa-0e73707f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1d19fdaf-3e99-0cdb-1be3-89978db62fbe-0e73707f {
    justify-self: auto;
  }

  #w-node-_6829bd5b-a20d-9882-0f82-a6d3e51a7d59-0a144c54 {
    grid-column: span 1 / span 1;
  }

  #w-node-_43819241-dc07-5a32-fe00-9914c5dec9c1-0e737083 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d91ac63b-6830-ad42-9bc6-67bbf09f2acc-0e737083 {
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_1c287cbb-a645-d992-0499-64c4868473e7-0e737083, #w-node-_45d5b1ea-36b1-fcf1-758d-e0940b59061f-0e737083 {
    justify-self: end;
  }

  #w-node-_9d538fde-143e-eaa1-2f31-632fd2dff92d-d2dff923 {
    justify-self: start;
  }

  #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c7777-0e737084, #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c777b-0e737084, #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c777f-0e737084, #w-node-_01b9e3e3-333e-e152-3ec1-d3a21e6c7783-0e737084 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d7e99b0c-f4fb-8bc5-8298-55449987f8bc-0e73708e, #w-node-_94360918-0b87-6f15-5301-cf9ea6807143-0e73708e, #w-node-_739e7cf9-dc8c-26b2-f0d6-9c0f34cd865c-0e73708e, #w-node-da3841b5-7fa1-f1b1-5e36-814ac0387251-0e73708e, #w-node-bbd4200a-86a3-b90d-8d7c-c3dd931e2c7e-0e73708e, #w-node-_1cfd6ebc-7a31-da66-f1b8-84414e19134b-0e73708e {
    grid-area: 1 / 1 / 2 / 2;
  }
}


