:root {
  --background: #f2f4fe;
  --paragraph: #2d3040;
  --heading: #0c1d37;
  --main: #4166f5;
  --border: #d7ddef;
  --shadow: #00176412;
  --white: white;
  --text-accent: #4166f51f;
  --alter-shadow: #2d323a94;
  --accent-background: #e6e9f5;
  --green: #12b361;
  --red: #f54144;
}

.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(--background);
  color: var(--paragraph);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  display: flex;
}

h1 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 700;
  line-height: 122%;
}

h2 {
  color: var(--heading);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 117%;
}

h3 {
  color: var(--heading);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 36px;
  font-weight: 700;
  line-height: 117%;
}

h4 {
  color: var(--heading);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 117%;
}

h5 {
  color: var(--heading);
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 125%;
}

h6 {
  color: var(--heading);
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 135%;
}

p {
  margin-bottom: 28px;
}

a {
  color: var(--heading);
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--main);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 36px;
}

li {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
}

strong {
  color: var(--heading);
  font-weight: 700;
}

blockquote {
  border-left: 2px solid var(--border);
  color: var(--heading);
  margin-bottom: 28px;
  margin-left: 18px;
  padding: 0 24px;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 170%;
}

figure {
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  margin-top: 38px;
  margin-bottom: 38px;
  overflow: hidden;
}

figcaption {
  background-color: var(--white);
  text-align: center;
  margin-top: 0;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 170%;
}

.navbar {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background-color: #f2f4fe80;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.grid-navbar {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.nav {
  align-items: center;
  margin-right: 40px;
  display: flex;
}

.nav.right {
  justify-content: flex-end;
}

.logo {
  color: var(--main);
  max-width: none;
  height: 60px;
  display: flex;
}

.logo.hidden {
  display: none;
}

.logo.waitlist {
  height: 100px;
}

.brand {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  display: flex;
}

.brand.w--current {
  margin-top: 0;
  padding: 0;
}

.brand.footer {
  margin-top: -20px;
  margin-bottom: 10px;
  padding: 0;
}

.brand.footer.w--current {
  margin-top: 0;
  margin-bottom: 40px;
}

.extra-nav-menu {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--heading);
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%;
}

.nav-link.w--current {
  color: var(--heading);
}

.nav-link.w--current:hover {
  color: var(--main);
}

.nav-link.hidden {
  display: none;
}

.navbar-bg {
  z-index: -10;
  box-shadow: 0 15px 50px -10px var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background-color: #f2f4fe80;
  position: absolute;
  inset: 0%;
}

.nav-button {
  border: 2px solid var(--heading);
  color: var(--heading);
  text-align: center;
  background-color: #0000;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%;
  transition: background-color .2s, color .2s;
}

.nav-button:hover {
  background-color: var(--heading);
  color: var(--white);
}

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

.section-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 190px 30px 220px;
  display: flex;
}

.section-hero.single-page {
  padding-bottom: 0;
}

.section-hero.cms-section {
  padding-bottom: 50px;
}

.section-hero.for-grid {
  padding-bottom: 85px;
  overflow: hidden;
}

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

.heading-hero {
  background-image: linear-gradient(135deg, var(--heading), var(--main));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 1100px;
}

.paragraph-hero {
  max-width: 500px;
  margin-bottom: 34px;
  padding-left: 4px;
}

.button {
  background-color: var(--heading);
  color: var(--white);
  border-radius: 50px;
  margin-top: 20px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition-property: background-color;
}

.button:hover {
  background-color: var(--main);
  color: var(--white);
}

.button.outline {
  border: 2px solid var(--heading);
  color: var(--heading);
  background-color: #0000;
  padding: 16px 38px;
  transition: color .2s, background-color .2s;
}

.button.outline:hover {
  background-color: var(--heading);
  color: var(--white);
}

.button.orange {
  background-color: var(--main);
}

.button.orange:hover {
  background-color: var(--heading);
}

.button.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .2s, background-color .2s;
}

.button.white:hover {
  background-color: var(--main);
  color: var(--white);
}

.text-accent {
  background-color: var(--text-accent);
  color: var(--main);
  border-radius: 8px;
  padding-left: .25em;
  padding-right: .25em;
  display: inline-block;
}

.block-hero-img {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 110px;
  display: flex;
  position: relative;
}

.app-screen---hero-1 {
  z-index: 10;
  box-shadow: 0 25px 50px -10px var(--alter-shadow);
  border-radius: 24px;
  width: 80%;
  position: relative;
}

