:root {
  --background: rgb(229,226,228);
  --paragraphs: rgba(22, 22, 19, .75);
  --heading: #161613;
  --border: rgba(22, 22, 19, .13);
  --white: white;
  --link: #0868e6;
  --background-content: rgba(22, 22, 19, .04);
}

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

}

body {
  background-color: rgb(229,226,228);
  color: var(--paragraphs);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Noto Sans, sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  display: flex;
}

h1 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1em;
}

h2 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.25em;
  font-weight: 700;
  line-height: 1.13em;
}

h3 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.15em;
}

h4 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.18em;
}

h5 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.23em;
}

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.3em;
}

p {
  letter-spacing: .01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125em;
  line-height: 1.6em;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 2em;
  font-size: 1.125em;
  line-height: 1.6em;
}

li {
  padding-top: .3em;
  padding-bottom: .3em;
  padding-left: .3em;
}

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

em {
  font-style: italic;
}

blockquote {
  border-left: 2px solid var(--border);
  color: var(--heading);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  margin-left: .8em;
  padding: .2em 0 .2em 1.2em;
  font-size: 1.25em;
  line-height: 1.6em;
}

figure {
  background-color: var(--white);
  border-radius: 1.625em;
  margin-top: 2.8em;
  margin-bottom: 2.8em;
  overflow: hidden;
}

figcaption {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2.4em;
  padding-right: 2.4em;
  font-size: .94em;
  line-height: 1.6em;
}

.rich-text-block {
  width: 100%;
}

.rich-text-block h1 {
  margin-bottom: .6em;
  font-family: Noto Sans, sans-serif;
}

.rich-text-block p {
  margin-bottom: 1.3em;
  font-family: Noto Sans, sans-serif;
}

.rich-text-block h2 {
  margin-top: .9em;
  margin-bottom: .5em;
}

.rich-text-block h3 {
  margin-top: 1em;
  margin-bottom: .5em;
}

.rich-text-block h4 {
  margin-top: 1em;
  margin-bottom: .6em;
}

.rich-text-block h5 {
  margin-top: 1.2em;
  margin-bottom: .6em;
}

.rich-text-block h6 {
  margin-top: 1.6em;
  margin-bottom: .7em;
}

.rich-text-block a {
  color: var(--link);
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  color: var(--heading);
}

