:root {
  --background: #f3f9fb;
  --paragraphs: #3b4c5c;
  --heading: #0c2134;
  --accent: #ffe22e;
  --shadow: #102d470d;
  --white: white;
  --dark-background: #102d47;
  --slate-grey: #687683;
  --main: #4893ff;
  --main-light: #9dc6fd;
  --border: #dce0e5;
}

.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: var(--background);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 17px;
  line-height: 1.6em;
  display: flex;
}

h1 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 28px;
  font-family: Archivo, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15em;
}

h2 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Archivo, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15em;
}

h3 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Archivo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15em;
}

h4 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Archivo, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15em;
}

h5 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Archivo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
}

p {
  margin-bottom: 28px;
}

a {
  color: var(--heading);
}

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

ol {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 36px;
}

li {
  color: var(--heading);
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
}

img {
  max-width: 100%;
  display: inline-block;
}

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

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

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

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

.navbar {
  background-color: var(--dark-background);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.block-navbar {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1310px;
  display: flex;
}

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

.logo {
  min-width: auto;
  max-width: none;
  height: 100px;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
}

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

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

.nav-link {
  color: var(--white);
  padding: 12px 20px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.nav-link.w--current {
  color: var(--white);
  margin-left: 23px;
}

.nav-menu {
  padding-left: 5px;
  padding-right: 5px;
}

.dropdown-toggle {
  color: var(--heading);
  padding: 12px 38px 12px 20px;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.dropdown-text {
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}

.dropdown-icon {
  margin-right: 20px;
  font-size: 11px;
  line-height: 1em;
}

.dropdown-link {
  color: var(--heading);
  padding: 8px 20px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.dropdown-link:hover {
  color: var(--slate-grey);
}

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

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

.dropdown-list.w--open {
  box-shadow: 0 20px 20px -10px var(--shadow);
  border-radius: 5px;
  padding: 12px 10px;
}

.nav-button {
  background-color: var(--white);
  color: var(--heading);
  text-align: center;
  border-radius: 50px;
  padding: 11px 30px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.text-nav-extra {
  color: var(--white);
  margin-left: 10px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
}

.nav-extra-link {
  background-color: var(--main);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  margin-right: 8px;
  padding: 11px 20px;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.nav-extra-link:hover {
  background-color: var(--accent);
  box-shadow: 0 20px 20px -10px var(--shadow);
  color: var(--white);
}

.icon-nav-extra {
  filter: sepia();
  width: 19px;
  max-width: none;
  height: 19px;
}

.section-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 93px 40px 50px;
  display: flex;
}

.section-hero.margin {
  padding-bottom: 0;
}

.section-hero.overflow {
  padding-bottom: 0;
  overflow: hidden;
}

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

.grid-hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  perspective: 1510px;
  transform: ;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 590px) minmax(45%, 720px) 1fr;
  align-items: center;
  width: 100%;
}

.grid-figures-hero {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: auto auto auto auto auto auto;
  grid-auto-columns: auto;
  overflow: hidden;
}

.figure {
  max-width: 130px;
  max-height: 130px;
}

.image-hero {
  object-fit: cover;
  border-radius: 220px 5px 5px 220px;
  width: 100%;
}

.img-hero-block {
  flex-direction: column;
  align-items: center;
}

.block-hero {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 35px;
  padding-right: 15px;
  display: flex;
}

.paragraph-large {
  color: var(--white);
  max-width: 450px;
  margin-bottom: 36px;
  font-size: 20px;
  line-height: 1.6em;
}

.paragraph-large.max-w {
  max-width: 650px;
}

.paragraph-large.white {
  color: #ffffff80;
}

.heading-hero {
  color: var(--white);
  max-width: 980px;
  font-size: 45px;
}

.heading-hero.large {
  font-size: 62px;
}

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

.button {
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  padding: 18px 38px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.button.white {
  background-color: var(--white);
  color: var(--heading);
  margin-top: 96px;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

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

.button.outline {
  border: 2px solid var(--main-light);
  color: var(--main);
  background-color: #0000;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

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

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

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

.extra-link {
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 18px 24px;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.extra-link:hover {
  background-color: var(--white);
  box-shadow: 0 20px 20px -10px var(--shadow);
  color: var(--heading);
}

.extra-link.small {
  padding: 12px 20px;
}

.extra-link.white:hover {
  background-color: #143553;
}

.text-extra {
  color: var(--white);
  margin-left: 10px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

.text-extra.small {
  font-size: 16px;
}

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

.icon-extra {
  width: 19px;
  max-width: none;
  height: 19px;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -28px;
  margin-bottom: 40px;
  margin-left: 0;
  padding: 119px 40px 84px;
  display: flex;
}

.content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1310px;
  margin-left: 0;
  padding-left: 0;
  display: flex;
}

.subtitle {
  color: #0c213480;
  letter-spacing: .8px;
  margin-bottom: 10px;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
}

.heading {
  color: var(--white);
  margin-bottom: 26px;
  font-size: 32px;
}

.heading.margin {
  margin-top: 2px;
  margin-bottom: 67px;
}

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

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

.grid-4-columns {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  perspective: 1510px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: stretch start;
  place-items: start stretch;
  width: 100%;
  margin-left: 0;
}

.link-block-service {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 28px 12%;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.link-block-service:hover {
  box-shadow: 0 30px 30px 0 var(--shadow);
}

.image-service {
  width: 45px;
  height: 45px;
  margin-top: 18px;
  margin-bottom: 30px;
}

.paragraph-service {
  color: var(--paragraphs);
  text-align: left;
  margin-bottom: 18px;
}

.heading-service {
  text-align: left;
  margin-bottom: 20px;
  font-size: 20px;
}

.grid-2-columns {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  perspective: 1510px;
  grid-template-rows: auto;
  align-items: start;
  width: 100%;
  margin-left: -17px;
  padding-left: 10px;
}

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

.paragraph {
  color: var(--white);
  margin-bottom: 34px;
}

.paragraph.white {
  color: #ffffff80;
}

.image-radius-right {
  object-fit: cover;
  border-radius: 5px 250px 250px 5px;
  width: 100%;
  max-width: 90%;
  min-height: 480px;
}

.img-block {
  position: relative;
}

.img-block.indent-right {
  margin-right: -15px;
}

.img-block.indent-left {
  margin-left: -15px;
}

.grid-figures {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  position: absolute;
  inset: auto 0 -30px auto;
}

.grid-figures.left {
  left: 0;
  right: auto;
}

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

.grid-3-columns.margin {
  margin-bottom: 25px;
  margin-left: 319px;
}

.block-testimonial {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  margin-bottom: 0;
  padding: 34px 10% 40px;
}

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

.client-avatar {
  object-fit: cover;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 18px;
}

.name {
  margin-bottom: 3px;
}

.info {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .8px;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
}

.block-achievement {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  padding: 60px 12% 30px;
}

.number-achievement {
  color: var(--main);
  margin-right: 20px;
  font-family: Archivo, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1em;
}

.number-achievement.margin {
  margin-bottom: 15px;
}

.achievement {
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

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

.heading-achievement.margin {
  margin-bottom: 20px;
}

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

.lightbox-link {
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-lightbox {
  width: 100%;
}

.play {
  z-index: 50;
  background-color: var(--white);
  box-shadow: 0 20px 20px -10px var(--shadow);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  display: flex;
  position: absolute;
}

.icon-play {
  width: 17px;
  height: 17px;
}

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

.client-stories {
  margin-bottom: -25px;
}

.banner {
  background-color: var(--accent);
  border-radius: 5px;
  padding: 50px 10%;
  position: relative;
}

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

.grid-figures-banner {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  position: absolute;
  inset: auto -20px -20px auto;
}

.banner-text {
  z-index: 30;
  position: relative;
}

.plan {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  padding: 30px 12% 35px;
}

.name-plan-block {
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.popular {
  background-color: var(--accent);
  color: var(--heading);
  border-radius: 5px;
  margin-left: 14px;
  padding: 4px 12px;
  font-family: Archivo, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2em;
}

.name-plan {
  color: var(--main);
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
}

.price {
  color: var(--heading);
  font-family: Archivo, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1em;
}

.price-block {
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 6px;
  display: flex;
}

.price-info {
  color: var(--heading);
  margin-top: 2px;
  font-family: Archivo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1em;
}

.price-description {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .8px;
  margin-bottom: 20px;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
}

.paragraph-plan {
  margin-bottom: 18px;
}

.icon-check {
  width: 24px;
  max-width: none;
  height: 24px;
  margin-right: 12px;
}

.check {
  flex-direction: row;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.text-check {
  color: var(--heading);
  font-weight: 500;
  line-height: 1.3em;
}

.button-small {
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  padding: 11px 30px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.button-small.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

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

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

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

.button-small.outline {
  border: 2px solid var(--main-light);
  color: var(--main);
  background-color: #0000;
  padding: 9px 28px;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), border .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.check-block {
  margin-bottom: 26px;
}

.collection-list-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.link-blog-thumbnail {
  border-radius: 5px;
  width: 100%;
  display: block;
  overflow: hidden;
}

.image-blog-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 260px;
}

.image-blog-thumbnail.first-post {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 100%;
}

.blog-post-date {
  color: #0c213480;
  letter-spacing: .8px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
}

.link-heading-blog {
  text-decoration: none;
}

.blog-post {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 28px;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
}

.heading-blog {
  margin-top: 8px;
  margin-bottom: 14px;
}

.collection-item {
  text-align: center;
}

.empty-state {
  background-color: var(--border);
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.text-empty {
  color: var(--heading);
}

.subscription {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  perspective: 1510px;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px 12% 70px;
  display: flex;
  position: relative;
}

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

.form-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 430px;
}

.form {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.text-field {
  border: 1px solid var(--border);
  color: var(--heading);
  border-radius: 50px;
  height: 57px;
  margin-bottom: 0;
  padding: 15px 22px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: var(--main);
}

.text-field::placeholder {
  color: #0c213480;
}

.text-field.margin {
  margin-bottom: 15px;
}

.success-message {
  background-color: #009c4126;
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.text-success {
  color: #009c41;
}

.error-message {
  background-color: #ff00001a;
  border-radius: 5px;
  margin-top: 15px;
  padding: 15px 30px;
}

.text-error {
  color: #ff0004;
}

.subscription-text {
  z-index: 30;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  display: flex;
  position: relative;
}

.grid-figures-subscription---right {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  position: absolute;
  inset: auto -20px -20px auto;
}

.grid-figures-subscription---left {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  position: absolute;
  inset: -20px auto auto -20px;
}

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

.footer-down {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.grid-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 85px;
}

.block-footer {
  color: var(--white);
  margin-left: 13px;
}

.title-footer {
  color: var(--white);
  margin-top: 5px;
  margin-bottom: 30px;
}

.link-footer {
  color: var(--white);
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

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

.brand-footer {
  flex-direction: row;
  align-items: center;
  margin-bottom: 38px;
  display: inline-block;
}

.paragraph-footer {
  max-width: 300px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.6em;
}

.block-footer-down {
  justify-content: center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

.link-footer-down {
  color: var(--background);
  margin-left: 16px;
  margin-right: 16px;
  font-family: Archivo, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.grid-social {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  margin-left: 16px;
  margin-right: 16px;
}

.link-social {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 50%;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
}

.link-social:hover {
  box-shadow: 0 20px 20px 0 var(--shadow);
}

.icon-link-social {
  width: 15px;
  max-width: none;
  height: 15px;
  margin: 16px;
}

.image-figure---hero-1, .image-figure---hero-2, .image-figure---hero-3, .image-figure---hero-4, .image-figure---hero-5, .image-figure---hero-6, .image-figure---hero-7, .image-figure---hero-8, .image-figure---hero-9, .image-figure---hero-10, .image-figure---hero-11, .image-figure---hero-12, .image-figure---hero-13, .image-figure---img-1, .image-figure---img-2, .image-figure---alt-1, .image-figure---alt-2, .image-figure---alt-3, .image-figure---alt-4, .image-figure---alt-5, .image-figure---alt-6 {
  width: 100%;
}

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

.image-radius-left {
  object-fit: cover;
  border-radius: 250px 5px 5px 250px;
  width: 100%;
  min-height: 480px;
}

.icon-chapter {
  width: 20px;
  max-width: none;
  height: 20px;
  margin-right: 18px;
}

.chapter {
  align-items: flex-start;
  display: flex;
}

.chapter-text {
  color: var(--white);
  margin-bottom: 10px;
  font-family: Archivo, sans-serif;
  font-weight: 500;
  line-height: 1.3em;
}

.link-block-service-large {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.link-block-service-large:hover {
  box-shadow: 0 30px 30px 0 var(--shadow);
}

.block-service-large {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 60px 12% 50px;
  display: flex;
  position: relative;
}

.block-service-large.left {
  box-shadow: 0 10px 10px -10px var(--shadow);
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 10%;
}

.img-block-service {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  overflow: hidden;
}

.image-service-large {
  object-fit: cover;
  width: 100%;
  height: 270px;
}

.image-service-large.height {
  height: 460px;
  margin-top: 0;
  padding-top: 0;
}

.block-icon-service {
  z-index: 50;
  background-color: var(--white);
  box-shadow: 0 20px 20px -10px var(--shadow);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: -32px auto auto;
}

.icon-service {
  width: 30px;
  height: 30px;
  margin: 20px;
}

.text-read-more {
  border: 2px solid var(--main-light);
  color: var(--main);
  border-radius: 50px;
  margin-top: 6px;
  padding: 9px 28px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}

.hero-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 94px;
  display: flex;
  position: relative;
}

.figures-circles-hero {
  z-index: -1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.img-figures-circles {
  width: 30px;
  height: 30px;
}

.figures-circles {
  background-color: var(--white);
  box-shadow: 0 20px 20px -10px var(--shadow);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.figures-circles---1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 14% auto auto 6%;
}

.figures-circles---2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 42% auto auto 13%;
}

.figures-circles---3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 16% 2%;
}

.figures-circles---4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 5% 16%;
}

.pulse---a, .pulse---b, .pulse---c, .pulse---d {
  z-index: -10;
  border: 1px solid var(--main-light);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.figures-circles---5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 11% 7% auto auto;
}

.figures-circles---6 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 34% 13% auto auto;
}

.figures-circles---7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 2% 26% auto;
}

.figures-circles---8 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 14% 7% auto;
}

.grid-dark-hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--dark-background);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  grid-template-rows: auto;
  width: 100%;
}

.grid-figures-dark-hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr auto auto auto auto;
  grid-template-columns: auto auto auto minmax(50%, 1fr);
  grid-auto-rows: 1fr;
  align-items: end;
}

.img-dark-hero-bg {
  background-image: url('../images/img_hero_2.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-top-right-radius: 5px;
  width: 100%;
  height: 100%;
}

.block-dark-hero {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 7% 70px 16%;
  display: flex;
}

.clients-block {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px;
  display: flex;
}

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

.client-logo {
  opacity: .5;
  width: 100%;
  max-width: 100px;
  max-height: 45px;
}

.top-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 70px;
  display: flex;
}

.grid-figures-page {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 25px;
}

.grid-page-bg {
  grid-column-gap: 0px;
  grid-row-gap: 100px;
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-top: 30px;
  padding-bottom: 60px;
}

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

.service-sticky {
  background-color: var(--white);
  border-radius: 5px;
  margin-bottom: 40px;
}

.block-sticky {
  position: relative;
}

.sticky {
  margin-bottom: 40px;
  position: sticky;
  top: 93px;
}

.link-block-sticky {
  border-radius: 5px;
  width: 100%;
  padding: 26px 28px 14px;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.link-block-sticky:hover {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
}

.image-about {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 500px;
  margin-bottom: 25px;
}

.page-content {
  width: 100%;
  max-width: 780px;
  margin-top: 100px;
  margin-bottom: 70px;
}

.page-content.margin-top {
  margin-top: 70px;
}

.page-content.margin-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.page-top {
  perspective: 1510px;
  width: 100%;
  position: relative;
}

.image-page-top {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 640px;
}

.banner-page-top {
  background-color: var(--accent);
  border-radius: 5px;
  max-width: 740px;
  margin-right: 40px;
  padding: 50px 5% 30px;
  position: absolute;
  inset: auto auto -30px -30px;
}

.image-blog-main {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 680px;
  margin-bottom: 25px;
}

.rich-text-block {
  max-width: 780px;
  margin-top: 60px;
}

.collection-item-first-post {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 470px;
  display: grid;
}

.collection-list-first-post {
  width: 100%;
}

.link-first-post {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
  overflow: hidden;
}

.block-first-post {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 45px 10% 50px;
  display: flex;
}

.image-map {
  border: 1px solid var(--border);
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 460px;
}

.block-contact {
  background-color: var(--shadow);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 12% 50px;
  display: flex;
}

.form-contact {
  grid-column-gap: 8px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.textarea {
  border: 1px solid var(--border);
  color: var(--heading);
  border-radius: 28px;
  min-width: 100%;
  max-width: 100%;
  min-height: 160px;
  max-height: 300px;
  margin-bottom: 0;
  padding: 18px 22px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.textarea:focus {
  border-color: var(--main);
}

.textarea::placeholder {
  color: #0c213480;
}

.form-block-contact {
  width: 100%;
}

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

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

.block-started {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 12% 50px;
  display: flex;
}

.form-block-started {
  width: 100%;
}

.form-started {
  grid-column-gap: 8px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  margin-top: auto;
  padding: 120px 25px 0;
  display: flex;
}

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

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

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

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

.block-color {
  background-color: var(--white);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.text-color {
  color: var(--heading);
  font-size: 16px;
  line-height: 1.2em;
}

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

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

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

.image-licensing {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 150px;
}

.icon-licensing-bg {
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 20px;
  display: inline-block;
}

.block-icon-licensing {
  align-items: center;
  display: inline-block;
}

.icon-licensing {
  width: 20px;
  height: 20px;
  display: block;
}

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

.font {
  border: 1px solid var(--border);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 34px 26px;
  display: flex;
}

.archivo {
  color: var(--heading);
  margin-bottom: 5px;
  font-family: Archivo, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

.ibm-plex-sans {
  color: var(--heading);
  margin-bottom: 5px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
}

.image-splash {
  border: 1px solid #e0ebee;
  border-radius: 5px;
  width: 100%;
}

.link-block-splash {
  border: 1px solid var(--white);
  background-color: var(--white);
  box-shadow: 0 10px 10px -10px var(--shadow);
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 12px 0;
  text-decoration: none;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.link-block-splash:hover {
  border: 1px solid var(--main);
  box-shadow: 0 30px 30px 0 var(--shadow);
}

.text-splash {
  margin-top: 18px;
  margin-bottom: 18px;
  font-family: Archivo, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
}

.text-span, .italic-text {
  color: var(--accent);
}

.heading-2 {
  color: var(--accent);
  margin-right: 700px;
  padding-right: 0;
}

.text-block {
  background-color: #fff;
  flex-flow: column wrap;
  margin-bottom: -19px;
  margin-right: -446px;
  padding-top: 5px;
  padding-left: 0;
  padding-right: 366px;
  font-size: 20px;
  display: flex;
}

.paragraph-2 {
  text-align: left;
  object-fit: fill;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: flex-start;
  height: 80px;
  min-height: 100px;
  max-height: 100px;
  margin-top: 4px;
  margin-bottom: 68px;
  margin-left: 91px;
  padding-right: 651px;
  font-size: 20px;
  text-decoration: none;
  display: block;
}

.heading-3 {
  color: var(--main);
}

.italic-text-2 {
  color: #1e69d5;
  margin-left: -362px;
}

.text-block-2 {
  color: var(--white);
  margin-left: -9px;
  margin-right: 40px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 24px;
  line-height: 1.4em;
}

.heading-4 {
  color: var(--accent);
  margin-top: 106px;
  margin-right: 52px;
  padding-left: 189px;
  padding-right: 0;
}

.italic-text-3 {
  color: #1e69d5;
}

.text-block-3 {
  margin-top: 11px;
  margin-left: -132px;
  margin-right: 45px;
  padding-left: 0;
  padding-right: 0;
}

.heading-5 {
  color: var(--accent);
  margin-top: 80px;
}

.text-block-4 {
  margin-left: 147px;
}

.text-block-5 {
  color: var(--white);
  margin-top: 15px;
  margin-right: -404px;
  font-size: 24px;
  line-height: 1.3em;
}

.text-block-6 {
  margin-right: 82px;
}

.italic-text-4 {
  color: var(--white);
  margin-left: -367px;
  padding-left: 0;
}

.text-block-7 {
  color: var(--white);
  margin-left: -80px;
  padding-left: 0;
  font-size: 24px;
  line-height: 1.4em;
}

.bold-text, .bold-text-2, .bold-text-3 {
  color: var(--main);
}

.text-span-2 {
  color: var(--accent);
}

.italic-text-5 {
  color: var(--main);
}

.text-span-3, .italic-text-6 {
  color: var(--accent);
}

.text-span-4, .bold-text-4, .text-span-5, .bold-text-5 {
  color: var(--main);
}

.section-2 {
  margin-left: 0;
  padding-left: 60px;
}

.heading-6 {
  color: var(--white);
  font-size: 35px;
}

.text-span-6 {
  color: var(--main);
}

.bold-text-6 {
  color: var(--accent);
}

.text-span-7, .bold-text-7, .text-span-8, .bold-text-8, .bold-text-9, .bold-text-10 {
  color: var(--main);
}

.image {
  margin-top: 54px;
}

.block-quote {
  margin-left: -472px;
  padding-left: 0;
}

.italic-text-7 {
  margin-left: 47px;
}

.block-quote-2 {
  color: var(--main);
  margin-top: -10px;
  margin-left: -622px;
}

.italic-text-8 {
  color: var(--background);
  margin-left: 1px;
}

.text-span-9 {
  color: var(--heading);
}

.heading-7 {
  margin-top: -147px;
  margin-left: -797px;
  font-size: 26px;
}

.italic-text-9 {
  color: var(--accent);
}

.button-copy {
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  padding: 18px 38px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.button-copy.white {
  background-color: var(--white);
  color: var(--heading);
  margin-top: 96px;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

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

.button-copy.outline {
  border: 2px solid var(--main-light);
  color: var(--main);
  background-color: #0000;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

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

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

.block-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 36px 12%;
  display: flex;
}

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

.bold-text-11 {
  color: var(--main);
}

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

.subscription-text-copy {
  z-index: 30;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  display: flex;
  position: relative;
}

.paragraph-copy {
  color: var(--heading);
  margin-bottom: 34px;
}

.paragraph-copy.white {
  color: #ffffff80;
}

.bold-text-12, .link-2, .bold-text-13, .bold-text-14 {
  color: var(--white);
}

.link-3 {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
  text-decoration: underline;
}

.body-2, .body-3 {
  background-color: var(--dark-background);
}

.nav-link-copy {
  color: var(--white);
  padding: 12px 20px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-link-copy:hover {
  color: var(--slate-grey);
}

.nav-link-copy.w--current {
  color: var(--white);
  margin-left: 23px;
}

.body-4 {
  background-color: var(--dark-background);
}

.heading-copy {
  color: var(--white);
  margin-bottom: 26px;
  font-size: 32px;
}

.heading-copy.margin {
  margin-top: 2px;
  margin-bottom: 67px;
}

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

.heading-copy-copy {
  color: var(--heading);
  margin-bottom: 26px;
  font-size: 32px;
}

.heading-copy-copy.margin {
  margin-top: 2px;
  margin-bottom: 67px;
}

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

@media screen and (min-width: 1920px) {
  .nav-link.w--current {
    margin-left: auto;
  }

  .grid-2-columns {
    margin-left: auto;
    margin-right: auto;
  }

  .image-radius-right {
    object-fit: contain;
    position: relative;
    left: 32px;
  }

  .nav-link-copy.w--current {
    margin-left: auto;
  }
}

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

  h2 {
    font-size: 37px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 27px;
  }

  h5 {
    font-size: 22px;
  }

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

  .nav-menu {
    background-color: var(--white);
    box-shadow: 0 20px 20px -10px var(--shadow);
    border-radius: 5px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
  }

  .dropdown-toggle {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .dropdown-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dropdown-list.w--open {
    background-color: var(--background);
    box-shadow: none;
  }

  .icon-menu {
    font-size: 21px;
    line-height: 1em;
  }

  .menu-button {
    background-color: var(--white);
    box-shadow: 0 20px 20px 0 var(--shadow);
    color: var(--heading);
    border-radius: 50px;
    margin-left: 8px;
    padding: 11px;
  }

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

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

  .block-hero {
    text-align: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .heading-hero.large {
    font-size: 50px;
  }

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

  .content {
    margin-left: 0;
  }

  .grid-4-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .grid-2-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    margin-left: 0;
    padding-left: 0;
  }

  .block {
    padding: 60px 8% 15px;
  }

  .img-block.indent-right {
    margin-left: 30px;
  }

  .img-block.indent-left {
    margin-right: 30px;
  }

  .grid-figures {
    margin-top: 0;
    padding-top: 0;
    bottom: -90px;
  }

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

  .grid-3-columns.margin {
    margin-bottom: 20px;
  }

  .block-testimonial {
    padding: 44px 8% 50px;
  }

  .block-achievement {
    padding-top: 50px;
    padding-left: 8%;
    padding-right: 8%;
  }

  .number-achievement {
    font-size: 54px;
  }

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

  .client-stories {
    text-align: center;
    margin-bottom: -20px;
  }

  .banner {
    padding-left: 8%;
    padding-right: 8%;
  }

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

  .image-blog-thumbnail.first-post {
    border-top-left-radius: 5px;
    border-bottom-right-radius: 0;
  }

  .grid-figures-subscription---right, .grid-figures-subscription---left {
    width: 27%;
  }

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

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

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

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

  .block-footer-down {
    margin: 10px 0;
  }

  .block-left {
    padding: 100px 8% 15px;
  }

  .block-service-large {
    padding-left: 8%;
    padding-right: 8%;
  }

  .hero-center {
    padding-top: 110px;
  }

  .figures-circles---1 {
    top: 9%;
    left: 1%;
  }

  .figures-circles---2 {
    top: 34%;
    left: 4%;
  }

  .figures-circles---4 {
    bottom: 8%;
  }

  .figures-circles---5 {
    top: 7%;
    right: 0%;
  }

  .figures-circles---6 {
    top: 31%;
    right: 8%;
  }

  .figures-circles---7 {
    bottom: 21%;
    right: -1%;
  }

  .figures-circles---8 {
    bottom: 6%;
    right: 9%;
  }

  .grid-dark-hero {
    grid-template-columns: 1fr;
  }

  .img-dark-hero-bg {
    border-top-left-radius: 5px;
    border-top-right-radius: 0;
  }

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

  .top-center {
    padding-top: 55px;
  }

  .grid-figures-page {
    margin-bottom: 20px;
  }

  .grid-page-bg {
    grid-row-gap: 60px;
    padding-bottom: 40px;
  }

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

  .service-sticky {
    margin-bottom: 20px;
  }

  .sticky {
    margin-bottom: 0;
  }

  .image-about {
    height: 300px;
    margin-bottom: 20px;
  }

  .page-content {
    margin-top: 90px;
    margin-bottom: 60px;
  }

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

  .banner-page-top {
    padding-left: 7%;
    padding-right: 12%;
  }

  .image-blog-main {
    height: 450px;
  }

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

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

  .link-first-post {
    border-top-left-radius: 5px;
    border-bottom-right-radius: 0;
  }

  .block-first-post {
    padding: 45px 8% 55px;
  }

  .image-map {
    height: 400px;
  }

  .block-contact {
    padding-left: 8%;
    padding-right: 8%;
  }

  .grid-started {
    grid-template-columns: 1fr 6fr 1fr;
  }

  .grid-figures-started {
    grid-template-columns: 1fr;
  }

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

  .text-block-7 {
    margin-left: 0;
  }

  .section-2 {
    margin-left: 0;
    padding-left: 40px;
  }

  .block-quote-2 {
    margin-top: 10px;
    margin-left: 0;
  }

  .heading-7 {
    margin-top: 0;
    margin-left: 0;
  }

  .block-copy {
    padding: 40px 8% 15px;
  }

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

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

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .navbar {
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
  }

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

  .nav-extra-link {
    padding-left: 11px;
    padding-right: 11px;
  }

  .section-hero {
    padding-top: 0;
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-figures-hero {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .block-hero {
    padding-top: 50px;
  }

  .paragraph-large {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .heading-hero {
    margin-bottom: 24px;
  }

  .heading-hero.large {
    font-size: 44px;
  }

  .button.white {
    margin-top: 60px;
  }

  .section {
    padding: 50px 25px;
  }

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

  .link-block-service {
    padding-left: 8%;
    padding-right: 8%;
  }

  .link-block-service.but-gap {
    margin-bottom: 40px;
  }

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

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

  .image-radius-right {
    min-height: 350px;
  }

  .grid-figures {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 38%;
    bottom: -70px;
  }

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

  .grid-3-columns.margin {
    margin-bottom: 15px;
  }

  .block-achievement {
    padding: 20px 5%;
  }

  .number-achievement {
    font-size: 42px;
  }

  .space-achievement {
    margin-top: 30px;
    margin-bottom: 30px;
  }

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

  .client-stories {
    margin-bottom: -15px;
  }

  .grid-figures-banner {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 38%;
  }

  .price {
    font-size: 54px;
  }

  .price-info {
    font-size: 30px;
  }

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

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

  .grid-figures-subscription---right, .grid-figures-subscription---left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 33%;
  }

  .section-footer {
    padding-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-footer {
    margin-bottom: 50px;
  }

  .block-left {
    padding-top: 80px;
  }

  .image-radius-left {
    min-height: 350px;
  }

  .image-service-large.height {
    height: 300px;
  }

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

  .clients-block {
    padding: 35px;
  }

  .grid-clients {
    grid-column-gap: 45px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .top-center {
    padding-top: 50px;
  }

  .grid-figures-page {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-bottom: 15px;
  }

  .grid-page-bg {
    grid-row-gap: 50px;
    padding-bottom: 30px;
  }

  .image-about {
    height: 200px;
    margin-bottom: 15px;
  }

  .page-content {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .page-content.margin-top {
    margin-top: 50px;
  }

  .image-page-top {
    height: 250px;
  }

  .banner-page-top {
    margin-top: 15px;
    margin-right: 0;
    padding-top: 40px;
    padding-left: 8%;
    padding-right: 8%;
    position: relative;
    bottom: auto;
    left: auto;
  }

  .image-blog-main {
    height: 300px;
  }

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

  .image-map {
    height: 300px;
  }

  .block-contact {
    padding-top: 50px;
    padding-bottom: 40px;
  }

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

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

  .form-started {
    grid-template-columns: 1fr;
  }

  .utility-page-wrap {
    padding: 70px 15px;
  }

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

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

  .link-block-splash {
    padding-top: 6px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .italic-text-2 {
    margin-left: 0;
  }

  .text-block-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-4 {
    margin-right: 0;
    padding-left: 0;
  }

  .text-block-5 {
    margin-right: 0;
  }

  .italic-text-4 {
    margin-left: -19px;
  }

  .text-block-7 {
    margin-left: 0;
  }

  .section-2 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .image {
    margin-top: 40px;
  }

  .block-copy {
    padding-top: 60px;
    padding-left: 0%;
    padding-right: 0%;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

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

  .block-navbar {
    margin-top: 0;
  }

  .nav {
    position: relative;
    left: -14px;
  }

  .logo {
    height: 90px;
    position: relative;
    bottom: -6px;
    left: 12px;
  }

  .nav-link {
    margin-left: 0;
  }

  .nav-menu {
    background-color: var(--dark-background);
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 0;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 10px;
    display: block;
  }

  .nav-button {
    display: none;
  }

  .nav-extra-link {
    margin-left: 0;
    margin-right: 0;
  }

  .section-hero {
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-figures-hero {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .figure {
    padding-left: 0;
  }

  .block-hero {
    padding-top: 40px;
  }

  .paragraph-large.max-w {
    flex: 0 auto;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .heading-hero {
    text-align: center;
    font-size: 40px;
  }

  .heading-hero.large {
    font-size: 40px;
  }

  .button {
    width: 100%;
    margin: 30px 0 15px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .button.white {
    margin-top: 40px;
  }

  .grid-button {
    grid-template-columns: repeat(auto-fit, 100%);
    grid-auto-flow: row;
    justify-items: stretch;
    width: 100%;
  }

  .extra-link {
    margin-right: 0;
  }

  .section {
    margin-left: 0;
    padding: 40px 15px;
  }

  .content {
    margin-left: 0;
    padding-left: 0;
  }

  .heading {
    margin-left: 0;
    padding-left: 0;
    font-size: 22px;
    display: block;
  }

  .heading.margin {
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0;
    font-size: 18px;
  }

  .grid-4-columns {
    margin-left: 0;
  }

  .link-block-service {
    margin-left: 0;
    padding: 20px 4%;
  }

  .image-service {
    width: 35px;
    height: 35px;
    margin-bottom: 25px;
  }

  .paragraph-service {
    font-size: 17px;
  }

  .grid-2-columns {
    justify-items: center;
  }

  .block {
    margin-left: 0;
    padding-top: 40px;
  }

  .paragraph {
    margin-left: 0;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
  }

  .image-radius-right {
    width: auto;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .img-block {
    margin-left: 0;
  }

  .img-block.indent-right {
    margin-left: 10px;
    margin-right: -5px;
  }

  .img-block.indent-left {
    margin-left: -5px;
    margin-right: 10px;
  }

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

  .block-testimonial {
    margin-left: 0;
    padding: 34px 3% 40px;
  }

  .client-avatar {
    flex: none;
  }

  .block-achievement {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 3% 10px;
  }

  .number-achievement {
    margin-right: 0;
    font-size: 42px;
  }

  .achievement {
    flex-direction: column;
  }

  .heading-achievement {
    margin-top: 10px;
  }

  .space-achievement {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .play {
    width: 50px;
    height: 50px;
  }

  .banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-figures-banner {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    right: -5px;
  }

  .plan {
    padding-left: 8%;
    padding-right: 8%;
  }

  .price {
    font-size: 45px;
  }

  .price-info {
    font-size: 26px;
  }

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

  .image-blog-thumbnail {
    height: 200px;
  }

  .blog-post {
    margin-top: 15px;
  }

  .subscription {
    margin-left: 0;
    padding: 60px 3% 50px;
  }

  .text-field.margin {
    margin-bottom: 10px;
  }

  .grid-figures-subscription---right {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    right: -5px;
  }

  .grid-figures-subscription---left {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    left: -5px;
  }

  .section-footer {
    margin-left: 0;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .block-footer {
    margin-left: 0;
  }

  .title-footer {
    margin-bottom: 20px;
  }

  .block-footer-down {
    flex-direction: column;
  }

  .link-footer-down {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .image-figure---img-1 {
    margin-left: 0;
    padding-left: 0;
  }

  .image-figure---img-2 {
    margin-left: 0;
  }

  .block-left {
    padding-top: 60px;
    padding-left: 3%;
    padding-right: 3%;
  }

  .image-radius-left {
    min-height: 250px;
  }

  .icon-chapter {
    flex: none;
  }

  .image-service-large, .image-service-large.height {
    height: 200px;
  }

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

  .img-figures-circles {
    width: 20px;
    height: 20px;
  }

  .figures-circles {
    padding: 15px;
  }

  .figures-circles---1 {
    top: 3%;
    left: 20%;
  }

  .figures-circles---2 {
    top: 23%;
    left: -2%;
  }

  .figures-circles---3 {
    bottom: 23%;
    left: 14%;
  }

  .figures-circles---4 {
    bottom: 4%;
    left: 4%;
  }

  .figures-circles---5 {
    top: 5%;
    right: 15%;
  }

  .figures-circles---6 {
    top: 31%;
    right: 4%;
  }

  .figures-circles---7 {
    bottom: 21%;
    right: 4%;
  }

  .figures-circles---8 {
    bottom: 3%;
    right: 11%;
  }

  .block-dark-hero {
    text-align: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .top-center {
    padding-top: 40px;
  }

  .grid-figures-page {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .grid-page-bg {
    grid-row-gap: 40px;
  }

  .link-block-sticky {
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-about {
    height: 150px;
  }

  .page-content {
    margin-top: 70px;
    margin-bottom: 40px;
  }

  .page-content.margin-top {
    margin-top: 40px;
  }

  .image-blog-main {
    height: 200px;
  }

  .rich-text-block {
    margin-top: 20px;
  }

  .block-first-post {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .block-contact {
    margin-left: 0;
    padding: 20px 3%;
  }

  .form-contact {
    grid-row-gap: 10px;
  }

  .grid-figures-started {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .block-started {
    padding-left: 8%;
    padding-right: 8%;
  }

  .form-started {
    grid-row-gap: 10px;
  }

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

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

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

  .heading-3, .italic-text-2 {
    margin-left: 0;
    padding-left: 0;
  }

  .text-block-2 {
    padding-left: 0;
  }

  .heading-4 {
    margin-top: 60px;
    padding-left: 0;
  }

  .text-block-5 {
    margin-left: 0;
    padding-left: 0;
  }

  .italic-text-4 {
    margin-left: 0;
  }

  .section-2 {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-6 {
    margin-left: 0;
    font-size: 18px;
  }

  .image {
    margin-left: 0;
  }

  .block-quote-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .button-copy {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 22px;
    padding-right: 27px;
  }

  .block-copy, .image-2 {
    margin-left: 0;
  }

  .paragraph-copy {
    margin-left: 0;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
  }

  .nav-link-copy {
    margin-left: 0;
    padding-left: 41px;
  }

  .heading-copy {
    margin-left: 0;
    padding-left: 0;
    font-size: 22px;
    display: block;
  }

  .heading-copy.margin {
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0;
    font-size: 18px;
  }

  .heading-copy-copy {
    margin-left: 0;
    padding-left: 0;
    font-size: 22px;
    display: block;
  }

  .heading-copy-copy.margin {
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0;
    font-size: 18px;
  }
}

#w-node-_6415eaec-51dc-6d6d-ea32-6a6179250812-8c0bb3e0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4980f32d-4a7a-a29d-438d-69086dc8f69c-8c0bb3e0 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_9ef6629b-5a55-1659-006f-b90995b91b7b-8c0bb3e0 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_98d0004b-7b18-4ab7-fe9c-7a8820d81e2c-8c0bb3e0 {
  grid-area: 1 / 6 / 2 / 7;
}

#w-node-_0ab3d6e9-6845-a182-51fd-3eff725ff0aa-8c0bb3e0 {
  grid-area: 2 / 2 / 5 / 5;
}

#w-node-_3f3b38eb-4165-25a7-2703-7cb49df75f9c-8c0bb3e0 {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-ca0bfa06-d5ed-73af-3cd3-49371a501645-8c0bb3e0 {
  grid-area: 2 / 6 / 3 / 7;
}

#w-node-_7419ca20-308d-5125-5d33-4dc38dcdeb46-8c0bb3e0 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_8c5af6f1-c4ed-090e-ad92-9dc3909d4b40-8c0bb3e0 {
  grid-area: 3 / 5 / 4 / 6;
}

#w-node-_031ea0d8-0a2b-b3f6-0ffa-1a02eb31c559-8c0bb3e0 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-e940f620-1507-d4a1-0547-6df894584ecc-8c0bb3e0 {
  grid-area: 4 / 5 / 5 / 6;
}

#w-node-cdf268b2-2bce-8201-3068-96290f83bef3-8c0bb3e0 {
  grid-area: 4 / 6 / 5 / 7;
}

#w-node-d0093d18-6245-2b11-adc4-552bc5c9cd1f-8c0bb3e0 {
  grid-area: 5 / 2 / 6 / 3;
}

#w-node-f77234ed-afa4-4e76-d2c9-447539de17c6-8c0bb3e0 {
  grid-area: 5 / 3 / 6 / 4;
}

#w-node-f220cf52-b0a3-e847-43f3-55c3185a0632-8c0bb3e0 {
  grid-area: 5 / 5 / 6 / 6;
}

#w-node-_82bbbbe9-b84f-bb95-b290-ef5254e89fe9-8c0bb3e0 {
  grid-area: 5 / 6 / 6 / 7;
}

#w-node-cbfedda4-4357-6daa-26bd-a6a705e7e24e-8c0bb3e0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b1a9657e-5960-865e-d3bb-f8c7ab0b5941-8c0bb3e0 {
  align-self: center;
}

#w-node-b1a9657e-5960-865e-d3bb-f8c7ab0b5948-8c0bb3e0 {
  align-self: stretch;
}

#w-node-e7e3e2f0-d526-e0c5-29c9-d4356ab09aa7-8c0bb3e0 {
  align-self: center;
}

#w-node-e7357796-4db1-708b-d764-ef7466b60df7-8c0bb3e0 {
  align-self: stretch;
}

#w-node-d2a82831-a327-2329-5113-1faea1770082-8c0bb3e0 {
  align-self: center;
}

#w-node-d2a82831-a327-2329-5113-1faea1770089-8c0bb3e0 {
  align-self: stretch;
}

#w-node-d4b7370b-9fde-2d75-d1ab-954d8db9fce9-8db9fce6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8ef7fe1c-ec64-3168-f44b-a418d9b1116e-d9b1115d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8ef7fe1c-ec64-3168-f44b-a418d9b11170-d9b1115d {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_8ef7fe1c-ec64-3168-f44b-a418d9b11172-d9b1115d {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_8ef7fe1c-ec64-3168-f44b-a418d9b11175-d9b1115d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8ef7fe1c-ec64-3168-f44b-a418d9b11177-d9b1115d {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_8ef7fe1c-ec64-3168-f44b-a418d9b11179-d9b1115d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5875665c-621e-81f1-7433-e4c513e07ab5-c40bb3e7 {
  align-self: stretch;
}

#w-node-_5875665c-621e-81f1-7433-e4c513e07aca-c40bb3e7, #w-node-_838b7965-dedb-6cb8-96bb-b57e53082107-c40bb3e7 {
  align-self: center;
}

#w-node-_838b7965-dedb-6cb8-96bb-b57e5308210e-c40bb3e7 {
  align-self: stretch;
}

#w-node-aa90f10f-d3be-9ea3-d6cf-6f7f1af428bc-1af428ab {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-aa90f10f-d3be-9ea3-d6cf-6f7f1af428be-1af428ab {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-aa90f10f-d3be-9ea3-d6cf-6f7f1af428c0-1af428ab {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-aa90f10f-d3be-9ea3-d6cf-6f7f1af428c3-1af428ab {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-aa90f10f-d3be-9ea3-d6cf-6f7f1af428c5-1af428ab {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-aa90f10f-d3be-9ea3-d6cf-6f7f1af428c7-1af428ab {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_90e3fa7b-ef39-e097-e503-fe0cf09d6229-1a0bb3ee {
  align-self: end;
}

#w-node-_7e5b9cd1-dfdc-5f62-e812-70e3a089df0a-1a0bb3ee {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_62571dd8-cd4a-3f3c-1d78-89057180c1b2-1a0bb3ee {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_03f92d47-4062-a6e0-9331-1f679466ce44-1a0bb3ee {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-a82290ce-15ff-d974-da2d-5fb9bddca542-1a0bb3ee {
  grid-area: 3 / 2 / 4 / 3;
}

#Company-name.w-node-ce335115-58c1-714c-393c-9e841e485017-1a0bb3ee, #Phone.w-node-_614e1cb4-b9f0-3479-f511-18a6b76f8416-1a0bb3ee, #Email.w-node-c653b2b4-b217-4e58-d6bb-c108e3a5bbe2-1a0bb3ee, #w-node-ce335115-58c1-714c-393c-9e841e485019-1a0bb3ee {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8015b3fd-fcdc-c2e2-072e-c127ab5e0968-1a0bb3ee {
  align-self: start;
}

#w-node-_3c5fe962-922d-2708-49d6-7b67820ac360-1a0bb3ee {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-cab8b0fb-d3a5-a90f-4242-7bf32825ed0b-1a0bb3ee {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_88d266f0-1e0f-352f-d3ed-3067e755d288-1a0bb3ee {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-de233d4f-c0f6-c23f-63b1-319fcd472d17-1a0bb3ee {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-c00dd585-5604-5fa6-df19-31c79f84c015-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c017-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c019-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c01b-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c01d-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c01f-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c021-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c023-4c0bb3f1, #w-node-c00dd585-5604-5fa6-df19-31c79f84c025-4c0bb3f1, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab6a-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab6c-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab6e-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab70-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab72-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab74-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab76-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab78-9f0bb3f2, #w-node-_4464c3bb-ad6a-e871-4624-c9e64e74ab7a-9f0bb3f2, #w-node-_8beea63d-7eb2-d9e1-d307-8b09b5205e21-9f0bb3f2, #w-node-_2a51b521-7353-667c-326e-6704b23155a2-9f0bb3f2, #w-node-_998fe47a-a721-856c-f1a8-43d694f23f60-9f0bb3f2, #w-node-_8586af49-11d3-0e1e-44c6-29cc95ba74e9-9f0bb3f2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15068bf0-898f-4a79-689c-b0275cb20319-000bb3f6 {
  align-self: center;
}

#w-node-_15068bf0-898f-4a79-689c-b0275cb20320-000bb3f6, #w-node-_46fa4917-fc64-8a9a-b7c2-2ef521512693-000bb3f6 {
  align-self: stretch;
}

#w-node-_46fa4917-fc64-8a9a-b7c2-2ef5215126a8-000bb3f6, #w-node-_37cd4950-57de-b083-a938-f9ad71ec86b7-000bb3f6 {
  align-self: center;
}

#w-node-_37cd4950-57de-b083-a938-f9ad71ec86be-000bb3f6, #w-node-_43a64606-8f4f-9b75-11ea-f3fa0610b97e-000bb3f6 {
  align-self: stretch;
}

#w-node-_93c5e461-bd2e-1bb3-3d30-986fb4fcea52-000bb3f6 {
  align-self: center;
}

@media screen and (min-width: 1920px) {
  #w-node-_6415eaec-51dc-6d6d-ea32-6a6179250812-8c0bb3e0 {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6415eaec-51dc-6d6d-ea32-6a6179250812-8c0bb3e0, #w-node-_4980f32d-4a7a-a29d-438d-69086dc8f69c-8c0bb3e0, #w-node-d4b7370b-9fde-2d75-d1ab-954d8db9fce9-8db9fce6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5875665c-621e-81f1-7433-e4c513e07aca-c40bb3e7 {
    order: -9999;
  }

  #w-node-_62571dd8-cd4a-3f3c-1d78-89057180c1b2-1a0bb3ee, #w-node-a82290ce-15ff-d974-da2d-5fb9bddca542-1a0bb3ee, #w-node-_3c5fe962-922d-2708-49d6-7b67820ac360-1a0bb3ee, #w-node-_88d266f0-1e0f-352f-d3ed-3067e755d288-1a0bb3ee {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_46fa4917-fc64-8a9a-b7c2-2ef5215126a8-000bb3f6, #w-node-_93c5e461-bd2e-1bb3-3d30-986fb4fcea52-000bb3f6 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_90e3fa7b-ef39-e097-e503-fe0cf09d6229-1a0bb3ee {
    justify-self: start;
  }

  #w-node-_7e5b9cd1-dfdc-5f62-e812-70e3a089df0a-1a0bb3ee, #w-node-_03f92d47-4062-a6e0-9331-1f679466ce44-1a0bb3ee, #Company-name.w-node-ce335115-58c1-714c-393c-9e841e485017-1a0bb3ee, #Phone.w-node-_614e1cb4-b9f0-3479-f511-18a6b76f8416-1a0bb3ee, #Email.w-node-c653b2b4-b217-4e58-d6bb-c108e3a5bbe2-1a0bb3ee, #w-node-ce335115-58c1-714c-393c-9e841e485019-1a0bb3ee {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8015b3fd-fcdc-c2e2-072e-c127ab5e0968-1a0bb3ee {
    justify-self: end;
  }

  #w-node-cab8b0fb-d3a5-a90f-4242-7bf32825ed0b-1a0bb3ee, #w-node-de233d4f-c0f6-c23f-63b1-319fcd472d17-1a0bb3ee {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_04ced6a8-4030-fe7e-febe-8649c16d2af5-8c0bb3e0 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