.app-screen---hero-2 {
  z-index: 20;
  box-shadow: 0 25px 50px -10px var(--alter-shadow);
  border-radius: 24px;
  width: 44%;
  position: absolute;
  inset: auto 20px -100px auto;
}

.block-circle---hero-2 {
  z-index: 15;
  width: 26%;
  position: absolute;
  inset: auto 20px -40px auto;
}

.image-circle---1 {
  width: 50%;
  margin-top: -34%;
  margin-left: -27%;
  position: absolute;
}

.image-circle---2 {
  width: 30%;
  margin-top: -20%;
  margin-left: -45%;
  position: absolute;
}

.image-circle---3 {
  width: 20%;
  margin-top: 9%;
  margin-left: 22%;
  position: absolute;
}

.block-circle---hero-1 {
  z-index: 5;
  width: 80%;
  position: absolute;
}

.image-circle---4 {
  width: 25%;
  margin-top: -8%;
  margin-left: 83%;
  position: absolute;
}

.image-circle---5 {
  width: 12%;
  margin-top: -14%;
  margin-left: 97%;
  position: absolute;
}

.image-circle---6 {
  width: 8%;
  margin-top: -17%;
  margin-left: 85%;
  position: absolute;
}

.image-circle---7 {
  width: 14%;
  margin-top: 7%;
  margin-left: -7%;
  position: absolute;
}

.image-circle---8 {
  width: 8%;
  margin-top: -2%;
  margin-left: -11%;
  position: absolute;
}

.image-circle---9 {
  width: 6%;
  margin-top: -12%;
  margin-left: -1%;
  position: absolute;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 85px 30px;
  display: flex;
}

.block-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  display: flex;
}

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

.heading.cms-main {
  font-size: 48px;
  line-height: 117%;
}

.heading.top-margin {
  margin-top: 102px;
}

.paragraph {
  max-width: 470px;
  margin-bottom: 34px;
}

.paragraph.white {
  color: #9da3ab;
}

.grid-feature {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  display: grid;
}

.grid-feature.logos {
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
}

.grid-feature.cms-flex {
  flex-wrap: wrap;
  place-content: space-around center;
  display: flex;
}

.grid-card {
  text-align: center;
  border: 2px solid #0000;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 15px;
  text-decoration: none;
  transition: box-shadow .18s cubic-bezier(.455, .03, .515, .955), border .1s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.grid-card:hover {
  border: 2px solid var(--border);
  color: var(--heading);
  box-shadow: 0 5px 10px 2px #d7ddef40;
}

.grid-card.cms-solution {
  margin-bottom: 30px;
  margin-left: 12px;
  margin-right: 12px;
}

.grid-card.no-card-hover {
  transition: none;
}

.grid-card.no-card-hover:hover {
  box-shadow: none;
  border-color: #0000;
}

.card-icon-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  margin-left: 0;
  margin-right: 0;
  padding: 25px;
  display: flex;
}

.card-icon {
  width: 36px;
  height: 36px;
}

.card-paragraph {
  text-align: left;
  max-width: 330px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 170%;
}

.card-paragraph.no-bottom-margin {
  text-align: left;
  margin-bottom: 0;
}

.card-heading {
  text-align: left;
  margin-bottom: 14px;
}

.card-heading.no-bottom-margin {
  margin-bottom: 0;
}

.card-heading.case {
  margin-top: 14px;
  margin-bottom: 16px;
}

.card-heading.cms-card {
  letter-spacing: -.3px;
  font-size: 22px;
  line-height: 125%;
}

.block-sticky {
  margin-top: 85px;
  margin-bottom: 85px;
  position: sticky;
  top: 150px;
}

.app-screen---a {
  overflow: hidden;
}

.grid-app-screen---a {
  grid-column-gap: 2vw;
  grid-row-gap: 3vw;
  perspective: 1000px;
  perspective-origin: 50%;
  transform-origin: 50%;
  grid-template-columns: 1fr 2.2fr;
  place-items: center;
  width: 130%;
  max-width: 1100px;
  padding-top: 80px;
  padding-bottom: 50px;
  padding-left: 30px;
  transform: perspective(1000px);
}

.app-screen---a2 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  width: 100%;
}

.app-screen---a1 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  transform-style: preserve-3d;
  border-radius: 24px;
  width: 100%;
  transform: translate3d(0, 0, -20px);
}

.app-screen---a3 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  transform-style: preserve-3d;
  border-radius: 24px;
  width: 100%;
  transform: translate3d(0, 0, 20px);
}

