:root {
  --background: #f3f3f3;
  --paragraphs: #111213b3;
  --heading: #111213;
  --accent-a: #fe8f57;
  --shadow-a: #1112130a;
  --white: white;
  --accent-c: #1a83ff;
  --accent-d: #0eb579;
  --shadow-b: #1112131f;
  --gradient-a1: #f6d365;
  --gradient-a2: #ff7952;
  --gradient-c2: #66a6ff;
  --gradient-c1: #89f7fe;
  --gradient-d2: #29fb96;
  --gradient-d1: #38d7cd;
  --accent-b: #ff440f;
  --gradient-b1: #ff7a22;
  --gradient-b2: #ff4ab9;
  --border: #11121326;
}

.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-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--background);
  color: var(--paragraphs);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

h1 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 33px;
  font-size: 84px;
  font-weight: 800;
  line-height: 108%;
}

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

h3 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 800;
  line-height: 115%;
}

h4 {
  color: var(--heading);
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 800;
  line-height: 120%;
}

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

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
}

p {
  margin-bottom: 33px;
}

a {
  text-decoration: none;
}

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

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

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

em {
  font-style: italic;
}

blockquote {
  border-left: 2px solid var(--accent-a);
  color: var(--heading);
  margin-bottom: 33px;
  margin-left: 18px;
  padding: 0 22px;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 170%;
}