.link {
  color: var(--link);
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.noise {
  opacity: .7;
  mix-blend-mode: soft-light;
  background-image: url('../images/noise.png');
  background-size: auto;
  background-attachment: scroll;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-hero {
  justify-content: center;
  align-items: center;
  padding: 8.5em 2em 6.5em;
  font-family: Noto Sans, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar {
  z-index: 500;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.875em 2em 1em;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-block {
  grid-column-gap: 1em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75em;
  display: flex;
}

.nav {
  grid-column-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand {
  justify-content: center;
  align-items: center;
  padding: .3em;
  display: flex;
}

.logo {
  height: 2em;
  font-family: Noto Sans, sans-serif;
}

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

.nav-link {
  color: rgba(22, 22, 19, .7);
  padding: .7em 1.4em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.06em;
  font-weight: 500;
  line-height: 1.3em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.nav-link.w--current {
  color: rgba(22, 22, 19, .7);
  font-family: Noto Sans, sans-serif;
}

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

.nav-button {
  grid-column-gap: .3em;
  background-color: var(--white);
  border-radius: 10em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .7em 1.7em;
  text-decoration: none;
  transition: box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.nav-button:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 25px -15px rgba(22, 22, 19, .15);
}

.text-button {
  color: var(--heading);
  font-family: Noto Sans, sans-serif;
  font-size: 1.06em;
  font-weight: 500;
  line-height: 1.3em;
}

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

.icon-button {
  width: 1.25em;
  height: 1.25em;
  display: block;
}

.content {
  width: 100%;
  max-width: 75em;
  margin-left: auto;
  margin-right: auto;
}

.grid-hero {
  grid-column-gap: 2em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
}

.block-hero {
  z-index: 100;
  grid-row-gap: 2.25em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  display: flex;
  position: relative;
}

.heading-hero {
  margin-bottom: -.1em;
  font-family: Noto Sans, sans-serif;
  font-size: 5em;
  line-height: 1.06em;
}

.paragraph-hero {
  max-width: 23em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.25em;
}

.block-button {
  grid-column-gap: .9em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  grid-column-gap: .3em;
  background-color: var(--heading);
  border-radius: 10em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.2em 2em;
  text-decoration: none;
  transition: box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.button:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 35px -15px rgba(22, 22, 19, .5);
}

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

.button.white:hover {
  box-shadow: 0 25px 35px -15px rgba(22, 22, 19, .15);
}

.circle-button {
  grid-column-gap: 1.2em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  padding-right: 2em;
  display: flex;
}

.link-circle-button {
  background-color: var(--white);
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  padding: 1.2em;
  transition: padding .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.link-circle-button:hover {
  padding-left: 1.6em;
  padding-right: 1.6em;
  transform: scale(1.1);
  box-shadow: 0 25px 25px -15px rgba(22, 22, 19, .15);
}

.link-circle-button.dark {
  background-color: var(--heading);
}

.link-circle-button.dark:hover {
  box-shadow: 0 25px 25px -15px rgba(22, 22, 19, .4);
}

.gradient-hero {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/bg1.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 92em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section {
  padding: 5.5em 2em;
  position: relative;
}

.section.post {
  padding-top: 1em;
}

.grid-focus {
  grid-column-gap: 2em;
  grid-row-gap: 0em;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-rows: 1fr;
}

.heading {
  max-width: 9.5em;
  font-family: Noto Sans, sans-serif;
}

.block-heading {
  grid-row-gap: .9em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.subtitle {
  grid-column-gap: .31em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  padding: .43em 1.37em .43em 1.18em;
  display: flex;
}

.text-subtitle {
  color: var(--heading);
  font-family: Noto Sans, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
}

.icon-subtitle {
  flex: none;
  width: 1.5em;
  height: 1.5em;
  display: block;
}

.text-transparent {
  color: rgba(22, 22, 19, .35);
  font-family: Noto Sans, sans-serif;

}

.paragraph {
  max-width: 24em;
  font-family: Noto Sans, sans-serif;
}

.focus {
  z-index: 100;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 50vh;
  padding-top: 9em;
  padding-bottom: 9em;
  display: flex;
  position: relative;
}

.app-focus {
  padding-top: 18.5em;
  padding-bottom: 18.5em;
  position: relative;
}

.app-hero {
  perspective: 1800px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.app-focus---sticky {
  perspective: 1800px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 50vh;
  transform: none;
}

.app-focus---content {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 20em;
  display: flex;
  position: relative;
}

.image-app---focus-1 {
  z-index: 10;
  border-radius: 1.9em;
  max-height: 90vh;
  position: relative;
}

.image-app---focus-2 {
  z-index: 20;
  transform-style: preserve-3d;
  border-radius: 1.9em;
  max-height: 90vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-app---focus-3 {
  z-index: 30;
  transform-style: preserve-3d;
  border-radius: 1.9em;
  max-height: 90vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid-functions {
  grid-column-gap: 1.125em;
  grid-row-gap: 1.125em;
  grid-template-columns: 1fr 1fr;
}

.functions-large {
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  justify-content: flex-start;
  align-items: center;
  padding: 5.8em 5em;
  display: flex;
}

.block-functions-large {
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 50%;
  padding-right: 2em;
  display: flex;
}

.content-wide {
  width: 100%;
  max-width: 82.5em;
  margin-left: auto;
  margin-right: auto;
}

.image-functions-large {
  object-fit: contain;
  width: 50%;
  max-width: 32.7em;
  margin-left: auto;
  margin-right: auto;
}

.functions {
  grid-row-gap: 1.6em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5em;
  display: flex;
}

.heading-functions {
  max-width: 11em;
}

.image-functions {
  object-fit: contain;
  width: 100%;
  max-width: 26em;
  margin-bottom: -2em;
}

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

.features {
  grid-row-gap: 1.1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon-features {
  width: 2em;
  height: 2em;
  display: block;
}

.icon-features-bg {
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  justify-content: center;
  align-items: center;
  width: 5.6em;
  height: 5.6em;
  margin-bottom: .5em;
  display: flex;
}

.heading-features {
  max-width: 13em;
}

.paragraph-features {
  max-width: 19em;
  font-size: 1em;
  line-height: 1.6em;
}

.grid-testimonials {
  grid-column-gap: 1.125em;
  grid-row-gap: 1.125em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3.4em;
}

.testimonials {
  grid-row-gap: 2.5em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 30em;
  padding: 3.75em;
  display: flex;
}

.paragraph-testimonials {
  font-family: Noto Sans, sans-serif;
}

.testimonials-info {
  grid-column-gap: 1.12em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.avatar {
  object-fit: cover;
  border-radius: 100%;
  width: 4.7em;
  height: 4.7em;
}

.block-testimonials-info {
  grid-row-gap: .1em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.testimonials-name {
  font-family: Noto Sans, sans-serif;
  font-size: 1.12em;
  line-height: 1.3em;
}

.testimonials-subtitle {
  color: rgba(22, 22, 19, .5);
  font-family: Noto Sans, sans-serif;
  font-size: .87em;
  font-weight: 500;
  line-height: 1.5em;
}

.gradient {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/bg2.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: scroll;
  height: 100%;
  position: absolute;
  top: -25em;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-footer {
  margin-top: auto;
  padding: 5.5em 2em 2.5em;
  position: relative;
}

.grid-footer {
  grid-column-gap: 1.125em;
  grid-row-gap: 1.125em;
  grid-template-rows: auto;
  align-items: center;
  margin-bottom: 11em;
}

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

.heading-footer {
  font-family: Noto Sans, sans-serif;
}

.block-button-footer {
  grid-row-gap: .4em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.button-footer {
  grid-column-gap: .3em;
  background-color: var(--heading);
  border-radius: .5em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.1em 2.1em;
  transition: box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.button-footer:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 35px -15px rgba(22, 22, 19, .5);
}

.icon-button-footer {
  height: 2.1em;
  display: block;
}

.text-button-footer {
  color: rgba(22, 22, 19, .5);
  font-size: .87em;
  font-weight: 500;
  line-height: 1.5em;
}

.footer-right {
  grid-column-gap: .7em;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-down {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: Noto Sans, sans-serif;
  display: flex;
}

.block-footer-down {
  grid-column-gap: 3em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-footer {
  color: rgba(22, 22, 19, .5);
  padding-top: .4em;
  padding-bottom: .4em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

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

.logo-footer {
  opacity: .4;
  height: 1em;
  margin-right: -1em;
  filter: invert(1);
}

.gradient-footer {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/bg3.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 190%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.app-focus---wrapper {
  position: relative;
}

.app-focus---shadow {
  z-index: -50;
  filter: blur(50px);
  transform-style: preserve-3d;
  background-color: rgba(22, 22, 19, .1);
  border-radius: 1.9em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: scale(.9)translate3d(0, 0, -200px);
}

.app-focus---image {
  z-index: 50;
  background-color: var(--white);
  border-radius: 1.9em;
  position: relative;
  overflow: hidden;
}

.app-hero---wrapper {
  max-width: 18em;
  position: relative;
  margin-top: 2em;

}

.app-hero---content-1 {
  z-index: 30;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  top: 4em;
  left: -25%;
}

.app-hero---shadow {
  z-index: -50;
  filter: blur(50px);
  transform-style: preserve-3d;
  background-color: rgba(22, 22, 19, .1);
  border-radius: 1.9em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: scale(.9)translate3d(0, 0, -50px);
}

.app-hero---content-2 {
  z-index: 20;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: -18%;
  bottom: 0%;
  left: 35%;
  right: 0%;
}

.image-app---hero {
  z-index: 50;
  border-radius: 1.9em;
  max-height: 90vh;
  position: relative;
}

.app-hero---content-3 {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: 62%;
  bottom: 0%;
  left: 55%;
  right: 0%;
}

.section-top {
  padding: 13em 2em 3em;
  position: relative;
}

.gradient-top-a {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/gradient_4.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 200%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.block-top {
  grid-row-gap: 2.25em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-top {
  max-width: 11em;
  margin-bottom: -.1em;
  font-family: Noto Sans, sans-serif;
  font-size: 5em;
  line-height: 1.06em;
}

.paragraph-top {
  max-width: 29em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.25em;
}

.gradient-top-b {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/gradient_6.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 190%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gradient-top-c {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/bg7.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 200%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gradient-blog-posts {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/gradient_5.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 150%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.subtitle-date {
  grid-column-gap: .31em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  margin-bottom: -1.4em;
  padding: .43em 1.18em;
  display: flex;
}

.collection-list-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.collection-list {
  grid-column-gap: 0em;
  grid-row-gap: 3.12em;
  grid-template-rows: minmax(28em, auto);
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(28em, auto);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-item {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: .62em;
  display: grid;
}

.link-post-thumbnail {
  filter: brightness();
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.4em;
  transition: filter .4s cubic-bezier(.165, .84, .44, 1);
}

.link-post-thumbnail:hover {
  filter: brightness(104%);
}

.block-post {
  grid-row-gap: 1.9em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4.7em 15%;
  display: flex;
}

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

.paragraph-post {
  font-size: 1em;
  line-height: 1.6em;
}

.heading-post {
  margin-bottom: -.1em;
}

.circle-button-small {
  grid-column-gap: .8em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-circle-button-small {
  background-color: var(--white);
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  padding: .8em;
  transition: padding .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.link-circle-button-small:hover {
  padding-left: 1.6em;
  padding-right: 1.6em;
  transform: scale(1.1);
  box-shadow: 0 25px 25px -15px rgba(22, 22, 19, .15);
}

.link-circle-button-small.dark {
  background-color: var(--heading);
}

.link-circle-button-small.dark:hover {
  box-shadow: 0 25px 25px -15px rgba(22, 22, 19, .4);
}

.date {
  color: rgba(22, 22, 19, .5);
  margin-bottom: -1.4em;
  font-size: .92em;
  font-weight: 500;
  line-height: 1.3em;
}

.empty-state {
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  text-align: center;
  border-radius: 1.6em;
  padding: 1.2em 1.9em;
}

.text-empty {
  color: rgba(22, 22, 19, .5);
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.2em;
}

.image-main-post {
  object-fit: cover;
  border-radius: 1.63em;
  width: 100%;
  margin-bottom: 4.2em;
}

.content-narrow {
  width: 100%;
  max-width: 47.5em;
  margin-left: auto;
  margin-right: auto;
}

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

.features-bg {
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  padding: 3.2em 3.75em;
}

.grid-focus-left {
  grid-column-gap: 2em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
}

.app-focus-separate {
  perspective: 1800px;
  justify-content: center;
  align-items: center;
  margin-top: -2.5em;
  margin-bottom: -2.5em;
  display: flex;
  position: relative;
}

.grid-focus-right {
  grid-column-gap: 2em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.2fr;
}

.focus-separate {
  z-index: 100;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 40vh;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  display: flex;
  position: relative;
}

.grid-support {
  grid-column-gap: 1.125em;
  grid-row-gap: 1.125em;
  grid-template-rows: auto;
  align-items: start;
}

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

.accordion-item {
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  padding: .7em 2.2em;
}

.accordion-header {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.icon-arrow {
  width: 1.25em;
  height: 1.25em;
  display: block;
}

.icon-accordion {
  background-color: var(--white);
  border-radius: 10em;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  padding: .7em;
  display: flex;
}

.heading-accordion {
  font-family: Noto Sans, sans-serif;
}

.accordion-content {
  display: block;
  overflow: hidden;
}

.paragraph-accordion {
  margin-top: .4em;
  margin-bottom: 1.3em;
  font-family: Noto Sans, sans-serif;
  font-size: 1em;
  line-height: 1.6em;
}

.contact {
  grid-row-gap: 2em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.63em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4em;
  display: flex;
}

.form-block {
  width: 100%;
  max-width: 40em;
  margin-bottom: 0;
}

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

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 1.125em;
  height: 3.7em;
  margin-bottom: 0;
  padding: 1em 1.4em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.125em;
  line-height: 1.6em;
  transition: border-color .4s cubic-bezier(.165, .84, .44, 1);
}

.text-field:focus {
  border-color: rgba(8, 104, 230, .5);
}

.text-field::placeholder {
  color: rgba(22, 22, 19, .5);
}

.submit-button {
  background-color: var(--heading);
  color: var(--white);
  border-radius: 10em;
  padding: 1.4em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.06em;
  font-weight: 500;
  line-height: 1.3em;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s cubic-bezier(.165, .84, .44, 1);
}

.submit-button:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 35px -15px rgba(22, 22, 19, .5);
}

.textarea {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 1.125em;
  min-width: 100%;
  max-width: 100%;
  min-height: 11em;
  max-height: 22em;
  margin-bottom: .8em;
  padding: 1em 1.4em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.125em;
  line-height: 1.6em;
  transition: border-color .4s cubic-bezier(.165, .84, .44, 1);
}

.textarea:focus {
  border-color: rgba(8, 104, 230, .5);
}

.textarea::placeholder {
  color: rgba(22, 22, 19, .5);
}

.success-message {
  background-color: rgba(16, 185, 98, .1);
  border-radius: 1.125em;
  padding: 1.4em 2em;
}

.text-success {
  color: #0e8a4a;
  font-weight: 500;
}

.error-message {
  background-color: rgba(230, 8, 8, .1);
  border-radius: 1.125em;
  margin-top: 1.4em;
  padding: 1.4em 2em;
}

.text-error {
  color: #c00;
  font-weight: 500;
}

.section-full {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 9.5em 0 5.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-download {
  z-index: 50;
  grid-column-gap: 3em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: auto minmax(auto, 47.5em) auto;
  justify-items: center;
  width: 100%;
  position: relative;
}

.download {
  z-index: 50;
  grid-row-gap: 2.25em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.block-button-download {
  grid-column-gap: .7em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-download {
  max-width: 32em;
  font-family: Noto Sans, sans-serif;
  font-size: 1.25em;
}

.heading-download {
  margin-bottom: -.1em;
  font-family: Noto Sans, sans-serif;
  font-size: 5em;
  line-height: 1.06em;
}

.gradient-download {
  z-index: -10;
  background-color: var(--background);
  mix-blend-mode: darken;
  background-image: url('../images/bg1.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.heading-template-info {
  margin-bottom: .8em;
  font-family: Noto Sans, sans-serif;
}

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

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

.block-color {
  grid-row-gap: .25em;
  background-color: var(--white);
  border-radius: 1.125em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 8em;
  padding: 1.2em;
  display: flex;
}

.block-color.background {
  background-color: var(--background);
  background-position: 50%;
  background-size: auto;
}

.block-color.background-content {
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}

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

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

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

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

.text-color {
  color: var(--heading);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
}

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

.hex-color {
  color: rgba(22, 22, 19, .5);
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.2em;
}

.hex-color.white-transparent {
  color: rgba(255, 255, 255, .5);
}

.template-info {
  grid-column-gap: 1.4em;
  grid-row-gap: 1em;
  background-color: var(--background-content);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 1.125em;
  justify-content: flex-start;
  align-items: center;
  padding: 1.6em;
  display: flex;
}

.block-template-info {
  grid-row-gap: .7em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.button-small {
  grid-column-gap: .3em;
  background-color: var(--heading);
  border-radius: 10em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .7em 1.7em;
  text-decoration: none;
  transition: box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.button-small:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 35px -15px rgba(22, 22, 19, .5);
}

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

.button-small.white:hover {
  box-shadow: 0 25px 35px -15px rgba(22, 22, 19, .15);
}

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

.image-licensing {
  border-radius: 1.125em;
  width: 100%;
}

.grid-icon-licensing {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto auto auto;
  grid-auto-columns: auto;
  justify-content: start;
}

.paragraph-template-info {
  margin-bottom: 2.2em;
  font-family: Noto Sans, sans-serif;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 9.5em 2em 5.5em;
  display: flex;
  position: relative;
}

.utility-page-content {
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 19em;
  margin-bottom: 0;
  display: flex;
}

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

.heading-404 {
  margin-bottom: -.2em;
  font-family: Noto Sans, sans-serif;
}

.field-label {
  color: rgba(22, 22, 19, .5);
  margin-bottom: 0;
  font-family: Noto Sans, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
}

.block-utility-form {
  grid-row-gap: .75em;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.heading-password {
  margin-bottom: .3em;
  font-family: Noto Sans, sans-serif;
}

.app-download-left {
  perspective: 1800px;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  display: flex;
  position: relative;
  transform: none;
}

.app-download-right {
  perspective: 1800px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: flex;
  position: relative;
}

.app-download---wrapper {
  max-width: 20em;
  position: relative;
  margin: 0 9em 0 9em;
  
}

.app-download---content-l1 {
  z-index: 30;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  left: -25%;
  
}

.app-download---content-l2 {
  z-index: 20;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: 15%;
  bottom: 24%;
  left: 0%;
  right: 0%;
}

.image-app---download {
  z-index: 50;
  border-radius: 1.9em;
  max-height: 90vh;
  position: relative;
}

.app-download---shadow {
  z-index: -50;
  filter: blur(50px);
  transform-style: preserve-3d;
  background-color: rgba(22, 22, 19, .1);
  border-radius: 1.9em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: scale(.9)translate3d(0, 0, -50px);
}

.app-download---content-r1 {
  z-index: 30;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  left: 27%;
}

.app-download---content-r2 {
  z-index: 20;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: -21%;
  bottom: 21%;
  left: -57%;
  right: 0%;
}

.body {
  background-color: var(--background);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  font-family: Noto Sans, sans-serif;
}

.text-block {
  color: var(--paragraphs);
  font-weight: 500;
}

.link-block {
  cursor: pointer;
}

.list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.list-item {
  padding-left: 0;
}

.bold-text, .paragraph-2, .figure-caption {
  font-family: Noto Sans, sans-serif;
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 15px;
  }

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

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

  .section-hero {
    padding-top: 9.5em;
    padding-bottom: 7.5em;
  }

  .block-hero {
    padding-top: 4.5em;
    padding-bottom: 4.5em;
  }

  .heading-hero {
    font-family: Noto Sans, sans-serif;
  }

  .button-footer {
    border-radius: 10px;
  }

  .image {
    margin-bottom: 15px;
  }

  .flex-block {
    display: flex;
  }

  .list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    padding-right: 2em;
    display: flex;
  }

  .list-item {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: var(--heading);
    border-radius: 1.625em;
    padding: 1.2em .8em;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 1em;
    right: 1em;
    box-shadow: 0 40px 30px -30px rgba(22, 22, 19, .55);
  }

  .nav-link {
    color: rgba(255, 255, 255, .7);
    padding-top: .6em;
    padding-bottom: .6em;
  }

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

  .nav-link.w--current {
    color: rgba(255, 255, 255, .7);
  }

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

  .menu-button {
    background-color: var(--heading);
    color: var(--white);
    border-radius: 50%;
    padding: .5em;
    transition: box-shadow .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1);
  }

  .menu-button:hover {
    transform: scale(1.14);
    box-shadow: 0 15px 25px -10px rgba(22, 22, 19, .6);
  }

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

  .icon-menu {
    font-size: .88em;
  }

  .grid-hero {
    grid-column-gap: 1em;
  }

  .heading-hero {
    font-size: 4.5em;
  }

  .app-focus---content, .app-hero---wrapper {
    max-width: 18em;
  }

  .section-top {
    padding-top: 12em;
    padding-bottom: 2em;
  }

  .heading-top {
    font-size: 4.5em;
  }

  .block-post {
    padding-top: 3.6em;
    padding-bottom: 3.6em;
  }

  .heading-download {
    font-size: 4.5em;
  }

  .list {
    justify-content: center;
    display: flex;
  }
}

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

  h2 {
    font-size: 3.1em;
  }

  h3 {
    font-size: 2.3em;
  }

  h4 {
    font-size: 1.9em;
  }

  h5 {
    font-size: 1.55em;
  }

  .section-hero {
    padding-top: 8.5em;
    padding-bottom: 4.5em;
  }

  .grid-hero {
    grid-row-gap: 4em;
    grid-template-columns: 1.2fr;
  }

  .block-hero {
    text-align: center;
    align-items: center;
    padding: 2.5em 10% 0;
  }

  .heading-hero {
    font-size: 4.2em;
  }

  .section {
    padding-top: 4.5em;
    padding-bottom: 4.5em;
  }

  .focus {
    min-height: auto;
    padding-top: 7em;
    padding-bottom: 7em;
  }

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

  .functions-large {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    padding: 3.5em;
  }

  .block-functions-large {
    align-items: center;
    max-width: 100%;
    padding-right: 0;
  }

  .image-functions-large {
    width: 100%;
    margin-bottom: 3em;
  }

  .functions {
    text-align: center;
    align-items: center;
    padding: 3.5em;
  }

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

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

  .testimonials {
    min-height: auto;
    padding: 2.65em;
  }

  .section-footer {
    padding-top: 4.5em;
  }

  .grid-footer {
    grid-row-gap: 3.5em;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 9em;
  }

  .footer-left {
    align-items: center;
  }

  .heading-footer {
    max-width: 9em;
  }

  .block-button-footer {
    align-items: center;
  }

  .footer-down {
    grid-row-gap: 3em;
    flex-direction: column;
  }

  .block-footer-down {
    grid-row-gap: 1em;
    flex-direction: column;
  }

  .app-hero---wrapper {
    max-width: 50vw;
  }

  .app-hero---content-1 {
    left: -31%;
  }

  .app-hero---content-2 {
    left: 22%;
  }

  .app-hero---content-3 {
    left: 45%;
  }

  .section-top {
    padding-top: 11em;
    padding-bottom: 1em;
  }

  .heading-top {
    font-size: 4.2em;
  }

  .collection-list {
    grid-row-gap: 2.2em;
  }

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

  .link-post-thumbnail {
    min-height: 60vw;
  }

  .block-post {
    padding: 3em 10%;
  }

  .image-main-post {
    margin-bottom: 3.2em;
  }

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

  .features-bg {
    padding: 2.7em;
  }

  .grid-focus-left, .grid-focus-right {
    grid-template-columns: 1fr;
  }

  .focus-separate {
    min-height: auto;
    padding: 6.5em 10% 3.5em;
  }

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

  .contact {
    padding: 3em;
  }

  .grid-download {
    grid-row-gap: 3em;
    grid-template-columns: auto;
  }

  .download {
    padding-left: 12%;
    padding-right: 12%;
  }

  .heading-download {
    font-size: 4.2em;
  }

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

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

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

  .app-download-left {
    margin-right: 0;
  }

  .app-download-right {
    margin-left: 0;
    display: none;
  }

  .app-download---wrapper {
    max-width: 50vw;
  }

  .list {
    justify-content: center;
    display: flex;
  }

  .list-item {
    display: flex;
  }
}

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

  h2 {
    font-size: 2.7em;
  }

  h3 {
    font-size: 2.2em;
  }

  h4 {
    font-size: 1.8em;
  }

  .nav-button {
    display: none;
  }

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

  .heading-hero {
    font-size: 12vw;
  }

  .block-button {
    grid-row-gap: 1em;
    flex-direction: column;
  }

  .grid-focus {
    grid-row-gap: 7em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

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

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

  .focus {
    text-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .app-focus {
    padding-top: 0;
    padding-bottom: 0;
  }

  .app-focus---sticky {
    height: auto;
    position: relative;
    top: 0;
  }

  .app-focus---content {
    max-width: 45vw;
  }

  .image-app---focus-1 {
    z-index: 30;
    border-radius: 1.2em;
  }

  .image-app---focus-2 {
    border-radius: 1.2em;
    transform: rotateX(-3deg)rotateY(6deg)rotateZ(-14deg)translate3d(-29%, -62px, -200px);
  }

  .image-app---focus-3 {
    z-index: 10;
    border-radius: 1.2em;
    transform: rotateX(0)rotateY(-9deg)rotateZ(11deg)translate3d(24%, 16%, -200px);
  }

  .functions-large, .functions {
    padding: 3em;
  }

  .grid-features {
    grid-row-gap: 3.5em;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .features {
    align-items: center;
  }

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

  .footer-right {
    grid-row-gap: 1.7em;
    flex-direction: column;
  }

  .footer-down, .block-footer-down {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .app-focus---image {
    perspective: 1800px;
    border-radius: 1.2em;
    overflow: visible;
  }

  .image-app---hero {
    border-radius: 1.2em;
  }

  .heading-top {
    font-size: 12vw;
  }

  .features-bg {
    text-align: center;
  }

  .focus-separate {
    text-align: center;
    align-items: center;
    padding-top: 4.5em;
    padding-bottom: 0;
  }

  .contact {
    text-align: center;
    align-items: center;
    padding: 2.2em;
  }

  .download {
    padding-left: 7%;
    padding-right: 7%;
  }

  .block-button-download {
    grid-row-gap: 1.25em;
    flex-direction: column;
  }

  .heading-download {
    font-size: 12vw;
  }

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

  .template-info {
    flex-direction: column;
  }

  .image-app---download {
    border-radius: 1.2em;
  }

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

#w-node-_3bce429c-06f2-53cc-882e-3e390d408fec-7f921df3, #w-node-fb81bcce-4d37-85e0-208e-77cf7c1ffc2c-7f921df3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_921e641a-4364-ff47-fb5c-6dcbde77594e-7f921df3 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_08be711c-a843-4fc0-e4ee-60f7d1119405-7f921df3, #w-node-_993b666c-85f8-1653-1ef3-a82122c49510-7f921df3, #w-node-_4a90023a-9e8e-5ca0-356d-053b7a73f5c7-7f921df3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f5c0af81-4013-be1e-5c3f-7e73946682be-7f921df3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7a56818a-2d20-f91b-593a-57107d8f6e42-7f921df3, #w-node-_31aca3be-6c53-1b18-94f2-0ee9f7584b1b-7f921df3, #w-node-cdfd6c5d-0a52-e545-c7ba-8b60f0a0b9e2-7f921df3, #w-node-d0dbb8e8-ac8c-fa60-036c-b0e63fe5c384-7f921df3, #w-node-_5bf53881-3daa-5a9f-3b5e-91464fa1eb15-7f921df3, #w-node-c6cca3a7-263c-d0f4-ab69-a9e0451710a4-451710a4, #w-node-_17a85c95-fa82-5746-71bf-c8af53109a74-53109a73, #w-node-_17a85c95-fa82-5746-71bf-c8af53109a7b-53109a73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6275e1a-07c9-ad34-d127-028efe691466-7f921df9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a6275e1a-07c9-ad34-d127-028efe691474-7f921df9, #w-node-a6275e1a-07c9-ad34-d127-028efe69147c-7f921df9, #w-node-_62470994-48fd-63b6-3aa6-356c57ad32d9-7f921df9, #w-node-f83e9d24-90b6-7e1a-ba2d-1398c7160bf0-7f921df9, #w-node-da39da1c-3afd-4b28-af8d-79b0bbb36aa5-7f921df9, #w-node-fede3dae-0690-bd7c-fd78-3710399b65ae-7f921df9, #w-node-_9b1a2ee0-fc56-99cd-4d41-ca62e5bfdda1-7f921df9, #w-node-ee203b05-37d9-ffaf-fe88-f4fc7a8fad2a-7f921df9, #w-node-_32904d09-a0d9-a829-9ca5-8c2af6525cf3-7f921df9, #w-node-_062155cb-6a91-d3d6-9f55-e3966ca82036-7f921df9, #w-node-_51dcbb06-b6e0-cd5c-d737-e3db2f15a47f-7f921df9, #w-node-fbabb9ba-687e-3180-a268-822e0416b9b3-7f921df9, #w-node-_9c22e7a4-9647-58f2-be48-7b617ef3b736-7f921df9, #w-node-d0d989fb-ebdb-e693-8970-aaa25f2d539d-7f921df9, #w-node-ae533ef4-8688-3fae-5f0a-665e22702679-7f921dfa, #w-node-_34cd9a51-5b6a-b4ca-2e52-48bea2d9e1de-7f921dfa, #w-node-_5c58c25a-5775-280e-0bc6-1372be0f6ebc-7f921dfc, #w-node-d5f80b9e-2c17-7dc7-4aff-67f4769087b1-7f921dfc, #w-node-_2b69cc58-821e-2bf3-3014-df862e57cdd1-7f921dfc, #w-node-_23e9dbe5-869f-a5cc-a3d5-51308562d378-7f921dfc, #w-node-_6484172b-94bc-550b-ad2a-819a1918632a-7f921dfc, #w-node-_1ce52f18-98cb-4403-64f6-4275cdd993d9-7f921dfc, #w-node-edb08dca-4c7e-e403-9255-f8be78c6ab51-7f921dfc, #w-node-_4b03d09f-92fd-bfcb-36c1-03b1877a3a87-7f921dfd, #w-node-_16cc9bb3-c1e6-1964-86ec-b4827248705f-7f921dfd, #w-node-_4fef1a62-02f5-8db8-bde6-7b786df4a558-7f921dfd, #w-node-_0fb78434-6fbe-94b0-7bc6-2659db5b73ff-7f921dfd, #w-node-c9fe97eb-6b1d-42f3-8a80-c7976a867b55-7f921dfd, #w-node-_9020cfa0-7203-5e0c-1c16-f206fad14c10-7f921dfd, #w-node-_8dfe5630-3d6c-4537-c04d-f68910df6faf-7f921dfd, #w-node-_85c176f1-5ebb-265d-9be4-07496d5f2012-7f921dfd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_3bce429c-06f2-53cc-882e-3e390d408fec-7f921df3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-fb81bcce-4d37-85e0-208e-77cf7c1ffc2c-7f921df3 {
    order: -9999;
  }

  #w-node-f5c0af81-4013-be1e-5c3f-7e73946682be-7f921df3, #w-node-a6275e1a-07c9-ad34-d127-028efe691466-7f921df9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fede3dae-0690-bd7c-fd78-3710399b65ae-7f921df9 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_921e641a-4364-ff47-fb5c-6dcbde77594e-7f921df3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/SpaceGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/SpaceGrotesk-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}