.grid-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(30px, 1fr) minmax(auto, 500px) minmax(auto, 700px) minmax(30px, 1fr);
  align-items: center;
}

.grid-sequence {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr 1fr .4fr 1fr;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 30px;
}

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

.icon-sequence-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  padding: 25px;
  display: flex;
  position: relative;
}

.icon-sequence {
  width: 34px;
  height: 34px;
}

.number-sequence-bg {
  background-color: var(--main);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: absolute;
  inset: -10px -10px auto auto;
}

.number-sequence {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.paragraph-sequence {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 170%;
}

.img-arrow---1 {
  width: 100%;
  max-width: 110px;
  margin-top: 15px;
}

.img-arrow---2 {
  width: 100%;
  max-width: 110px;
  margin-top: 40px;
}

.circle---a {
  position: relative;
}

.block-circle---a {
  width: 100%;
}

.image-circle---a1 {
  width: 16%;
  margin-top: 2%;
  margin-left: 44%;
  position: absolute;
}

.image-circle---a3 {
  width: 8%;
  margin-top: -19%;
  margin-left: 36%;
  position: absolute;
}

.image-circle---a2 {
  width: 10%;
  margin-top: -7%;
  margin-left: 57%;
  position: absolute;
}

.grid-2-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  width: 100%;
}

.app-screen---b {
  z-index: 10;
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
}

.block-app-screen---b {
  height: 459px;
  position: relative;
}