figure {
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

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

.link {
  border-bottom: 2px solid var(--accent-c);
  color: var(--accent-c);
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  border-bottom-color: var(--accent-d);
  color: var(--accent-d);
}

.rich-text-block {
  max-width: 780px;
  margin: 70px auto 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.rich-text-block a {
  border-bottom: 2px solid var(--accent-c);
  color: var(--accent-c);
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  border-bottom-color: var(--accent-d);
  color: var(--accent-d);
}

.section-hero {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 200px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

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

.content {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.content.narrow {
  max-width: 740px;
}

.content.ko-fi {
  max-width: 100%;
}

.content.manifesto {
  margin-top: 60px;
}

.content.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #f3f3f3b3;
  border-bottom: 1px solid #11121300;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 22px 35px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

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

.logo {
  height: 40px;
}

.brand {
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: 5px;
  display: flex;
}

.nav-link {
  color: #11121380;
  padding: 14px 20px 14px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

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

.nav-link.w--current {
  color: #11121380;
}

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

.nav-link.hide {
  display: block;
}

.nav-link.icon {
  padding-left: 12px;
  padding-right: 10px;
}

.nav-menu {
  margin-right: 20px;
}

.nav-button {
  background-color: var(--heading);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 11px 25px;
  text-decoration: none;
  display: flex;
}

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

.button-icon {
  object-fit: contain;
  width: 24px;
  height: 24px;
  margin-left: 0;
  margin-right: 10px;
}

.button-text-nav {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
}

.button-text-nav.read {
  color: var(--heading);
  font-size: 14px;
}

.block-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.heading-hero {
  max-width: 880px;
}

.heading-hero.course {
  max-width: 76%;
}

.text-accent {
  background-image: linear-gradient(149deg, var(--gradient-a1), var(--gradient-a2));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-accent.blue {
  background-image: linear-gradient(149deg, var(--gradient-c2), var(--gradient-c1));
}

.text-accent.green {
  background-image: linear-gradient(149deg, var(--gradient-d2), var(--gradient-d1));
}

.paragraph-large {
  max-width: 625px;
  margin-bottom: 38px;
  font-size: 20px;
  font-weight: 500;
  line-height: 170%;
}

.paragraph-large.business-hero {
  margin-top: 38px;
  margin-bottom: 0;
}

.paragraph-large.course {
  max-width: 76%;
  margin-bottom: 32px;
}

.paragraph-large.course.hero {
  margin-top: 32px;
  margin-bottom: 32px;
}

.button {
  background-color: var(--white);
  box-shadow: 0 22px 40px -5px var(--shadow-b);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 22px 38px;
  text-decoration: none;
  display: flex;
}

.button.dark {
  background-color: var(--heading);
  box-shadow: none;
}

.button.dark.center {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

.button.hide {
  display: none;
}

.button-text {
  color: var(--heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

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

.upgrade-version {
  text-align: left;
  background-color: #d9d9d959;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
}

.text-upgrade {
  border-right: 1px solid var(--background);
  color: #11121380;
  margin-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.link-upgrade {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-link-upgrade {
  color: var(--heading);
  margin-right: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.icon-upgrade {
  object-fit: contain;
  width: 16px;
  height: 16px;
}

.lottie-hero {
  z-index: -10;
  filter: blur(60px);
  width: 100%;
  position: absolute;
  inset: 0%;
  transform: scale(1.1);
}

.app-screen-hero {
  grid-column-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
}

.app-screen-hero.hide {
  display: block;
}

.image-app-screen {
  box-shadow: 0 50px 70px 0 var(--shadow-b);
  border-radius: 48px;
  max-width: 80%;
}

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

.app-hero-a {
  margin-left: 50px;
  margin-right: -50px;
  transform: rotate(-11deg);
}

.app-hero-b {
  margin-top: 90px;
  margin-left: -60px;
  transform: rotate(11deg);
}

.section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 92px 25px;
  display: flex;
}

.section.hide {
  display: block;
}

.section.business-form {
  padding-top: 0;
}

.section.course {
  padding-top: 32px;
  padding-bottom: 32px;
}

.heading {
  max-width: 624px;
}

.block-heading {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.block-heading.margin {
  margin-bottom: 22px;
}

.block-heading.margin.hero {
  margin-top: 32px;
}

.paragraph {
  max-width: 675px;
}

.paragraph.hide {
  display: none;
}

.subtitle {
  color: var(--accent-a);
  background-color: #fe8f5726;
  border-radius: 50px;
  margin-bottom: 8px;
  padding: 6px 15px 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.subtitle.accent-b {
  color: var(--accent-b);
  background-color: #ff440f26;
}

.subtitle.accent-b.hide {
  display: none;
}

.subtitle.accent-c {
  color: var(--accent-c);
  background-color: #1a83ff26;
}

.subtitle.accent-d {
  color: var(--accent-d);
  background-color: #0eb57926;
}

.grid-features {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  margin-top: 20px;
}

.feature {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 45px 55px;
  display: flex;
}

.feature.small {
  padding: 45px 35px 50px;
}

.feature.data {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.image-feature {
  height: 70%;
  max-height: 100%;
  margin-bottom: 40px;
  display: block;
}

.image-feature.values {
  height: 134px;
  display: block;
}

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

.block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  display: flex;
}

.lottie-animation {
  z-index: -10;
  filter: blur(40px);
  width: 100%;
  position: absolute;
  inset: 0%;
  transform: scale(1.3);
}

.lottie-animation.contact {
  margin-bottom: 60px;
}

.app-screen {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 670px;
  display: flex;
  position: relative;
}

.app-screen.course {
  min-height: 230px;
}

.app-left {
  transform: rotate(-11deg);
}

.app-right {
  transform: rotate(11deg);
}

.overflow {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

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

.icon-check {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  object-fit: contain;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  padding: 10px;
}

.text-check {
  margin-left: 18px;
  padding-top: 3px;
}

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

.block-check {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-steps {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  margin-top: 60px;
}

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

.image-step {
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 298px;
}

.image-step.hide {
  display: block;
}

.block-image-step {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 58px;
  display: flex;
  position: relative;
}

.step-number-bg {
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: absolute;
  bottom: -35px;
}

.step-number {
  background-image: linear-gradient(140deg, var(--gradient-a1), var(--gradient-a2));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 30px;
  font-weight: 800;
  line-height: 120%;
}

.step-number.accent-c {
  background-image: linear-gradient(140deg, var(--gradient-c1), var(--gradient-c2));
}

.step-number.accent-b {
  background-image: linear-gradient(140deg, var(--gradient-b1), var(--gradient-b2));
}

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

.block-text-step {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

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

.plan {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 55px 65px 65px;
  display: flex;
}

.plan.accent {
  background-image: linear-gradient(135deg, var(--gradient-b1), var(--gradient-b2));
}

.plan.accent.hide {
  display: none;
}

.plan.accent.blue {
  background-image: linear-gradient(135deg, var(--gradient-c1), var(--gradient-c2));
}

.plan.accent.green {
  background-image: linear-gradient(135deg, var(--gradient-d1), var(--gradient-d2));
}

.heading-plan {
  margin-bottom: 8px;
  font-weight: 500;
}

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

.price {
  margin-bottom: 30px;
  font-size: 74px;
  line-height: 100%;
}

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

.paragraph-plan.white {
  color: #ffffffb3;
}

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

.circle-plan {
  background-color: var(--heading);
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
  margin-right: 18px;
}

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

.heading-features-plan {
  margin-bottom: 0;
}

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

.block-features-plan {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 44px;
  display: flex;
}

.subscript {
  letter-spacing: 0;
  font-size: 30px;
  font-weight: 500;
}

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

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

.review {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 45px;
  display: flex;
}

.review.hide {
  display: none;
}

.review.accent {
  background-image: linear-gradient(135deg, #38d7cd, #38d7cd 0%, #29fb96);
}

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

.client-name {
  color: var(--heading);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  display: block;
}

.client-info {
  color: var(--paragraphs);
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  display: block;
}

.icon-star {
  flex: none;
  width: 18px;
  height: 18px;
}

.stars {
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 17px;
  display: block;
}

.section-footer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 0;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

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

.block-action.hide {
  display: none;
}

.logo-app {
  width: 126px;
  height: 126px;
  margin-bottom: 30px;
}

.heading-action {
  max-width: 960px;
  margin-bottom: 33px;
  font-size: 84px;
  line-height: 108%;
}

.block-downloads {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-download {
  background-color: var(--white);
  box-shadow: 0 22px 40px -5px var(--shadow-b);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 18px 38px;
  text-decoration: none;
  display: flex;
}

.button-download.read {
  margin-top: 16px;
  padding-left: 38px;
  padding-right: 38px;
}

.button-download.read.professionals {
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}

.icon-download {
  height: 34px;
}

.lottie-footer {
  z-index: -10;
  filter: blur(40px);
  transform-origin: 50% 70%;
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.footer {
  grid-column-gap: 18px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 174px;
  margin-bottom: 20px;
  display: flex;
}

.footer.hide {
  text-align: center;
  width: 100%;
  display: block;
}

.link-footer {
  clear: both;
  color: #11121366;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

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

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

.circle-footer {
  background-color: #11121366;
  border-radius: 50%;
  flex: none;
  width: 5px;
  height: 5px;
  margin: 10px;
}

.circle-footer.hide {
  display: none;
}

.block-include {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 90px;
  display: flex;
}

.grid-include {
  grid-column-gap: 35px;
  grid-row-gap: 45px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.heading-include {
  margin-bottom: 50px;
}

.grid-faq {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  align-items: start;
}

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

.accordion-item {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 20px;
}

.accordion-header {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 40px 24px 30px;
  display: flex;
}

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

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

.icon-arrow {
  object-fit: contain;
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

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

.grid-features-small {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
  margin-top: 20px;
}

.icon-feature {
  width: 36px;
  height: 36px;
  margin: 0 auto 20px;
  display: block;
}

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

.collection-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-blog-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  min-height: 370px;
}

.block-blog {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px;
  display: flex;
}

.data {
  color: var(--accent-a);
  background-color: #fe8f5726;
  border-radius: 50px;
  margin-bottom: 8px;
  padding: 6px 15px 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.link-heading-blog {
  margin-bottom: 24px;
  text-decoration: none;
}

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

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

.empty-state {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 20px;
  padding: 20px 30px;
}

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

.image-blog {
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  border-radius: 20px;
  width: 100%;
  margin-top: 32px;
  display: block;
}

.grid-contact {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  background-color: #ffffff8c;
  border-radius: 20px;
  grid-template-rows: auto;
  margin-top: 100px;
  position: relative;
}

.grid-contact.business-form {
  margin-top: 0;
}

.contact-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 65px 70px;
  display: flex;
}

.contact-form {
  background-color: var(--white);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 55px;
  display: flex;
}

.contact-form.short {
  border-radius: 20px;
  width: 100%;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 50px 70px #1112131f;
}

.contact-form.short.ce-course {
  max-width: 625px;
  margin-bottom: 32px;
}

.block-contact-info {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.icon-contact {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  object-fit: contain;
  border-radius: 50px;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  padding: 12px;
}

.heading-contact-info {
  margin-top: 8px;
  margin-bottom: 8px;
}

.heading-contact {
  max-width: 420px;
}

.field-label {
  color: var(--heading);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 10px;
  height: 55px;
  margin-bottom: 24px;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 130%;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94);
}

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

.text-field::placeholder {
  color: #11121380;
}

.form {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.submit-button {
  background-color: var(--heading);
  color: var(--white);
  border-radius: 50px;
  margin-top: 12px;
  padding: 22px 38px;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.textarea {
  border: 1px solid var(--border);
  color: var(--heading);
  border-radius: 10px;
  min-height: 170px;
  max-height: 250px;
  margin-bottom: 24px;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 130%;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94);
}

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

.textarea::placeholder {
  color: #11121380;
}

.success-message {
  text-align: center;
  background-color: #0eb57926;
  border-radius: 10px;
  padding: 20px 30px;
}

.text-success {
  color: var(--accent-d);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.text-error {
  color: var(--accent-b);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.error-message {
  text-align: center;
  background-color: #ff440f26;
  border-radius: 10px;
  margin-top: 18px;
  padding: 20px 30px;
}

.form-block {
  margin-bottom: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 140px 25px 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.block-color {
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 120px;
  padding: 20px;
  display: flex;
}

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

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

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

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

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

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

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

.block-color.gradient-a {
  background-image: linear-gradient(150deg, var(--gradient-a1), var(--gradient-a2));
}

.block-color.gradient-b {
  background-image: linear-gradient(150deg, var(--gradient-b1), var(--gradient-b2));
}

.block-color.gradient-c {
  background-image: linear-gradient(150deg, var(--gradient-c1), var(--gradient-c2));
}

.block-color.gradient-d {
  background-image: linear-gradient(150deg, var(--gradient-d1), var(--gradient-d2));
}

.block-color.shadow-a {
  background-color: var(--shadow-a);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
}

.block-color.shadow-b {
  background-color: var(--shadow-b);
  box-shadow: 0 23px 40px -5px var(--shadow-b);
}

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

.text-color {
  color: var(--heading);
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
}

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

.hex-color {
  color: #11121380;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.hex-color.white {
  color: #ffffff80;
}

.template-info {
  grid-column-gap: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 30px;
  display: flex;
}

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

.image-licensing {
  border-radius: 20px;
  width: 100%;
}

.lottie-licensing {
  filter: blur(30px);
  width: 100%;
}

.template-font {
  margin-bottom: 0;
}

.grid-icon-licensing {
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: auto;
  place-content: start;
  place-items: start;
}

.icon-licensing {
  background-color: var(--white);
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  object-fit: contain;
  border-radius: 50px;
  width: 78px;
  height: 78px;
  padding: 20px;
}

.image-app-hero {
  box-shadow: 0 50px 70px 0 var(--shadow-b);
  border-radius: 48px;
  max-width: 80%;
}

.footer-paragraph {
  justify-content: center;
  display: flex;
}

.div-block {
  clear: none;
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  display: flex;
}

.legal-doc {
  max-width: 80%;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
}

.icon-check-2 {
  object-fit: contain;
  background-color: #fff;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  padding: 10px;
  box-shadow: 0 18px 35px -5px #1112130a;
}

.image-app-screen-2 {
  border-radius: 48px;
  max-width: 80%;
  box-shadow: 0 50px 70px #1112131f;
}

.image-app-screen-2.manifesto {
  max-width: 90%;
}

.subtitle-2 {
  color: #fe8f57;
  background-color: #fe8f5726;
  border-radius: 50px;
  margin-bottom: 8px;
  padding: 6px 15px 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.subtitle-2.accent-d {
  color: #0eb579;
  background-color: #0eb57926;
}

.sm-icon {
  object-fit: cover;
  width: 24px;
  height: auto;
  display: inline-block;
  position: relative;
}

.header-social-link-block {
  display: inline-block;
  position: static;
}

.sm-icon-2, .sm-icon-3 {
  object-fit: cover;
  width: 32px;
  height: auto;
}

.quick-stack {
  margin-left: 10%;
  margin-right: 10%;
}

.grid-features-big {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-features-big.data {
  background-color: #ffffff26;
  grid-template-columns: 1fr;
}

.rich-text-business {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.dropdown {
  display: inline;
}

.dropdown-list {
  background-color: #f3f3f3;
  border-radius: 20px;
}

.rich-text {
  width: 70%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text h4 {
  text-transform: uppercase;
  margin-top: 60px;
}

.rich-text a {
  float: none;
  clear: none;
  direction: ltr;
  display: inline;
  position: static;
}

.rich-text p, .rich-text li {
  color: #1a1b1f91;
}

.heading-course {
  max-width: 100%;
  margin-top: 64px;
  margin-bottom: 64px;
}

.block-course {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

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

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-title {
  max-width: 95%;
}

.accordion-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.base-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.accordion-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 17px;
  line-height: 24px;
}

.accordion-item-2 {
  box-shadow: 0 18px 35px -5px var(--shadow-a);
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 20px 45px;
  position: static;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 24px;
  min-height: 24px;
  padding: 10px 0;
  display: flex;
}

.section-2 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.image-2 {
  min-width: 24px;
  min-height: 24px;
}

.submit-button-2 {
  color: #fff;
  background-color: #111213;
  border-radius: 50px;
  margin-top: 12px;
  padding: 22px 38px;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.field-label-2 {
  color: #111213;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.text-error-2 {
  color: #ff440f;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.contact-form-2 {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 55px;
  display: flex;
}

.text-success-2 {
  color: #0eb579;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.text-field-2 {
  color: #111213;
  background-color: #fff;
  border: 1px solid #11121326;
  border-radius: 10px;
  height: 55px;
  margin-bottom: 24px;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 130%;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94);
}

.text-field-2:focus {
  border-color: #11121380;
}

.text-field-2::placeholder {
  color: #11121380;
}

.grid-contact-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ffffff8c;
  border-radius: 20px;
  grid-template-rows: auto;
  margin-top: 100px;
  position: relative;
  box-shadow: 0 18px 35px -5px #1112130a;
}

@media screen and (min-width: 1280px) {
  .section-2 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 1920px) {
  .rich-text {
    display: block;
  }

  .rich-text li {
    font-size: 20px;
  }

  .base-container {
    max-width: 1600px;
  }
}

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

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 34px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 21px;
  }

  .rich-text-block {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .section-hero {
    padding-top: 170px;
  }

  .nav-link {
    color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 34px;
  }

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

  .nav-menu {
    background-color: var(--heading);
    width: 100%;
    height: 100vh;
    margin-right: 0;
    padding: 25px;
    position: fixed;
    inset: 0%;
  }

  .menu-button {
    z-index: 500;
    background-color: var(--white);
    box-shadow: 0 22px 40px -5px var(--shadow-b);
    color: var(--heading);
    border-radius: 50px;
    margin-left: 8px;
    padding: 14px;
    font-size: 22px;
    line-height: 100%;
    transition: color .5s cubic-bezier(.77, 0, .175, 1), background-color .5s cubic-bezier(.77, 0, .175, 1);
  }

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

  .heading-hero {
    max-width: 660px;
  }

  .button.dark.center {
    text-align: center;
  }

  .lottie-hero {
    filter: blur(45px);
  }

  .app-screen-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .image-app-screen {
    border-radius: 43px;
    max-width: 37vw;
  }

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

  .heading {
    max-width: 472px;
  }

  .block-heading {
    margin-bottom: 10px;
  }

  .block-heading.margin {
    margin-bottom: 16px;
  }

  .grid-features {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 40px 35px 45px;
  }

  .feature.small {
    padding: 35px 25px 40px;
  }

  .image-feature {
    height: 110px;
  }

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

  .block {
    padding: 30px;
  }

  .lottie-animation {
    filter: blur(30px);
  }

  .app-screen {
    min-height: 550px;
  }

  .grid-steps {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .image-step {
    height: 24vw;
  }

  .block-image-step {
    margin-bottom: 52px;
  }

  .step-number-bg {
    width: 60px;
    height: 60px;
    bottom: -30px;
  }

  .step-number {
    font-size: 26px;
  }

  .block-text-step {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-plans {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .plan {
    width: 80%;
    padding: 40px 50px 50px;
  }

  .price {
    font-size: 64px;
  }

  .subscript {
    font-size: 26px;
  }

  .grid-reviews {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .block-reviews {
    grid-row-gap: 15px;
  }

  .review {
    padding: 35px;
  }

  .section-footer {
    padding-top: 72px;
  }

  .heading-action {
    max-width: 730px;
    font-size: 64px;
  }

  .lottie-footer {
    filter: blur(30px);
  }

  .footer {
    margin-top: 144px;
  }

  .block-include {
    margin-top: 80px;
  }

  .grid-include {
    grid-column-gap: 25px;
    grid-row-gap: 35px;
  }

  .grid-faq {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .block-faq {
    grid-row-gap: 15px;
  }

  .grid-features-small {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
  }

  .collection-list {
    grid-row-gap: 50px;
  }

  .link-blog-image {
    min-height: 340px;
  }

  .block-blog {
    padding: 50px;
  }

  .image-blog {
    margin-top: 12px;
  }

  .contact-text, .contact-form {
    padding: 50px;
  }

  .image-app-hero {
    border-radius: 43px;
    max-width: 40vw;
  }

  .image-app-screen-2 {
    border-radius: 43px;
    max-width: 37vw;
  }

  .rich-text-business {
    width: 90%;
  }

  .rich-text {
    width: 80%;
  }

  .rich-text img {
    display: block;
  }

  .accordion-wrapper, .accordion-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .contact-form-2 {
    padding: 50px;
  }
}

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

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .rich-text-block {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .section-hero {
    padding-top: 160px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    padding: 16px 20px;
  }

  .nav-link {
    font-size: 28px;
  }

  .nav-menu {
    padding: 20px;
  }

  .heading-hero {
    max-width: 510px;
  }

  .paragraph-large {
    max-width: 550px;
    font-size: 18px;
  }

  .lottie-hero {
    filter: blur(35px);
  }

  .app-screen-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .image-app-screen {
    border-radius: 6vw;
    max-width: 45vw;
  }

  .section {
    padding: 65px 20px;
  }

  .heading {
    max-width: 386px;
  }

  .block-heading {
    margin-bottom: 6px;
  }

  .block-heading.margin {
    margin-bottom: 12px;
  }

  .paragraph {
    max-width: 530px;
  }

  .grid-features {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph-feature {
    max-width: 570px;
  }

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

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

  .lottie-animation {
    filter: blur(35px);
  }

  .app-screen {
    min-height: 450px;
  }

  .block-check {
    max-width: 550px;
  }

  .grid-steps {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .image-step {
    height: 64vw;
  }

  .grid-plans {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan {
    width: 100%;
  }

  .price {
    font-size: 56px;
  }

  .paragraph-plan {
    max-width: 500px;
  }

  .grid-reviews {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .logo-app {
    width: 100px;
    height: 100px;
  }

  .heading-action {
    max-width: 570px;
    font-size: 50px;
  }

  .block-downloads {
    grid-column-gap: 12px;
  }

  .button-download {
    padding: 16px 30px;
  }

  .button-download.read {
    padding-left: 34px;
    padding-right: 34px;
  }

  .lottie-footer {
    filter: blur(20px);
    transform: scale(1.5);
  }

  .footer {
    grid-column-gap: 6px;
    margin-top: 130px;
  }

  .block-include {
    margin-top: 70px;
  }

  .grid-include, .grid-faq {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-features-small {
    grid-template-columns: 1fr 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .collection-list-wrapper {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .link-blog-image {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }

  .image-blog {
    margin-top: 0;
  }

  .grid-contact {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
  }

  .utility-page-wrap {
    padding-top: 120px;
    padding-bottom: 60px;
  }

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

  .template-info {
    padding: 20px;
  }

  .grid-licensing {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .image-app-hero {
    border-radius: 5vw;
    max-width: 40vw;
  }

  .image-app-screen-2 {
    border-radius: 6vw;
    max-width: 45vw;
  }

  .rich-text {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-2.without-top-spacing {
    padding-top: 0;
  }

  .contact-form-2 {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
  }

  .grid-contact-2 {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .rich-text-block {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

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

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

  .logo {
    height: 36px;
  }

  .nav-button {
    display: none;
  }

  .button-center {
    padding-left: 0;
  }

  .button-text-nav.read {
    font-size: 14px;
  }

  .block-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-hero {
    max-width: 430px;
  }

  .paragraph-large {
    max-width: 360px;
  }

  .paragraph-large.business-hero {
    text-align: left;
    width: 90%;
  }

  .paragraph-large.course {
    max-width: 90%;
  }

  .button-text.white {
    text-align: center;
    font-size: 14px;
  }

  .upgrade-version {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-upgrade {
    margin-right: 12px;
    padding-right: 12px;
  }

  .lottie-hero {
    filter: blur(25px);
    transform: scale(1.4);
  }

  .app-screen-hero {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .image-app-screen {
    border-radius: 7vw;
    max-width: 80vw;
  }

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

  .heading {
    max-width: 322px;
  }

  .feature.data {
    background-color: #fff;
    margin-bottom: 0;
    padding: 10px;
  }

  .block {
    padding-bottom: 0;
  }

  .lottie-animation {
    filter: blur(25px);
  }

  .app-screen {
    min-height: 300px;
  }

  .paragraph-step {
    max-width: 90%;
  }

  .block-text-step {
    padding-left: 0;
    padding-right: 0;
  }

  .plan {
    padding: 35px 35px 40px;
  }

  .price {
    font-size: 42px;
  }

  .subscript {
    font-size: 21px;
  }

  .section-footer {
    padding-top: 60px;
  }

  .heading-action {
    font-size: 42px;
  }

  .block-downloads {
    grid-row-gap: 16px;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .button-download {
    max-width: 90%;
  }

  .button-download.read {
    max-width: 100%;
    margin-top: 0;
  }

  .lottie-footer {
    filter: blur(10px);
  }

  .footer {
    grid-row-gap: 6px;
    flex-direction: column;
    margin-top: 120px;
  }

  .block-include {
    margin-top: 60px;
  }

  .accordion-header {
    padding: 20px 25px;
  }

  .accordion-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .paragraph-accordion {
    margin-bottom: 25px;
  }

  .grid-features-small {
    grid-template-columns: 1fr;
  }

  .collection-list {
    grid-row-gap: 40px;
  }

  .link-blog-image {
    min-height: 60vw;
  }

  .block-blog, .contact-text, .contact-form {
    padding: 35px;
  }

  .contact-form.short {
    margin-left: 0;
  }

  .submit-button {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 12px;
  }

  .utility-page-wrap {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .space {
    margin-top: 60px;
    margin-bottom: 60px;
  }

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

  .template-info {
    grid-row-gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .lottie-licensing {
    filter: blur(20px);
  }

  .grid-icon-licensing {
    grid-template-columns: auto auto auto;
  }

  .image-app-hero {
    border-radius: 6vw;
    max-width: 44vw;
  }

  .image-app-screen-2 {
    border-radius: 7vw;
    max-width: 80vw;
  }

  .grid-features-big {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .rich-text-business {
    width: 90%;
  }

  .block-quote {
    margin-left: 12px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 18px;
  }

  .dropdown-list.w--open {
    background-color: #141414;
  }

  .image {
    border-radius: 20px;
  }

  .rich-text {
    width: 80%;
    max-width: none;
  }

  .rich-text h2 {
    width: 80%;
  }

  .accordion-item-2 {
    padding: 10px 20px;
  }

  .submit-button-2 {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 12px;
  }

  .contact-form-2 {
    padding: 35px;
  }
}

#w-node-_773c0ba1-1e33-255b-1c34-dbd4bb328a6d-d09ad33c, #w-node-cc06960c-2c80-e9a3-06e1-9848d505dbca-d09ad33c, #w-node-_188245b9-2e3b-aafc-aa49-7845d0577792-d09ad33c, #w-node-_91e16b32-12b8-6131-b40d-1b495a538e07-d09ad33c, #w-node-_91e16b32-12b8-6131-b40d-1b495a538e12-d09ad33c, #w-node-_91e16b32-12b8-6131-b40d-1b495a538e1d-d09ad33c, #w-node-_57d9c83f-41ae-72d0-fd38-6177e02bfa60-d09ad33c, #w-node-_1ae0d1b2-4c95-4897-fea8-0e0f0e521cf9-d09ad33c, #w-node-ef6d0e76-a027-c23d-99c3-c53d307ab0e4-d09ad33c, #w-node-_73f3d36d-1afb-0abd-5d6a-81d52cae3a35-d09ad33c, #w-node-_6e2ef8b4-2e36-dff9-c8ad-24e8d56cf654-d09ad33c, #w-node-_6e2ef8b4-2e36-dff9-c8ad-24e8d56cf65e-d09ad33c, #w-node-_6e2ef8b4-2e36-dff9-c8ad-24e8d56cf668-d09ad33c, #w-node-e4b635e8-34bc-5a8c-f9c9-5595f6b22e1a-d09ad33c, #w-node-_7e1df649-7d04-012b-20f4-2495ee4d5508-d09ad33c, #w-node-d0dff843-7d72-d4c2-bec5-0f5e98a3496e-d09ad33c, #w-node-_2894467a-5e92-d0b8-5d78-6bdf92e1c603-d8a5d981, #w-node-_2894467a-5e92-d0b8-5d78-6bdf92e1c608-d8a5d981 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2894467a-5e92-d0b8-5d78-6bdf92e1c615-d8a5d981 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f4008d5e-e9e7-4c4a-54b7-dee3ecf824fc-ecf824f2, #w-node-f4008d5e-e9e7-4c4a-54b7-dee3ecf82502-ecf824f2, #w-node-f4008d5e-e9e7-4c4a-54b7-dee3ecf82508-ecf824f2, #w-node-_7d0dd136-63d9-0d09-77de-efc8dc9be531-dc9be529, #w-node-_6c31c9df-36e7-0abd-f993-861cf4206179-d09ad342, #w-node-_6c31c9df-36e7-0abd-f993-861cf420617e-d09ad342, #w-node-_35f9057d-322c-fec0-0b17-633c3bf26338-d09ad342, #w-node-_35f9057d-322c-fec0-0b17-633c3bf2633e-d09ad342, #w-node-_35f9057d-322c-fec0-0b17-633c3bf26344-d09ad342, #w-node-_8709b77e-a95b-395b-e9ca-e92e95c87609-d09ad342, #w-node-_8709b77e-a95b-395b-e9ca-e92e95c8760f-d09ad342, #w-node-_8709b77e-a95b-395b-e9ca-e92e95c87615-d09ad342, #w-node-_8e87db90-128f-c19d-e814-aacfc5f7fcd1-d09ad342, #w-node-_0e95ffae-4d48-16f8-41ef-15e01902b65c-d09ad342, #w-node-_05771099-8943-b322-864a-33c0a5703c56-d09ad342, #w-node-a2e12d6f-9b39-4291-054d-77a5919ed144-d09ad342, #w-node-fc030bc7-46c1-3729-ef3f-5bbe1e689cb6-d09ad343, #w-node-_0115d616-dc25-5ffd-633f-1b82fae43ff0-d09ad343 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_60619e06-2e1d-4464-9add-56740dbfb438-d09ad343, #w-node-_5aaf5a4d-496f-c0e9-be94-71d7e6ae9c8b-d09ad343 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_93147433-25bc-095b-b941-c93c0e582637-d09ad344, #w-node-_93147433-25bc-095b-b941-c93c0e582642-d09ad344, #w-node-_93147433-25bc-095b-b941-c93c0e58264d-d09ad344, #w-node-dfa0893b-77ea-0fdb-d07b-4fa2c1ff7a7e-d09ad344, #w-node-_71c1cc19-b116-4be5-0aae-9f1f37b409dc-d09ad344, #w-node-e1075bf8-5b4e-fac5-147a-d8240e4327e2-d09ad344, #w-node-e1075bf8-5b4e-fac5-147a-d8240e4327f8-d09ad344, #w-node-cfcef84e-2752-c1ad-2ef6-001045d54442-d09ad344, #w-node-_3d204791-c30e-edea-2ce2-d57a35831224-d09ad344, #w-node-_65ec7ec5-1879-0464-7920-ccf35de192f3-d09ad346, #w-node-fd3ad874-2cf7-0088-1f95-2fffdc91a9bc-d09ad346, #w-node-_3bddfb3c-42ec-24af-3e7c-4a9fcb12a89d-d09ad346, #w-node-a724a861-4629-59c2-c99f-c411e4cd955c-d09ad346, #w-node-_064e52ca-7174-c785-e152-dd5c8cdda2ad-d09ad346, #w-node-_9416bc4a-2933-cb24-b8ee-4bdee6d27436-d09ad346, #w-node-_6292d47c-ec8e-8804-c776-1368e99ebaa1-d09ad346, #w-node-_922d6728-5110-3336-bfcd-1be6251dbc11-d09ad346, #w-node-_8f893181-45e2-7641-e097-7ca7ff714212-d09ad346, #w-node-_6bfbe7b6-a45e-b3ba-4105-649b88786278-d09ad346, #w-node-_72abf127-a9c1-236e-f07e-613bbca91e29-d09ad346, #w-node-_45b253b4-bab5-86b8-1880-575d3f7bfaf8-d09ad346, #w-node-a0cb5d8e-aa64-6149-88f0-cceb796fbab7-d09ad346, #w-node-_0c0b0000-8f49-240e-4b72-01d19abf202c-d09ad346, #w-node-_9ab68fdc-953a-9681-20f9-dffb8f0c453c-d09ad346 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1ea8f99-2a33-8fbb-8919-3d4c0b3c5ed6-d09ad346 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-c4318536-7d91-7148-6dc1-db16cd883b42-d09ad347, #w-node-e16487ae-e105-3258-37a2-b67eea05ad2d-d09ad347 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_695cf981-4567-ee01-5db2-855d761b3095-d09ad347 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-cfcef84e-2752-c1ad-2ef6-001045d54442-d09ad347, #w-node-_3d204791-c30e-edea-2ce2-d57a35831224-d09ad347, #w-node-_24b78610-34b7-ce31-8a51-d130d6884069-d09ad347, #w-node-_24b78610-34b7-ce31-8a51-d130d6884074-d09ad347, #w-node-_24b78610-34b7-ce31-8a51-d130d688407f-d09ad347, #w-node-f006c8cd-aab3-422a-00ba-d14c1d29e299-1ce0e6a1, #w-node-f006c8cd-aab3-422a-00ba-d14c1d29e2ab-1ce0e6a1, #w-node-_293cf276-a7e2-2d13-631b-2581969d6bc8-37ef7ecf, #w-node-f006c8cd-aab3-422a-00ba-d14c1d29e299-37ef7ecf, #w-node-f006c8cd-aab3-422a-00ba-d14c1d29e2ab-37ef7ecf, #w-node-db9de4d9-884d-845f-9896-a59e54644d12-54644d0c, #w-node-db9de4d9-884d-845f-9896-a59e54644d47-54644d0c, #w-node-db9de4d9-884d-845f-9896-a59e54644d7f-54644d0c, #w-node-_773c0ba1-1e33-255b-1c34-dbd4bb328a6d-100b4e2c, #w-node-cc06960c-2c80-e9a3-06e1-9848d505dbca-100b4e2c, #w-node-_188245b9-2e3b-aafc-aa49-7845d0577792-100b4e2c, #w-node-ac58707c-f459-fcbc-e39b-85360f95714f-100b4e2c, #w-node-ac58707c-f459-fcbc-e39b-85360f957155-100b4e2c, #w-node-ac58707c-f459-fcbc-e39b-85360f95715b-100b4e2c, #w-node-_57d9c83f-41ae-72d0-fd38-6177e02bfa60-100b4e2c, #w-node-e6871167-e55c-e659-4939-b72433ebd9da-100b4e2c, #w-node-_1ae0d1b2-4c95-4897-fea8-0e0f0e521cf9-100b4e2c, #w-node-_4e14f789-3257-fd03-13ec-508de521ad11-100b4e2c, #w-node-_9a2a3ad6-8794-e1ff-0b56-b518871202c2-100b4e2c, #w-node-_774e24c4-61a5-ad14-2ea1-a604782b9964-100b4e2c, #w-node-_1ce25a80-f217-e872-e2a1-664518863fb5-100b4e2c, #w-node-d0dff843-7d72-d4c2-bec5-0f5e98a3496e-100b4e2c, #w-node-_73f3d36d-1afb-0abd-5d6a-81d52cae3a35-100b4e2c, #w-node-ef6d0e76-a027-c23d-99c3-c53d307ab0e4-100b4e2c, #w-node-c759cafd-ee36-8557-1740-4daa08184956-100b4e2c, #w-node-_8297eb6c-7812-ae34-36bd-bce8505f3691-100b4e2c, #w-node-e11cd6af-013d-69f5-934e-83dfaaeec25b-100b4e2c, #w-node-_82c2e099-be3b-8c45-e70b-f943ed8ad41d-100b4e2c, #w-node-_82c2e099-be3b-8c45-e70b-f943ed8ad432-100b4e2c, #w-node-_82c2e099-be3b-8c45-e70b-f943ed8ad441-100b4e2c, #w-node-_978f2103-e94a-dfe6-25c6-5105d9eba9a9-100b4e2c, #w-node-_978f2103-e94a-dfe6-25c6-5105d9eba9b3-100b4e2c, #w-node-_978f2103-e94a-dfe6-25c6-5105d9eba9bd-100b4e2c, #w-node-_03465d22-1364-06a3-fde6-b7874d030b70-100b4e2c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_528a35a7-3e8c-980f-df02-fe237bbad17e-100b4e2c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-f1ea8f99-2a33-8fbb-8919-3d4c0b3c5ed6-d09ad346, #w-node-_695cf981-4567-ee01-5db2-855d761b3095-d09ad347, #w-node-_528a35a7-3e8c-980f-df02-fe237bbad17e-100b4e2c {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e6871167-e55c-e659-4939-b72433ebd9da-d09ad33c, #w-node-ef6d0e76-a027-c23d-99c3-c53d307ab0fa-d09ad33c, #w-node-_73f3d36d-1afb-0abd-5d6a-81d52cae3a4b-d09ad33c, #w-node-e4b635e8-34bc-5a8c-f9c9-5595f6b22e16-d09ad33c, #w-node-_7e1df649-7d04-012b-20f4-2495ee4d551e-d09ad33c, #w-node-d0dff843-7d72-d4c2-bec5-0f5e98a3496a-d09ad33c, #w-node-_2894467a-5e92-d0b8-5d78-6bdf92e1c608-d8a5d981, #w-node-_7d0dd136-63d9-0d09-77de-efc8dc9be52c-dc9be529, #w-node-_6c31c9df-36e7-0abd-f993-861cf420617e-d09ad342, #w-node-_0e95ffae-4d48-16f8-41ef-15e01902b672-d09ad342, #w-node-a2e12d6f-9b39-4291-054d-77a5919ed15a-d09ad342, #w-node-e16487ae-e105-3258-37a2-b67eea05ad2d-d09ad347, #w-node-f006c8cd-aab3-422a-00ba-d14c1d29e2ab-1ce0e6a1, #w-node-f006c8cd-aab3-422a-00ba-d14c1d29e2ab-37ef7ecf, #w-node-e6871167-e55c-e659-4939-b72433ebd9da-100b4e2c, #w-node-_4e14f789-3257-fd03-13ec-508de521ad27-100b4e2c, #w-node-_774e24c4-61a5-ad14-2ea1-a604782b9974-100b4e2c, #w-node-_1ce25a80-f217-e872-e2a1-664518863fcb-100b4e2c, #w-node-d0dff843-7d72-d4c2-bec5-0f5e98a3496a-100b4e2c, #w-node-ef6d0e76-a027-c23d-99c3-c53d307ab0fa-100b4e2c, #w-node-_8297eb6c-7812-ae34-36bd-bce8505f36a1-100b4e2c, #w-node-e11cd6af-013d-69f5-934e-83dfaaeec257-100b4e2c, #w-node-_03465d22-1364-06a3-fde6-b7874d030b6b-100b4e2c {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7d0dd136-63d9-0d09-77de-efc8dc9be52c-dc9be529 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_60619e06-2e1d-4464-9add-56740dbfb438-d09ad343, #w-node-_5aaf5a4d-496f-c0e9-be94-71d7e6ae9c8b-d09ad343 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_03465d22-1364-06a3-fde6-b7874d030b6b-100b4e2c {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