.block-circle---b {
  width: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-circle---b1 {
  width: 20%;
  margin-top: -14%;
  margin-left: -5%;
  position: absolute;
}

.image-circle---b2 {
  width: 10%;
  margin-top: 4%;
  margin-left: 13%;
  position: absolute;
}

.image-circle---b3 {
  width: 8%;
  margin-top: 0%;
  margin-left: -7%;
  position: absolute;
}

.block-right {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10%;
}

.check {
  background-color: var(--white);
  box-shadow: 0 10px 20px -5px var(--shadow);
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  display: flex;
}

.icon-check {
  width: 15px;
  height: 15px;
}

.block-check {
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.heading-check {
  margin-bottom: 0;
}

.heading-check.cms-bullet {
  letter-spacing: -.2px;
  font-size: 18px;
  line-height: 135%;
}

.grid-3-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.grid-row {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
}

.block-left {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10%;
}

.testimonial {
  background-color: var(--accent-background);
  border-radius: 24px;
  padding: 30px 40px 35px;
}

.paragraph-testimonial {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

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

.client-avatar {
  box-shadow: 0 15px 30px -10px var(--shadow);
  object-fit: cover;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 16px;
}

.name {
  margin-bottom: 2px;
}

.info {
  font-size: 15px;
  line-height: 120%;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-wrapper {
  width: 100%;
  margin-top: 15px;
}

.card-category {
  color: var(--main);
  background-color: #3662f61f;
  border-radius: 8px;
  margin-top: 27px;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
}

.card-category.hero {
  margin-top: 0;
  margin-left: 7px;
  margin-right: 7px;
}

.card-date {
  opacity: .5;
  color: var(--heading);
  font-size: 15px;
  line-height: 120%;
}

.card-date.hero {
  margin-left: 7px;
  margin-right: 7px;
}

.empty-state {
  background-color: var(--accent-background);
  text-align: center;
  border-radius: 12px;
}

.empty-text {
  color: var(--heading);
  padding: 4px;
  line-height: 140%;
}

.grid-banner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--heading);
  border-radius: 24px;
  grid-template-rows: auto;
  width: 100%;
}

.text-banner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 5% 70px 13%;
  display: flex;
}

.form-banner {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field-white {
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-white:focus {
  border-color: #ffffff40;
}

.text-field-white::placeholder {
  color: #ffffff80;
}

.submit-button-white {
  background-color: var(--white);
  color: var(--heading);
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: color .2s, background-color .2s;
}

.submit-button-white:hover {
  background-color: var(--main);
  color: var(--white);
}

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

.img-banner {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.app-screen---c {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 60px;
  left: 75px;
}

.block-app-screen---c {
  border-radius: 0 0 24px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.block-circle---c-down {
  width: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-circle---c1 {
  width: 26%;
  margin-top: -21%;
  margin-left: 3%;
  position: absolute;
}

.image-circle---c2 {
  width: 10%;
  margin-top: -22%;
  margin-left: 30%;
  position: absolute;
}

.block-circle---c-top {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-circle---c3 {
  width: 20%;
  margin-top: 4%;
  margin-left: 76%;
  position: absolute;
}

.image-circle---c4 {
  width: 11%;
  margin-top: -6%;
  margin-left: 67%;
  position: absolute;
}

.success-text {
  color: var(--green);
  line-height: 140%;
}

.success-message {
  background-color: #12b36126;
  border-radius: 12px;
  padding: 18px 26px;
}

.error-message {
  background-color: #ff65011a;
  border-radius: 12px;
  margin-top: 12px;
  padding: 18px 26px;
}

.error-text {
  color: var(--main);
  line-height: 140%;
}

.section-footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 85px 30px 58px;
  display: flex;
}

.grid-footer {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 2.8fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-bottom: 74px;
}

.footer-down {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraph-footer {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 170%;
}

.logo-footer {
  height: 26px;
  margin-bottom: 30px;
  display: block;
}

.logo-footer.hidden {
  display: none;
}

.link-footer {
  color: var(--heading);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  display: block;
}

.heading-footer {
  opacity: .5;
  color: var(--heading);
  margin-bottom: 26px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.text-footer-down {
  color: #9b9ea5;
  font-size: 14px;
  line-height: 130%;
}

.link-footer-down {
  color: var(--heading);
  text-decoration: none;
}

.grid-solutions {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  display: grid;
}

.card-image {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 224px;
  margin-bottom: 28px;
}

.card-image.case {
  height: 165px;
  margin-bottom: 0;
}

.card-image.case.large {
  height: 340px;
}

.grid-faq {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 870px;
  margin-top: 5px;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 12px;
}

.accordion-header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  transition: padding .2s;
  display: flex;
}

.accordion-header:hover {
  padding-left: 34px;
}

.accordion-content {
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  overflow: hidden;
}

.heading-accordion {
  margin-bottom: 0;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.paragraph-accordion {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

.grid-pricing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-top: 5px;
}

.plan {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 42px 14%;
  display: flex;
}

.heading-plan {
  color: var(--main);
  margin-bottom: 14px;
}

.heading-plan.blue {
  color: var(--red);
}

.heading-plan.green {
  color: var(--green);
}

.price-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.price-info {
  color: #9b9ea5;
  font-size: 20px;
  line-height: 100%;
}

.price {
  color: var(--heading);
  margin-left: 4px;
  margin-right: 4px;
  font-size: 55px;
  font-weight: 700;
  line-height: 100%;
}

.paragraph-plan {
  max-width: 270px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 170%;
}

.check-block-plan {
  justify-content: center;
  align-items: center;
  display: flex;
}

.check-plan {
  background-color: #ff65011a;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  display: flex;
}

.check-plan.blue {
  background-color: #5772ff1a;
}

.check-plan.green {
  background-color: #12b3611a;
}

.text-check-plan {
  color: var(--heading);
  text-align: left;
  font-weight: 500;
  line-height: 130%;
}

.grid-check-plan {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center start;
  width: 100%;
  margin-bottom: 34px;
}

.button-small {
  background-color: var(--heading);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%;
  transition-property: background-color;
}

.button-small:hover {
  background-color: var(--main);
  color: var(--white);
}

.button-small.outline {
  border: 2px solid var(--heading);
  color: var(--heading);
  background-color: #0000;
  padding: 10px 20px;
  transition: color .2s, background-color .2s;
}

.button-small.outline:hover {
  background-color: var(--heading);
  color: var(--white);
}

.button-small.orange {
  background-color: var(--main);
}

.button-small.orange:hover {
  background-color: var(--heading);
}

.button-small.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .2s, background-color .2s;
}

.button-small.white:hover {
  background-color: var(--main);
  color: var(--white);
}

.collection-list-wrapper-large {
  width: 100%;
  margin-top: 0;
}

.collection-list-wrapper-large.is--margin-top {
  margin-top: 68px;
}

.grid-cases {
  grid-column-gap: 30px;
  grid-row-gap: 85px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.blog-info {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 68px;
  display: flex;
}

.heading-hero-blog {
  max-width: 1100px;
  margin-bottom: 14px;
}

.image-blog-main {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
}

.rich-text-block {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 760px;
  margin-top: 68px;
  display: flex;
}

.image-company {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 480px;
}

.grid-company-info {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 70px;
}

.company-info {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 30px;
  display: flex;
}

.heading-company-info {
  margin-bottom: 0;
}

.number-company-info {
  color: var(--main);
  letter-spacing: -1px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 700;
  line-height: 100%;
}

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

.grid-image-page {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 42px;
  margin-bottom: 70px;
}

.image-page {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
}

.grid-single-page {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  align-items: center;
  width: 100%;
}

.contact-information {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.icon-contact-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 25px;
  display: flex;
}

.icon-contact {
  width: 34px;
  height: 34px;
}

.heading-info-contact {
  margin-bottom: 0;
}

.text-info-contact {
  color: var(--heading);
  font-size: 15px;
  line-height: 135%;
}

.contact {
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 50px 12%;
  display: flex;
  position: relative;
}

.paragraph-form {
  max-width: 400px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

.form-block {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field:focus {
  border-color: #4166f580;
}

.text-field::placeholder {
  color: #3b4555b3;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.submit-button {
  background-color: var(--heading);
  color: var(--white);
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: background-color .2s;
}

.submit-button:hover {
  background-color: var(--main);
  color: var(--white);
}

.submit-button.orange {
  background-color: var(--main);
}

.submit-button.orange:hover {
  background-color: var(--heading);
}

.textarea {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--border);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--border);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--border);
  background-color: var(--white);
  color: var(--heading);
  resize: vertical;
  border-radius: 28px;
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 350px;
  margin-bottom: 13px;
  padding: 17px 26px;
  font-size: 18px;
  line-height: 120%;
  transition-property: border-color;
  transition-duration: .2s;
  transition-timing-function: ease;
}

.textarea:focus {
  border-color: #ff650180;
}

.textarea::placeholder {
  color: #3b4555b3;
}

.block-circle---d-down {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.block-circle---d-top {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-circle---d1 {
  width: 30%;
  margin-top: 14%;
  margin-left: 89%;
  position: absolute;
}

.image-circle---d2 {
  width: 20%;
  margin-top: 5%;
  margin-left: 105%;
  position: absolute;
}

.image-circle---d3 {
  width: 12%;
  margin-top: -6%;
  margin-left: 99%;
  position: absolute;
}

.image-circle---d4 {
  width: 20%;
  margin-top: -13%;
  margin-left: -8%;
  position: absolute;
}

.image-circle---d5 {
  width: 10%;
  margin-top: -25%;
  margin-left: -11%;
  position: absolute;
}

.image-circle---d6 {
  width: 8%;
  margin-top: -40%;
  margin-left: -14%;
  position: absolute;
}

.block-contact {
  position: relative;
}

.grid-account {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  min-height: 100vh;
}

.img-account {
  background-image: url('../images/sign-up.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.account {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 106px 50px 70px;
  display: flex;
  position: relative;
}

.block-account {
  width: 100%;
  max-width: 580px;
}

.account-form {
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 50px 12%;
  display: flex;
}

.text-form {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 135%;
}

.text-account {
  margin-top: 24px;
  font-size: 14px;
  line-height: 135%;
}

.brand-account {
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: flex;
  position: absolute;
  inset: 33px auto auto;
}

.button-login {
  border: 2px solid var(--heading);
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 16px 40px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.button-login:hover {
  background-color: var(--heading);
  color: var(--white);
}

.icon-login {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.text-login {
  font-weight: 500;
  line-height: 120%;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
  display: none;
}

.grid-colors {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.block-color {
  border: 1px solid var(--border);
  background-color: var(--background);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 15px;
  display: flex;
}

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

.block-color.white {
  background-color: var(--white);
}

.block-color.accent-background {
  background-color: var(--accent-background);
}

.block-color.heading {
  background-color: var(--heading);
}

.block-color.paragraphs {
  background-color: var(--paragraph);
}

.block-color.orange {
  background-color: var(--main);
}

.block-color.blue {
  background-color: var(--red);
}

.block-color.green {
  background-color: var(--green);
}

.block-color.shadow {
  background-color: var(--shadow);
}

.block-color.text-accent {
  background-color: var(--text-accent);
}

.text-color {
  color: var(--heading);
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
}

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

.buttons {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 14px 18px;
}

.buttons.dark {
  background-color: var(--heading);
}

.grid-button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  place-items: center start;
}

.grid-image-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.grid-image {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 300px;
}

.circle-licensing {
  width: 28%;
  margin-left: -6%;
  margin-right: -6%;
}

.block-circle-licensing {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.font {
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  margin-bottom: 10px;
  padding: 25px 30px;
  display: none;
}

.manrope {
  margin-bottom: 0;
}

.link-font {
  margin-right: 25px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 120px 30px 40px;
  display: flex;
}

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

.utility-page-form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: stretch;
  display: grid;
}

.logotype {
  color: var(--main);
  font-size: 35px;
  font-weight: 700;
  display: flex;
}

.logotype.footer {
  margin-bottom: 30px;
}

.custom-code {
  display: none;
}

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

.clients-logo {
  color: #c2c6d9;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 120px;
  transition: all .2s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.clients-logo:hover {
  color: var(--main);
}

.grid-wrapper {
  margin-bottom: 34px;
}

.grid-team {
  grid-column-gap: 30px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.image-team {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 224px;
  margin-bottom: 28px;
}

.image-team.delete {
  object-position: 50% 0%;
}

.card-title {
  margin-top: 7px;
  margin-bottom: 14px;
}

.heading-2, .heading-3 {
  display: none;
}

.image {
  box-sizing: border-box;
  object-fit: fill;
  width: 100%;
  max-width: 200px;
  height: 50%;
  max-height: 50%;
  overflow: hidden;
}

.image-2 {
  max-width: 200px;
}

.heading-4 {
  margin-bottom: 60px;
}

.link-block {
  cursor: pointer;
}

.grid {
  grid-template: "Area Area-2 Area-3"
                 "Area-4 Area-5 Area-6"
                 "Area-7 Area-8 Area-9"
                 / 1fr 1fr 1fr;
  width: 100%;
  margin-top: 20px;
}

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

.feature-container {
  border: 2px solid #0000;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: 100%;
  padding: 15px;
  display: flex;
}

.container-3 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  background-color: #fff;
  border-radius: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  margin-bottom: 28px;
  margin-left: 0;
  margin-right: 0;
  padding: 25px;
  display: flex;
}

.image-3 {
  width: 36px;
  height: 36px;
}

.heading-5 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 125%;
}

.paragraph-2 {
  margin-bottom: 0;
  font-size: 16px;
}

.features-container {
  width: 100%;
  max-width: 100%;
}

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

.solutions-container {
  width: 100%;
  max-width: 100%;
}

.solution-container {
  border: 2px solid #0000;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: 100%;
  padding: 15px;
  display: flex;
}

.features-grid {
  grid-template: "Area Area-2 Area-3 Area-4"
                 "Area-5 Area-6 Area-7 Area-8"
                 / 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .nav-link {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .navbar-bg {
    background-color: var(--background);
    box-shadow: 0 15px 50px -10px var(--shadow);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-menu {
    background-color: var(--background);
    box-shadow: 0 25px 50px -10px var(--shadow);
    padding-bottom: 20px;
  }

  .menu-button {
    color: var(--heading);
    border-radius: 50px;
    margin-left: 5px;
    padding: 10px;
    font-size: 22px;
    line-height: 100%;
    transition: color .2s, background-color .2s;
  }

  .menu-button.w--open {
    background-color: var(--main);
    color: var(--white);
  }

  .section-hero {
    padding-top: 170px;
    padding-bottom: 120px;
    overflow: hidden;
  }

  .section-hero.cms-section {
    padding-bottom: 40px;
  }

  .section-hero.for-grid {
    padding-bottom: 75px;
  }

  .block-hero-img {
    margin-top: 90px;
  }

  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .heading.cms-main {
    font-size: 40px;
  }

  .grid-feature {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

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

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

  .block-sticky {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .grid-2-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .heading-check.cms-bullet {
    font-size: 17px;
  }

  .grid-3-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-row {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .block-left {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 12% 40px;
    display: flex;
  }

  .collection-list {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .section-footer {
    padding-top: 75px;
    padding-bottom: 48px;
  }

  .grid-footer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 64px;
  }

  .grid-solutions {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .card-image {
    height: 25vw;
  }

  .grid-pricing {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-cases {
    grid-column-gap: 20px;
    grid-row-gap: 75px;
  }

  .blog-info, .image-blog-main {
    margin-bottom: 58px;
  }

  .image-company {
    height: 40vw;
  }

  .grid-company-info {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
    margin-bottom: 65px;
  }

  .number-company-info {
    font-size: 45px;
  }

  .grid-image-page {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 37px;
    margin-bottom: 65px;
  }

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

  .block-contact {
    width: 100%;
    max-width: 650px;
  }

  .grid-team {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .image-team {
    height: 25vw;
  }

  .grid {
    grid-template: "Area Area-2"
                   "Area-3 Area-4"
                   "Area-5 Area-6"
                   "Area-7 Area-8"
                   "Area-9 ."
                   / 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .features-grid {
    grid-template: "Area Area-2"
                   "Area-3 Area-4"
                   "Area-5 Area-6"
                   "Area-7 Area-8"
                   ". ."
                   / 1fr;
    grid-auto-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 37px;
  }

  h3 {
    font-size: 29px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 19px;
  }

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

  .grid-navbar {
    grid-template-columns: auto auto auto;
  }

  .logo {
    height: 50px;
  }

  .logo.waitlist {
    height: 80px;
  }

  .brand {
    justify-content: flex-start;
    padding-left: 5px;
  }

  .brand.footer {
    justify-content: center;
  }

  .section-hero {
    padding: 160px 20px 110px;
  }

  .section-hero.cms-section {
    padding-bottom: 30px;
  }

  .section-hero.for-grid {
    padding-bottom: 65px;
  }

  .block-hero-img {
    margin-top: 80px;
  }

  .section {
    padding: 65px 20px;
  }

  .heading.cms-main {
    font-size: 37px;
  }

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

  .card-paragraph {
    max-width: 430px;
  }

  .card-heading.cms-card {
    font-size: 19px;
  }

  .block-sticky {
    margin-top: 65px;
    margin-bottom: 0;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
    top: 0;
  }

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

  .grid-sequence {
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .img-arrow---1, .img-arrow---2 {
    display: none;
  }

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

  .block-app-screen---b {
    margin-left: 8%;
    margin-right: 8%;
  }

  .block-right {
    padding-top: 0;
    padding-left: 10%;
    padding-right: 10%;
  }

  .block-left {
    padding-bottom: 30px;
    padding-left: 6%;
    padding-right: 6%;
  }

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

  .text-banner {
    padding-left: 10%;
    padding-right: 10%;
  }

  .section-footer {
    padding: 65px 20px 38px;
  }

  .grid-footer {
    grid-row-gap: 70px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 54px;
  }

  .footer-down {
    text-align: center;
  }

  .block-footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

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

  .card-image {
    height: 50vw;
  }

  .grid-pricing, .grid-cases, .grid-company-info {
    grid-template-columns: 1fr;
  }

  .company-info {
    padding: 30px 20px;
  }

  .number-company-info {
    font-size: 40px;
  }

  .grid-image-page, .grid-account {
    grid-template-columns: 1fr;
  }

  .img-account {
    display: none;
  }

  .account {
    padding-left: 10%;
    padding-right: 10%;
  }

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

  .grid-image-wrapper {
    grid-template-columns: 1fr;
  }

  .clients-logo {
    height: 100px;
  }

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

  .image-team {
    height: 50vw;
  }

  .grid {
    grid-template: "Area"
                   "Area-2"
                   "Area-3"
                   "Area-4"
                   "Area-5"
                   "Area-6"
                   "Area-7"
                   "Area-8"
                   "Area-9"
                   / 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .nav.right {
    margin-right: 0;
  }

  .brand.footer {
    margin-top: 0;
  }

  .extra-nav-menu {
    display: none;
  }

  .section-hero {
    padding-top: 150px;
    padding-bottom: 140px;
  }

  .section-hero.cms-section {
    padding-bottom: 20px;
  }

  .section-hero.for-grid {
    padding-bottom: 55px;
  }

  .block-hero {
    max-width: 100%;
  }

  .heading-hero {
    text-align: left;
    max-width: 100%;
  }

  .paragraph-hero {
    text-align: left;
  }

  .block-hero-img {
    margin-top: 70px;
  }

  .app-screen---hero-2 {
    vertical-align: top;
    margin-top: 0;
    bottom: -60px;
  }

  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .heading {
    text-align: left;
  }

  .heading.cms-main {
    font-size: 30px;
  }

  .paragraph {
    text-align: left;
  }

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

  .grid-feature.logos {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .grid-card {
    justify-content: flex-start;
    align-items: center;
  }

  .card-icon-bg {
    margin-left: 0;
    margin-right: 0;
  }

  .card-paragraph {
    text-align: left;
    max-width: 300px;
  }

  .card-paragraph.no-bottom-margin {
    text-align: center;
  }

  .card-heading {
    text-align: left;
  }

  .card-heading.cms-card {
    font-size: 18px;
  }

  .block-sticky {
    margin-top: 55px;
  }

  .sequence {
    justify-content: flex-start;
    align-items: center;
  }

  .heading-sequence, .paragraph-sequence {
    text-align: center;
  }

  .block-right {
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-check.cms-bullet {
    font-size: 16px;
  }

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

  .block-left {
    padding-bottom: 20px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .testimonial {
    padding: 24px 28px;
  }

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

  .text-banner {
    text-align: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .form-banner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-footer {
    padding-top: 55px;
    padding-bottom: 28px;
  }

  .grid-footer {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .plan {
    padding: 35px 10%;
  }

  .blog-info, .image-blog-main {
    margin-bottom: 48px;
  }

  .grid-company-info {
    margin-bottom: 55px;
  }

  .heading-company-info {
    font-size: 16px;
  }

  .number-company-info {
    margin-bottom: 5px;
    font-size: 35px;
  }

  .grid-image-page {
    margin-top: 27px;
    margin-bottom: 55px;
  }

  .contact-information {
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .icon-contact-bg {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .heading-info-contact {
    max-width: 280px;
    font-size: 20px;
  }

  .text-info-contact {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .contact {
    padding: 40px 10%;
  }

  .account {
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .account-form {
    padding-left: 10%;
    padding-right: 10%;
  }

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

  .grid-button {
    grid-auto-flow: row;
  }

  .utility-page-wrap {
    padding: 110px 10px 30px;
  }

  .clients-logo {
    height: 100px;
  }

  .grid {
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-areas: "Area"
                         "Area-2"
                         "Area-3"
                         "Area-4"
                         "Area-5"
                         "Area-6"
                         "Area-7"
                         "Area-8"
                         "Area-9";
  }

  .features-grid {
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-areas: "Area"
                         "Area-2"
                         "Area-3"
                         "Area-4"
                         "Area-5"
                         "Area-6"
                         "Area-7"
                         "Area-8";
  }
}

#w-node-div-block-5-79aed137 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-div-block-6-79aed137 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-a78c73e5-1964-9b61-3f1e-339e900b4a4a-79aed137 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f3c87fcf-3b9d-03bc-1e0c-b2f1fa56b88d-79aed137 {
  justify-self: start;
}

#w-node-div-block-9-79aed137 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-cee3a43a-250a-dd64-b530-eafabcb27a87-79aed137 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto start;
}

#w-node-_0a24f1cd-86d6-a98f-228c-75388c1fcff8-79aed137, #w-node-_4626f0cb-8f63-9c8a-f588-e1b6fb5a2652-79aed137, #w-node-f25112bd-2e0e-61ce-10a5-ba4ac3b2cd25-79aed137, #w-node-b7de41aa-4642-4a5c-5252-91377ffe58ac-79aed137, #w-node-a2091393-2259-3b5a-3260-77f68c8f390b-79aed137, #w-node-_7ff58791-f6d9-1798-b293-28c102bfc868-79aed137, #w-node-_434d8159-74ec-96d7-fd5f-6ee9bb770907-79aed137 {
  place-self: auto start;
}

#w-node-_6e6bd133-a06b-b070-bd1a-306a26832b56-79aed137, #w-node-_8ec0c366-ec2f-ce9d-9920-032ad18c40f8-79aed137, #w-node-beafebf7-9aab-987d-e812-bed8343f7703-79aed137, #w-node-_6907a0d6-ee45-7e11-d439-0d6302c0319a-79aed137, #w-node-fb7bdd81-bdbf-f4cb-605b-b03ef123780f-79aed137, #w-node-d0b69240-f480-743d-cbb4-9db8891971a8-79aed137, #w-node-a75fa876-5f27-a6a3-5afa-e40ab8791534-79aed137, #w-node-_093b3359-4057-c625-b5fb-265ef84a68cb-79aed137, #w-node-_151bbf62-7147-9719-1e97-b08715f6e6fc-79aed137 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto start;
}

#w-node-image-79aed137, #w-node-_8fdb0733-9c0b-9d9a-d4ac-47309542a143-79aed137 {
  justify-self: center;
}

#w-node-_9ceeceb3-9d77-bb84-db99-21a9c4ee7d1b-5eaed13f, #w-node-a582ab6a-425d-c267-82a8-81e74f43f20c-15aed144, #w-node-_185e63f5-9308-697b-56ef-ac8ae3c3146b-15aed144 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-div-block-15-79aed137 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-div-block-15-9eaed13d {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-div-block-5-79aed137 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-div-block-6-79aed137, #w-node-div-block-9-79aed137 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-da92ec24-0a93-58e4-1a73-58ed5b0e2fba-5b0e2fb7, #w-node-_9ceeceb3-9d77-bb84-db99-21a9c4ee7d1b-5eaed13f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5d8d3650-4899-27e9-210f-0b237daab39a-d9aed140 {
    order: -9999;
  }

  #w-node-a582ab6a-425d-c267-82a8-81e74f43f20c-15aed144, #w-node-_185e63f5-9308-697b-56ef-ac8ae3c3146b-15aed144 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-div-block-7-79aed137 {
    justify-self: auto;
  }

  #w-node-div-block-15-79aed137 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


