:root {
  --colors--bg-color: white;
  --fonts--heading-font: "DM Sans", sans-serif;
  --colors--font-color: black;
  --fonts--paragraph: Inter, sans-serif;
  --colors--paragraph-font: #000c;
  --colors--acent-color: #08b3f1;
  --colors--element-stroke-color: #7c7c7c38;
  --colors--element-color: #fbfbfb;
  --fonts--green: #08b3f1;
  --fonts--darkfont: #08b3f1;
  --fonts--bg: #fdf8f0;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--colors--bg-color);
  font-family: var(--fonts--heading-font);
  color: var(--colors--font-color);
  font-size: 14px;
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-font);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

a {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-font);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-font);
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

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

blockquote {
  border-right: 2px solid var(--colors--acent-color);
  border-left: 2px solid var(--colors--acent-color);
  text-transform: none;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: 1.7;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.white-colors-show-case {
  background-color: #fff;
  border-radius: 300px;
  width: 54px;
  height: 54px;
  box-shadow: 0 0 9px #00000047;
}

.white-colors-show-case.black {
  box-shadow: none;
  background-color: #7d7d7d;
}

.yellow-color-show-case {
  background-color: var(--colors--acent-color);
  border-radius: 300px;
  width: 54px;
  height: 54px;
}

.color-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.black-background {
  background-color: var(--colors--element-stroke-color);
}

.color-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

._4-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.black-background-padding {
  padding: 40px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 1.5rem;
}

.container.navbar-container {
  border: 1px solid var(--colors--element-stroke-color);
  background-color: var(--colors--bg-color);
  border-radius: 9px;
  align-items: center;
  width: auto;
  max-width: none;
  height: 50px;
  padding: 4px 4px 4px 14px;
  display: flex;
}

.container.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
}

.container.hero {
  max-width: none;
  height: 100%;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
}

.container.v2 {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

._100width {
  width: 100%;
}

.border-box {
  border: 1px solid #cdcdcd;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.button {
  background-color: var(--colors--font-color);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--colors--bg-color);
  border-radius: 49px;
  padding: 8px 16px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: transform .325s cubic-bezier(.175, .885, .32, 1.275), background-position .25s, background-color .45s;
  position: static;
}

.button:hover {
  color: #fff;
  background-color: #01b3f1;
  transform: scale(1.05);
}

.button.navbar-button {
  color: #fff;
  background-color: #01b3f1;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 41px;
  padding: 7px 24px;
  display: flex;
}

.button.navbar-button:hover {
  background-color: #01b3f1;
}

.button.transparent {
  color: var(--colors--font-color);
  background-color: #fff0;
  transition-property: color, background-color;
}

.button.transparent:hover {
  color: #adadad;
}

.button.purple {
  background-color: var(--colors--acent-color);
  color: #fff;
  border: 1px solid #0f0f0f;
  border-radius: 8px;
  padding: 10px 42px;
  font-size: 16px;
}

.button.form-button {
  background-color: var(--colors--acent-color);
  color: #fff;
  border-radius: 8px;
  height: 42px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 400;
  transition-property: border-color, background-color;
}

.button.form-button:hover {
  background-color: var(--colors--font-color);
  border-color: #922ab1;
}

.style-guide-box-holder {
  background-color: var(--colors--element-color);
  padding: 20px;
}

.style-guide-box-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.colors-buttons {
  grid-column-gap: 90px;
  align-items: center;
  display: flex;
}

.section {
  background-color: var(--colors--bg-color);
}

.section.overflow-hidden {
  height: 100%;
  padding-bottom: 80px;
}

.section.under {
  margin-top: -160px;
}

.section.hero {
  background-color: var(--colors--bg-color);
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.sec3 {
  background-color: var(--colors--bg-color);
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.section.green {
  background-color: #fdf8f0;
  background-image: linear-gradient(#112717b5, #112717b5), url('../images/planting-bean-seeds.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.section.green.hide {
  display: none;
}

.section.white {
  background-color: var(--colors--bg-color);
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: #151515;
  border: 2px solid #ebebeb;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

._8-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._6-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cols-text {
  font-size: 15px;
  font-weight: 400;
}

.paragraph-xl {
  font-size: 20px;
  line-height: 1.5;
}

.navbar {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-holder {
  width: 100%;
  height: 100%;
}

.navbar-container, .nav-menu-link-holder {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav-menu-link-container {
  flex: 1;
  justify-content: center;
  height: 100%;
  display: flex;
}

.brand-image {
  width: 100%;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  display: flex;
}

.nav-links {
  grid-column-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav-link {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-font);
  border-bottom: 3px solid #fff0;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 6px 12px 4px;
  font-size: 14px;
  transition: background-color .6s;
  display: flex;
  bottom: -1px;
}

.nav-link.w--current {
  color: var(--colors--paragraph-font);
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small {
  font-family: var(--fonts--heading-font);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-link {
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  transition: color .475s;
}

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

.footer-divider {
  border-top: 1px solid var(--colors--element-stroke-color);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 120px;
  padding-top: 40px;
  display: flex;
}

.footer-copyright-center {
  text-transform: uppercase;
  font-size: 15px;
}

.dark-link {
  color: var(--colors--font-color);
  text-decoration: underline;
  transition: color .375s;
}

.dark-link:hover {
  color: #a1a1a1;
}

.title {
  margin-top: 0;
  margin-bottom: 0;
}

.black-text {
  color: var(--colors--font-color);
}

.featured-logo-wrapper {
  width: 110px;
}

.title-container {
  max-width: 762px;
}

.paragraph-holder {
  max-width: 465px;
}

.early-access-card {
  perspective: 1500px;
  width: 100%;
  min-width: 370px;
  position: relative;
}

.early-access-tag-holder {
  grid-column-gap: 10px;
  align-items: center;
  font-family: IBM Plex Sans Hebrew;
  font-size: 18px;
  display: flex;
}

.early-access-title-holder {
  max-width: 349px;
}

.power-feature-card-container {
  background-color: #0d0d0d;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.power-feature-heading {
  font-size: 20px;
}

.testimonial-slide {
  width: 100%;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
  left: -15px;
}

.hide {
  display: none;
}

.pricing-tag {
  text-transform: uppercase;
  border: 1px solid #fff3;
  border-radius: 100px;
  padding: 9px 16px;
  font-family: IBM Plex Sans Hebrew;
  font-size: 18px;
}

.pricing-header {
  font-size: 42px;
  font-weight: 500;
}

.pricing-list-holder {
  border-top: 1px solid #414142;
  border-bottom: 1px solid #414142;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.checked-list-holder {
  grid-column-gap: 18px;
  align-items: center;
  display: flex;
}

.pricing-footer-holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cta-form-holder {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
}

.cta-form-holder.no-paddings {
  padding-top: 13px;
  padding-bottom: 13px;
}

.text-field {
  border: 1px solid var(--colors--element-stroke-color);
  background-color: var(--colors--element-color);
  width: 100%;
  height: 42px;
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
  border-radius: 4px;
  margin-bottom: 0;
  font-size: 17px;
  transition: border-color .45s, box-shadow .425s;
}

.text-field:hover {
  border-color: var(--colors--paragraph-font);
}

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

.text-field::placeholder {
  color: #7d7d7d;
  font-size: 15px;
}

.submit-button {
  background-color: var(--colors--acent-color);
  background-image: url('../images/Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  padding: 14px 2px 2px;
  transition: background-color .375s;
  position: absolute;
  right: 10px;
}

.submit-button:hover {
  background-color: #0f56c3;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #333;
  border: 1px solid #aa5252;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  box-shadow: 0 4px 4px #0000003d, 0 0 14px #0000003d, 0 21px 36px #ff00041f;
}

.error-message::placeholder {
  color: #7d7d7d;
  font-family: IBM Plex Sans Hebrew;
  font-size: 15px;
}

.help-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.help-container {
  border-right: 1px solid var(--colors--element-stroke-color);
  min-width: 270px;
  padding-top: 80px;
  position: relative;
}

.help-content-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 80px;
  display: flex;
}

.help-back-link-holder {
  grid-column-gap: 8px;
  color: #7d7d7d;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: color .4s;
  display: flex;
}

.help-back-link-holder:hover {
  color: #fff;
}

.help-icon-holder {
  width: 8px;
}

.help-icon {
  width: 100%;
}

.help-link-holder {
  grid-row-gap: 36px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.help-link-container {
  z-index: 3;
  grid-column-gap: 16px;
  opacity: .5;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  left: 2px;
}

.help-link-container.w--current {
  border-right: 3px solid var(--colors--acent-color);
  opacity: 1;
}

.help-link-icon-holder {
  width: 26px;
}

.help-link-icon {
  filter: invert();
  width: 100%;
}

.help-center-pragraph-holder {
  max-width: 570px;
}

.figma-file-holder {
  margin-top: 40px;
  margin-bottom: 40px;
}

.figma-file-container {
  grid-column-gap: 32px;
  border: 1px solid var(--colors--element-stroke-color);
  background-color: var(--colors--bg-color);
  opacity: 1;
  border-radius: 8px;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 6px 4px #00000040;
}

.figma-file-container.center {
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.figma-file-icon-holder {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.figla-file-icon {
  filter: invert();
  width: 100%;
}

.figma-file-content-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.figma-header {
  font-size: 24px;
}

.full-width-image-holder {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.sticky {
  position: sticky;
  top: 85px;
}

.link {
  text-decoration: underline;
  transition: color .375s;
}

.link:hover {
  color: #afafaf;
}

.change-log-block-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 600px;
  display: flex;
}

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

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

.brand {
  width: 210px;
}

.hero-section-holder {
  grid-row-gap: 60px;
  flex-direction: column;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-section-container {
  z-index: 1;
  grid-row-gap: 10px;
  perspective: 1500px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-text-holder {
  flex-direction: column;
  align-items: center;
  max-width: 740px;
  display: flex;
}

.hero-paragraph-holder {
  max-width: 480px;
}

.hero-button-holder {
  grid-column-gap: 20px;
  flex-direction: row;
  display: flex;
}

.hero-section-app-holder {
  z-index: 1;
  perspective: 1500px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: sticky;
  top: 120px;
}

.hero-section-app-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 440px;
  display: flex;
  position: relative;
}

.hero-section-phone-holder {
  z-index: 1;
  width: 100%;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  position: relative;
}

.hero-section-phone-screenshot-holder {
  padding: 5%;
  position: absolute;
  inset: 0%;
}

.hero-section-phone-screenshot-image {
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  height: 100%;
}

.hero-section-phone-image {
  z-index: 1;
  width: 100%;
  position: relative;
}

.hero-background-holder {
  border-radius: 60px;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-background {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 60px;
  width: 100%;
  min-width: 100%;
  height: 1000px;
}

.other-cards-holder {
  z-index: 1;
  perspective: 1500px;
  padding: 60px;
  position: absolute;
  inset: 0%;
}

.other-card-image {
  border-radius: 40px;
  position: absolute;
  box-shadow: 0 0 #0000, 0 1px .4px #00000008, 0 2px .8px #0000000a, 0 3.4px 1.6px #0000000b, 0 5.4px 2.9px #0000000c, 0 8.9px 5.3px #0000000c, 0 15.4px 10.4px #0000000d, 0 30.6px 22.8px #0000000e;
}

.other-card-image._02 {
  border-radius: 40px;
  width: 200px;
  inset: 306px auto auto -156px;
}

.other-card-image._03 {
  border-radius: 40px;
  width: 330px;
  position: absolute;
  inset: 180px -255px auto auto;
}

.other-card-image._04 {
  border-radius: 40px;
  width: 220px;
  position: absolute;
  inset: auto -100px 130px auto;
}

.reviews-logos-holder {
  align-items: center;
  padding-bottom: 8em;
  display: flex;
  overflow: hidden;
}

.reviews-logos-container {
  grid-column-gap: 90px;
  flex-direction: row;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.reviews-logos {
  min-width: 130px;
}

.reviews-logo-image {
  width: 100%;
}

.grey-text {
  color: var(--colors--paragraph-font);
  font-size: 16px;
}

.deploying-app-section-holder {
  grid-row-gap: 120px;
  flex-direction: column;
  padding-top: 130px;
  display: flex;
}

.deploying-app-section-container {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.deploying-app-section-container.second {
  grid-template-columns: 1fr 1.15fr;
}

.deploying-app-title-holder {
  max-width: 440px;
  margin-bottom: 20px;
}

.deploying-app-link-holder {
  grid-column-gap: 8px;
  align-items: center;
  margin-top: 32px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  display: flex;
}

.arrow-right {
  width: 13px;
}

.stats-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 55px;
  display: grid;
}

.stats-container {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  border: 1px solid var(--colors--element-stroke-color);
  background-color: var(--colors--element-color);
  opacity: .8;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 19px;
  display: flex;
}

.purple-text {
  font-family: var(--fonts--heading-font);
  color: var(--colors--acent-color);
  letter-spacing: -1.8px;
  font-size: 42px;
  font-weight: 500;
}

.grey-paragraph {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-font);
  font-size: 15px;
  font-weight: 400;
}

.deploying-app-images-holder {
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.deploying-app-bg {
  filter: blur(20px);
  object-fit: cover;
  width: 100%;
  min-width: 140%;
  height: 100%;
  min-height: 140%;
  position: absolute;
  transform: rotate(0);
}

.deploying-app-screenshot {
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: clip;
}

.deploying-app-screenshot-holder {
  perspective: 1500px;
  width: 100%;
  height: 100%;
  position: static;
}

.deploying-app-paragraph-holder {
  max-width: 530px;
}

.gradient-line {
  background-image: linear-gradient(90deg, #0000, var(--colors--font-color) 17%, var(--colors--font-color) 81%, #0000);
  opacity: .5;
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.logo-interection-container {
  display: flex;
}

.logo-interection-wrapper {
  grid-column-gap: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.logo-interection-logo-holder {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  overflow: hidden;
}

.logo-interection-logo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-signup-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 320px;
  display: flex;
}

.footer-title {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.form {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.success-message {
  border: 1px solid var(--colors--element-color);
  background-color: var(--colors--acent-color);
  color: var(--colors--element-color);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
}

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

.social-media-holder {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.social-media-container {
  width: 24px;
}

.social-media-image {
  width: 100%;
}

.footer-holder {
  position: relative;
}

.footer-container {
  z-index: 2;
  background-color: var(--colors--bg-color);
  border-radius: 70px 70px 0 0;
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
}

.footer-gradient {
  object-fit: cover;
  border-radius: 70px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: -1px 0% 0%;
  overflow: hidden;
  transform: rotate(180deg);
}

.buy-template {
  z-index: 19;
  margin: 15px;
  position: fixed;
  inset: auto 0% 0% auto;
}

.app-overlay {
  z-index: 1;
  background-color: #0000001a;
  border-radius: 20%;
  position: absolute;
  inset: 0%;
}

.hero-section-wrapper {
  height: 100%;
}

.hero-section {
  height: 170vh;
}

.hero-section-container-extra {
  z-index: 1;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: 0;
  perspective: 1500px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  transform: translate(0, 129px);
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d62ff;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #dd23bb;
}

.text-size-tiny {
  font-size: .75rem;
}

.nav_menu_link {
  color: #fff;
  padding: 1rem;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #eee;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.fs-styleguide_hero-label {
  color: #000;
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.padding-custom3 {
  padding: 3.5rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.background-color-secondary {
  background-color: #2d62ff;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.margin-xsmall {
  margin: .5rem;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-weight-xbold {
  font-weight: 800;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-small {
  padding: 1rem;
}

.fs-styleguide_header {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.pointer-events-auto {
  pointer-events: auto;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.text-color-alternate {
  color: #fff;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.text-weight-medium {
  font-weight: 500;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.text-style-muted {
  opacity: .6;
}

.margin-custom1 {
  margin: 1.5rem;
}

.container-small {
  width: 100%;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
}

.text-size-regular {
  font-size: 1rem;
}

.fs-styleguide_spacing-all {
  display: none;
}

.form_component {
  margin-bottom: 0;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

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

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-small {
  margin: 1rem;
}

.text-align-center {
  text-align: center;
  font-size: 17px;
}

.hide-2 {
  display: none;
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.overflow-scroll {
  overflow: scroll;
}

.margin-tiny {
  margin: .125rem;
}

.padding-xhuge {
  padding: 8rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-height-small {
  height: 1rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.text-color-primary {
  color: #000;
}

.padding-large {
  padding: 3rem;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-align-right {
  text-align: right;
}

.padding-section-small {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.padding-section-small.is-hero {
  padding-bottom: 0;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-custom1 {
  padding: 1.5rem;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.padding-0 {
  padding: 0;
}

.overflow-auto {
  overflow: auto;
}

.text-style-italic {
  font-style: italic;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.padding-custom2 {
  padding: 2.5rem;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

.text-color-secondary {
  color: #222;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.margin-large {
  margin: 3rem;
}

.margin-0 {
  margin: 0;
}

.icon-height-large {
  height: 3rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.form_message-success {
  color: #114e0b;
  background-color: #cef5ca;
  padding: 1.25rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.background-color-alternate {
  background-color: #fff;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button-3.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button-3.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #222;
}

.button-3.is-large {
  padding: 1rem 2rem;
}

.button-3.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button-3.is-small {
  padding: .5rem 1.25rem;
}

.margin-medium {
  margin: 2rem;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

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

.text-style-allcaps {
  text-transform: uppercase;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.margin-custom2 {
  margin: 2.5rem;
}

.nav_button {
  padding: 1rem;
}

.text-weight-bold {
  font-weight: 700;
}

.padding-medium {
  padding: 2rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-size-small {
  font-size: .875rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.text-size-large {
  font-size: 2rem;
}

.text-size-large.text-align-center.is-gray {
  color: #5b5c5db3;
  font-size: 32px;
}

.form_message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

.padding-xsmall {
  padding: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.text-style-nowrap {
  white-space: nowrap;
}

.margin-huge {
  margin: 6rem;
}

.page-wrapper {
  overflow: hidden;
}

.nav_component {
  background-color: #000;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  inset: 0% 0% auto;
}

.padding-xxsmall {
  padding: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-huge {
  padding: 6rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.form_input {
  background-color: #0000;
  border: 1px solid #eee;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: #222;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.padding-global {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-style-link {
  color: #2d62ff;
  text-decoration: underline;
}

.padding-tiny {
  padding: .125rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.background-color-tertiary {
  background-color: #dd23bb;
}

.text-size-medium {
  font-size: 1.25rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacer-large {
  padding-top: 3rem;
}

.background-color-primary {
  color: #fff;
  background-color: #000;
}

.container-medium {
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_logo {
  width: 10rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.icon-height-medium {
  height: 2rem;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.hamburger-menu-wrapper {
  padding: 0;
}

.hamburger-menu-wrapper.w--open {
  background-color: #0000;
}

.header-right-side {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header-nav-menu-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.container-default {
  max-width: 1218px;
  padding-left: 24px;
  padding-right: 24px;
}

.header-wrapper {
  background-color: #0000;
  border-bottom: 1px solid #dadcda;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-wrapper:where(.w-variant-86e99aa2-5698-8008-4a5a-aa71e5bdb94c) {
  background-color: #f2fbff;
}

.hamburger-menu-bar {
  background-color: #211f54;
  border-radius: 20px;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  display: flex;
}

.flex.gab-25px {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: space-between;
}

.flex.gab-25px._w-100 {
  justify-content: space-between;
  width: 100%;
  max-width: none;
}

.flex.gab-4 {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
}

.flex.space_between {
  justify-content: space-between;
}

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

.flex.space_between-copy {
  justify-content: space-between;
}

.blog_post_v1 {
  text-align: left;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.max_w-790px {
  width: 100%;
  max-width: 790px;
}

.max_w-550px {
  width: 100%;
  max-width: 550px;
}

.trending_text_wrapper {
  color: var(--fonts--green);
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
}

.green_line {
  background-color: var(--colors--acent-color);
  width: 100%;
  max-width: 44px;
  height: 2px;
  color: var(--colors--acent-color);
}

.blogs_wrapper_v {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 20px;
  display: flex;
}

.blog_v {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog_image {
  aspect-ratio: 412 / 233;
  object-fit: cover;
  width: 100%;
}

.blog_image_wrapper_v {
  border-radius: 15px;
  width: 100%;
  max-width: 200px;
  overflow: hidden;
}

.blog_details {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--fonts--green);
  flex-flow: column;
  font-size: .875rem;
  display: flex;
}

.blog_title {
  color: var(--colors--font-color);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.image_blog_l {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.image_blog_l.h-338px {
  object-fit: cover;
  height: 338px;
}

.blog_description {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #9ee89a;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: auto auto 26px 25px;
}

.blog_description.white {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--colors--bg-color);
  justify-content: flex-start;
  align-items: center;
  left: 0;
  right: 0;
}

.blog_description._w-75 {
  max-width: 70%;
  overflow: visible;
}

.blog_description.center_text {
  text-align: center;
  right: 25px;
}

.h2 {
  color: var(--colors--bg-color);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.875rem;
  line-height: 120%;
}

.h2.green {
  color: var(--colors--acent-color);
  font-size: 2.875rem;
  font-weight: 700;
}

.h2.green._2rem {
  color: var(--colors--acent-color);
  text-align: center;
  font-size: 2rem;
}

.h2.green._2-6rem {
  text-align: center;
  font-size: 2.6rem;
}

.h2._14px {
  color: var(--colors--acent-color);
  font-size: .875rem;
  font-weight: 700;
}

.h2._1-5rem {
  font-size: 1.5rem;
  font-weight: 900;
}

.h2._4rem {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}

.h2._1 {
  color: var(--colors--bg-color);
  font-size: 2.8rem;
}

.white_bg {
  background-color: var(--colors--bg-color);
  border-radius: 25px;
  padding: 20px 25px;
}

.max_w-25 {
  width: 100%;
  max-width: 25%;
}

.max_w-75 {
  width: 100%;
  max-width: 75%;
}

.center {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 30px;
  display: flex;
}

.body {
  font-family: Rubik, sans-serif;
  font-weight: 400;
}

.mt-40px {
  margin-top: 40px;
}

.main_button {
  background-color: #08b3f1;
  border-radius: 8px;
  padding: 17px 26px;
  font-family: Rubik, sans-serif;
  font-size: 1.25rem;
}

.blog_post_v2 {
  position: relative;
}

.posts_wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 65px;
  display: flex;
}

.post_wrapper_col {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 50%;
  display: flex;
  position: relative;
}

.blog_post_v4 {
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 209px;
  position: relative;
  overflow: hidden;
}

.image-2 {
  object-fit: cover;
  width: 100%;
  height: 209px;
}

.category {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  max-width: 150px;
  color: var(--fonts--darkfont);
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-right: 4%;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.category_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  margin-top: 65px;
  display: flex;
}

.mt-55px {
  margin-top: 55px;
}

.product_slider {
  width: 100%;
  max-width: 25rem;
}

.product_title {
  color: var(--colors--font-color);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.product_title._2-625rem {
  color: var(--colors--font-color);
  font-size: 2rem;
  font-weight: 700;
}

.product_title._2-625rem._2 {
  color: var(--colors--font-color);
  font-size: 2.1rem;
}

.product_slider_content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--fonts--green);
  flex-flow: column;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.green-section_content-left {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  max-width: 50%;
  color: var(--colors--bg-color);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 10%;
  font-size: 18px;
  display: flex;
}

.green-section_content-left.green {
  color: var(--fonts--darkfont);
}

.post_wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 65px;
  display: grid;
}

.post_wrapper.all {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
}

.post {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  width: 100%;
  max-width: 680px;
  display: flex;
}

.text-block {
  color: var(--colors--font-color);
  font-size: 1.125rem;
  font-weight: 400;
}

.slider_wrap {
  background-color: var(--colors--bg-color);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  width: 100%;
  max-width: 56%;
  margin-left: auto;
  padding: 60px 60px 60px 40px;
  position: relative;
  overflow: hidden;
}

.wrapper {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.list {
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  transform: translate(0%);
}

.item {
  cursor: grab;
  flex: none;
  width: 26em;
  padding-right: 1em;
}

.track {
  background-color: #d3e2d2;
  border-radius: 100vw;
  width: 100%;
  max-width: 500px;
  height: 4px;
  margin-top: 3em;
}

.handle {
  background-color: var(--colors--acent-color);
  cursor: grab;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 6em;
  height: 4px;
  position: relative;
  top: 0%;
}

.slider_button_toright {
  background-color: var(--colors--acent-color);
  width: 40px;
  height: 40px;
  color: var(--colors--bg-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.slider_button_toright:hover {
  opacity: .5;
}

.slider_button_toleft {
  background-color: var(--colors--acent-color);
  width: 40px;
  height: 40px;
  color: var(--colors--bg-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.slider_button_toleft:hover {
  opacity: .5;
}

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

.div-block-4 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-end;
  margin-top: -18px;
  padding-right: 15px;
  display: flex;
}

.blog_page {
  background-image: none;
  padding-top: 60px;
}

.heading-2 {
  max-width: 95%;
  color: var(--colors--font-color);
  font-family: Rubik, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.div-block-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.text-block-2 {
  max-width: 90%;
  color: var(--colors--font-color);
  font-family: Rubik, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.image-3 {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  max-width: 80px;
  height: 100%;
  max-height: 80px;
}

.div-block-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-7 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.div-block-7.green {
  color: var(--fonts--green);
  font-family: Rubik, sans-serif;
  font-weight: 500;
}

.text-block-3 {
  color: var(--colors--font-color);
  font-family: Rubik, sans-serif;
  font-weight: 400;
}

.text-block-3.bold {
  color: var(--colors--font-color);
  font-weight: 500;
}

.div-block-8 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.image-4 {
  border-radius: 25px;
  width: 100%;
  max-width: none;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page_content {
  border: 1px solid #c3d2bf;
  border-radius: 20px;
  margin-top: 35px;
  padding: 20px;
}

.heading-3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.blog_links {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-top: 25px;
  display: flex;
}

.blog_link {
  color: var(--colors--font-color);
  font-family: Rubik, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: underline;
}

.section-3 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.rich_text {
  color: var(--colors--font-color);
}

.rich_text h1 {
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Rubik, sans-serif;
  font-size: 2.875rem;
  font-weight: 700;
}

.rich_text h2 {
  font-family: Rubik, sans-serif;
  font-size: 2.875rem;
  font-weight: 700;
}

.rich_text p {
  color: var(--colors--font-color);
  font-family: Rubik, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.heading-4 {
  text-align: center;
  font-family: Rubik, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

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

.div-block-9 {
  background-color: var(--colors--acent-color);
  width: 50px;
  height: 50px;
  color: var(--colors--bg-color);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.wrapper2 {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.handle2 {
  background-color: var(--fonts--green);
  cursor: grab;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 6em;
  height: 4px;
  position: relative;
  top: 0%;
}

.track2 {
  background-color: #d3e2d2;
  border-radius: 100vw;
  width: 100%;
  max-width: 500px;
  height: 4px;
  margin-top: 3em;
}

.wrapper3 {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.track3 {
  background-color: #d3e2d2;
  border-radius: 100vw;
  width: 100%;
  max-width: 500px;
  height: 4px;
  margin-top: 3em;
}

.handle3 {
  background-color: var(--colors--acent-color);
  cursor: grab;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 6em;
  height: 4px;
  position: relative;
  top: 0%;
}

.slider_button_toleft3 {
  background-color: var(--colors--acent-color);
  width: 40px;
  height: 40px;
  color: var(--colors--bg-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.slider_button_toleft3:hover {
  opacity: .5;
}

.slider_button_toright3 {
  background-color: var(--colors--acent-color);
  width: 40px;
  height: 40px;
  color: var(--colors--bg-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.slider_button_toright3:hover {
  opacity: .5;
}

.text-block-4, .text-block-5, .text-block-9 {
  color: var(--colors--acent-color);
}

.image-5 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.div-block-11 {
  border-radius: 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.collection-item {
  width: 100%;
}

.image-6 {
  object-fit: cover;
  width: 100%;
  max-width: 782px;
  height: 586px;
}

.blog_post_v3-copy {
  width: 100%;
  max-width: none;
  height: 100%;
  position: relative;
}

.collection-list-wrapper-2 {
  width: 100%;
  max-width: 376px;
}

.image-7 {
  object-fit: cover;
  border-radius: 1rem;
  height: 250px;
  position: static;
}

.image-8 {
  object-fit: cover;
  border-radius: 1rem;
  height: 250px;
}

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

.collection-list-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.collection-list-wrapper-3 {
  width: 100%;
}

.text-block-10, .text-block-11, .text-block-12 {
  color: var(--colors--font-color);
}

.text-block-13 {
  color: var(--colors--acent-color);
}

.slider {
  background-color: #0000;
  max-width: none;
  height: 400px;
}

.slide {
  width: 100%;
  max-width: 22rem;
  margin-right: 1rem;
}

.mask {
  overflow: hidden;
}

.arrow {
  background-color: var(--colors--acent-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  inset: auto 20px -41px auto;
}

.arrow.left {
  justify-content: center;
  align-items: center;
  display: flex;
  right: 70px;
}

.team-slider_cms_list.swiper-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.team-slider_cms_item.swiper-slide {
  width: auto;
  height: auto;
  padding-left: calc(var(--site--gutter) * .5);
  padding-right: calc(var(--site--gutter) * .5);
  flex: none;
}

.team-slider_cms_item.swiper-slide:last-child {
  margin-right: 40px;
}

.team-slider_bullet_wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: none;
  width: auto !important;
}

.team-slider_component {
  container-type: inline-size;
}

.team-slider_layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  place-content: center space-between;
  align-items: center;
  margin-top: 2rem;
  padding-right: 10px;
  display: flex;
}

.team-slider_draggable_handle {
  background-color: var(--colors--acent-color);
  cursor: grab;
  border-radius: 100vw;
  width: 30%;
  height: 100%;
}

.team-slider_cms_wrap.swiper {
  margin-left: calc(var(--site--gutter) * -.5);
  margin-right: calc(var(--site--gutter) * -.5);
  overflow: visible;
}

.team-slider_btn_layout {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.team-slider_bullet_item {
  aspect-ratio: 1;
  background-color: #eee0;
  border-style: solid;
  border-width: .09rem;
  border-radius: 100vw;
  width: 1rem;
  min-width: 0;
  padding: 0;
}

.team-slider_bullet_item.is-active {
  background-color: currentColor;
}

.team-slider_draggable_wrap {
  border: .09rem solid var(--colors--acent-color);
  border-radius: 100vw;
  width: 14rem;
  min-width: 0;
  max-width: 100%;
  height: 1rem;
}

.team-slider_btn_element.swiper-button-disabled {
  opacity: .5;
  pointer-events: none;
}

.button-4, .button-5 {
  border-radius: 8px;
}

.category-nav-section {
  background-color: #f2fbff;
  flex-flow: column;
  justify-content: center;
  height: 67px;
  display: flex;
}

.category-nav-section.hide {
  display: none;
}

.container-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: row;
  height: auto;
  display: flex;
}

.link-4, .link-5, .link-6, .link-7, .link-8, .link-9, .link-10 {
  font-size: 16px;
}

.section-4 {
  padding: 60px 1.5rem 20px;
}

.container-3 {
  justify-content: center;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.paragraph {
  font-size: 16px;
}

.heading-5 {
  font-size: 64px;
}

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

.heading-6 {
  font-size: 64px;
  font-weight: 700;
}

.div-block-12 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.div-block-13 {
  background-color: #ececec;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.text-block-14, .text-block-15, .bold-text {
  font-size: 40px;
}

.image-9 {
  width: 24px;
  height: 25px;
}

.div-block-14 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-16 {
  font-size: 16px;
  font-weight: 500;
}

.div-block-15 {
  border: 1px solid #000;
  border-radius: 20px;
  flex-flow: column;
  width: 360px;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.text-block-17 {
  width: 145px;
  height: 0;
  color: var(--fonts--green);
  text-align: center;
  border: 1px solid #21bdf3;
  border-radius: 8px;
  flex: 0 auto;
  margin-left: 10px;
  font-weight: 700;
}

.image-10 {
  border-radius: 0;
  width: 100%;
  padding-bottom: 10px;
}

.link-11 {
  border-bottom: 2px solid #f7f7f7;
  margin-top: 14px;
  margin-left: 24px;
  margin-right: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.div-block-16 {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
}

.div-block-17 {
  border: 1px solid var(--colors--acent-color);
  text-align: left;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 160px;
  height: 31px;
  margin-left: 20px;
  padding-left: 6px;
  padding-right: 6px;
  font-weight: 700;
  display: flex;
}

.text-block-18 {
  color: var(--colors--acent-color);
}

.body-2 {
  border-bottom: 2px solid #ececec;
  font-size: 16px;
}

.link-12 {
  font-size: 16px;
}

.link-13 {
  border-bottom: 2px solid #ececec;
  margin-left: 24px;
  margin-right: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
}

.bold-text-2 {
  font-size: 18px;
}

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

.link-15 {
  margin-left: 24px;
  margin-right: 24px;
  padding-top: 14px;
  padding-bottom: 24px;
}

.section-5 {
  padding: 20px 1.5rem 60px;
}

.heading-7 {
  font-size: 32px;
}

.heading-8 {
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.div-block-18 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.container-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: block;
}

.container-5 {
  display: block;
  overflow: hidden;
}

.div-block-19 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.heading-9 {
  font-size: 32px;
  font-weight: 700;
}

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

.heading-11 {
  font-size: 42px;
  font-weight: 700;
}

.button-6 {
  background-color: #44c9f6;
  border-radius: 8px;
}

.div-block-20 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  padding-top: 0;
  display: grid;
}

.heading-12 {
  font-size: 18px;
  font-weight: 700;
}

.div-block-21 {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
}

.link-16 {
  color: var(--colors--acent-color);
  font-weight: 700;
  text-decoration: underline;
}

.image-11 {
  border-radius: 20px;
}

.section-6 {
  background-color: #d8f0fb;
  padding: 60px 1.5rem;
}

.container-6 {
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-22 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.heading-13 {
  font-size: 36px;
  font-weight: 500;
}

.div-block-23 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.div-block-24 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-19, .text-block-20 {
  min-width: 200px;
  font-size: 20px;
  font-weight: 500;
}

.button-7 {
  text-align: center;
  background-color: #44c9f6;
  border-radius: 14px;
  min-width: 121px;
  min-height: 42px;
  margin-top: 20px;
  font-size: 18px;
}

.section-7 {
  padding: 60px 1.5rem;
}

.div-block-25 {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.heading-14 {
  font-size: 32px;
  font-weight: 700;
}

.link-17 {
  color: var(--colors--acent-color);
  font-weight: 600;
}

.div-block-26 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  min-width: 0;
  max-width: none;
  display: flex;
}

.heading-15 {
  margin-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 18px;
  font-weight: 700;
}

.link-18 {
  color: var(--colors--acent-color);
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 700;
}

.div-block-27 {
  cursor: ew-resize;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  min-width: 180px;
  max-width: 220px;
  padding-bottom: 24px;
}

.expert-advice-section {
  background-color: #d8f0fb;
  padding: 60px 1.5rem;
}

.div-block-28 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.div-block-29, .div-block-30 {
  width: 50%;
}

.heading-16 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.div-block-31 {
  padding-top: 12px;
  display: flex;
}

.image-12 {
  width: 24px;
  height: 24px;
}

.text-block-21 {
  margin-bottom: 20px;
}

.text-block-22 {
  padding-left: 12px;
}

.button-8 {
  background-color: #02b3f1;
  border-radius: 12px;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.div-block-32 {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.div-block-33 {
  justify-content: center;
  display: flex;
}

.image-13 {
  width: 55px;
  height: 55px;
  margin-right: 12px;
  padding-right: 0;
}

.footer-section {
  padding: 60px 1.5rem;
}

.div-block-34 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  display: flex;
}

.image-14 {
  width: 75px;
  height: 75px;
}

.div-block-35 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-15 {
  width: 24px;
  height: 24px;
  margin-right: 24px;
}

.text-block-23 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.heading-17, .heading-18, .bold-text-3, .heading-19 {
  font-size: 16px;
}

.heading-20 {
  font-size: 16px;
  font-weight: 700;
}

.div-block-36 {
  flex-flow: column;
  display: flex;
}

.link-19 {
  padding-top: 16px;
}

.link-20, .link-21 {
  margin-top: 16px;
}

.image-wrapper {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.overlay {
  background-color: #00000073;
  position: absolute;
  inset: 0%;
}

.empty-state {
  background-color: #0000;
}

.text-block-24 {
  color: var(--colors--font-color);
}

.section_hero-about {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section_hero-p-mwidth {
  width: 100%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.section_hero-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--colors--bg-color);
  text-align: center;
  border-radius: 15px;
  justify-content: center;
  width: 100%;
  padding: 3rem 24px;
  display: flex;
}

.body-3 {
  background-color: #f8fafb;
}

.section_hero-content-col-left {
  width: 100%;
  max-width: 70%;
}

.section_hero-content-col-right {
  border-radius: 15px;
  width: 100%;
  max-width: 25%;
  overflow: hidden;
}

.heading-21 {
  font-size: 40px;
  font-weight: 700;
}

.image-16 {
  width: 100%;
}

.heading-22.is-bold {
  font-weight: 700;
}

.heading-22.is-bold.text-align-center {
  font-size: 64px;
}

.section_values-cards-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.section_values-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #f1f7fb;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem 2.5rem;
  font-size: 17px;
  display: flex;
}

.text-block-25 {
  font-size: 24px;
  font-weight: 700;
}

.text-block-25.blue {
  color: var(--colors--acent-color);
  font-size: 20px;
}

.section_team-cards-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.section_team-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--colors--bg-color);
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem 2.5rem;
  font-size: 17px;
  display: flex;
}

.image-17 {
  border-radius: 50%;
  width: 100%;
  max-width: 80px;
  height: 80px;
}

.section_numbrs-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--colors--element-color);
  background-color: #0891ed;
  border-radius: 15px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 2rem;
  display: grid;
}

.section_numbrs-card {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-27 {
  font-size: 32px;
  font-weight: 700;
}

.text-block-28 {
  font-size: 18px;
}

.section_cta-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--colors--bg-color);
  text-align: center;
  border-radius: 15px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.div-block-37 {
  max-width: 60%;
}

.buttons-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-9 {
  border-radius: 8px;
  font-size: 16px;
}

.button-9.v2 {
  color: var(--colors--font-color);
  background-color: #f4f4f4;
}

.container-7 {
  width: 100%;
  max-width: 1200px;
}

.text-block-29 {
  color: var(--colors--font-color);
}

.image-18, .collection-list-wrapper-4 {
  width: 100%;
}

.div-block-39 {
  width: 100%;
  max-width: 60%;
}

.link-22 {
  font-size: 16px;
}

.text-span {
  color: var(--colors--acent-color);
}

.slider-2 {
  background-color: #0000;
  width: 100%;
  max-width: 773px;
  height: 100%;
}

.left-arrow {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.right-arrow {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.slider_cotnet {
  margin-top: 84px;
}

.font-wight-bold {
  font-weight: 700;
}

.btns-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.btns-wrapper.mt-50px {
  margin-top: 50px;
}

.btns-wrapper.v2 {
  width: auto;
}

.link-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 100%;
  max-width: 285px;
  color: var(--colors--bg-color);
  background-color: #01b3f1;
  border-radius: 26px;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 39px;
  font-size: 20px;
  display: flex;
}

.link-block.is-white {
  color: var(--colors--font-color);
  background-color: #fff;
  border: 1px solid #ececec;
  justify-content: center;
  align-items: center;
}

.link-block.is-white.v2 {
  background-color: #fff;
  border-radius: 12px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
}

.link-block.v2 {
  background-color: #1bbcf3;
  border: 1px solid #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
}

.icon-embed-xxsmall-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.logos-wrapper-section {
  font-size: 36px;
}

.flex-scrolling-copy {
  background-color: #01b3f1;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.logo-grid-ticker {
  grid-column-gap: 2vw;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.logo-grid-ticker.v2 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.logo-wrap-ticker {
  justify-content: center;
  align-items: center;
  min-width: 200px;
  display: flex;
}

.company-logo {
  object-fit: contain;
  flex: 1;
  width: 100%;
  max-width: 150px;
}

.company-logo.is-small {
  max-width: 60px;
}

.image-19 {
  margin-top: 70px;
  margin-bottom: 111px;
}

.div-block-40 {
  justify-content: space-between;
  margin-top: 48px;
  display: flex;
}

.div-block-41 {
  width: 100%;
  max-width: 900px;
  margin-bottom: 109px;
  margin-left: auto;
  margin-right: auto;
}

.image-20 {
  width: 100%;
  max-width: 367px;
}

.image-21 {
  width: 100%;
  max-width: 498px;
}

.image-22 {
  width: 100%;
  margin-top: 70px;
}

.div-block-42 {
  padding-top: 50px;
}

.tab-wrapper {
  margin-top: 70px;
}

.tab-link {
  color: #484848;
  background-color: #0000;
  border: 1px solid #00000042;
  border-radius: 8px;
  padding: 13px 40px;
  font-size: 24px;
}

.tab-link.w--current {
  color: var(--colors--bg-color);
  background-color: #80bcff;
  border-style: none;
}

.tabs-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  display: flex;
}

.div-block-43 {
  margin-top: 50px;
}

.cta-sec {
  color: var(--colors--bg-color);
  background-color: #01b3f1;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 30px 48px;
  display: flex;
}

.text-block-30 {
  font-size: 25px;
}

.text-span-2 {
  font-size: 32px;
  font-weight: 500;
}

.div-block-44 {
  padding-top: 95px;
}

.div-block-45 {
  padding-bottom: 94px;
}

.text-block-31 {
  font-size: 17px;
}

.link-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: block;
}

.heading-23 {
  text-align: center;
}

.paragraph-3 {
  font-size: 16px;
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }

  .featured-logo-wrapper {
    width: 130px;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .container.hero {
    padding-left: 21px;
    padding-right: 21px;
  }

  .section.green, .section.white {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .navbar-container {
    grid-column-gap: 80px;
  }

  .nav-menu-link-holder {
    grid-row-gap: 20px;
    background-color: var(--colors--bg-color);
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu-link-container {
    flex-flow: column;
    height: auto;
  }

  .brand-image {
    width: 70%;
  }

  .nav-menu {
    height: auto;
    padding-left: 0;
  }

  .nav-links {
    grid-row-gap: 20px;
    flex-direction: column;
    height: auto;
  }

  .footer-wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-divider {
    margin-top: 60px;
    padding-top: 20px;
  }

  .featured-logo-wrapper {
    width: 150px;
  }

  .help-holder {
    flex-direction: column;
    display: flex;
  }

  .help-container {
    border-right-style: none;
  }

  .help-link-holder {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .help-link-container.w--current {
    border-right-style: none;
  }

  .menu-button {
    border-radius: 8px;
    padding: 10px;
    transition: background-color .4s;
  }

  .menu-button.w--open {
    background-color: var(--colors--acent-color);
    border-radius: 8px;
    padding: 10px;
  }

  .hero-text-holder {
    max-width: 470px;
  }

  .hero-section-app-holder {
    width: auto;
  }

  .hero-section-phone-holder {
    width: 380px;
  }

  .hero-section-phone-screenshot-image {
    border-radius: 20px;
  }

  .other-card-image._02 {
    border-radius: 20px;
    width: 100px;
    left: 4px;
  }

  .other-card-image._03 {
    border-radius: 20px;
    width: 150px;
    top: 112px;
    right: -21px;
  }

  .other-card-image._04 {
    border-radius: 30px;
    width: 150px;
    inset: auto 0% 38px auto;
  }

  .grey-text {
    font-size: 14px;
  }

  .deploying-app-section-holder {
    padding-top: 81px;
    padding-bottom: 81px;
  }

  .deploying-app-section-container {
    flex-direction: column;
    display: flex;
  }

  .deploying-app-section-container.second {
    flex-direction: column-reverse;
  }

  .footer-container, .footer-gradient {
    border-radius: 20px;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-section-small.is-hero, .spacer-xlarge {
    padding-top: 3rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav_button {
    color: #fff;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col, .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hamburger-menu-wrapper.w--open {
    background-color: #0000;
  }

  .header-nav-menu-wrapper {
    background-color: #fff;
    border-top: 1px solid #eff0f6;
    border-bottom: 1px solid #eff0f6;
    padding: 24px;
  }

  .header-content-wrapper {
    justify-content: flex-end;
    align-items: center;
  }

  .header-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
    display: none;
  }

  .hamburger-menu-bar {
    width: 44px;
    height: 3px;
  }

  .hamburger-menu-bar.bottom {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .flex.gab-4 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .flex.space_between {
    flex-flow: column;
  }

  .flex.space_between.gab-15, .flex.space_between-copy {
    flex-flow: row;
  }

  .max_w-550px {
    max-width: none;
  }

  .trending_text_wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog_description {
    bottom: 50px;
  }

  .blog_description.white._2 {
    bottom: 30px;
  }

  .h2 {
    font-size: 1.5rem;
  }

  .h2._4rem {
    font-size: 1.75rem;
  }

  .max_w-25, .max_w-75 {
    max-width: none;
  }

  .posts_wrapper {
    flex-flow: column;
  }

  .post_wrapper_col {
    max-width: none;
  }

  .category {
    margin-bottom: 4%;
  }

  .category_wrapper {
    flex-flow: wrap;
  }

  .green-section_content-left {
    margin-left: 0%;
  }

  .post_wrapper {
    flex-flow: wrap;
  }

  .slider_wrap {
    max-width: none;
    margin-left: 1.5rem;
  }

  .heading-2 {
    max-width: none;
  }

  .text-block-2 {
    max-width: 90%;
  }

  .blog_post_v3-copy {
    max-width: none;
  }

  .container-2 {
    flex-flow: wrap;
  }

  .section-4 {
    padding-top: 0;
  }

  .container-3 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .div-block-26, .div-block-34 {
    flex-flow: wrap;
  }

  .section_hero-p-mwidth {
    max-width: 80%;
  }

  .section_hero-content {
    flex-flow: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section_hero-content-col-left, .section_hero-content-col-right {
    max-width: none;
  }

  .section_values-card, .section_team-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btns-wrapper.v2 {
    flex-flow: column;
  }

  .flex-scrolling-copy {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .div-block-40 {
    flex-flow: column;
  }

  .image-20, .image-21 {
    max-width: none;
  }

  .tabs-menu {
    flex-flow: wrap;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .border-box {
    padding: 2px;
  }

  .section.green {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .nav-menu-link-holder {
    background-color: var(--colors--bg-color);
  }

  .brand-image {
    width: 100%;
  }

  .footer-wrapper {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

  .footer-content {
    text-align: left;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    text-align: left;
    align-items: flex-start;
  }

  .footer-link {
    text-align: left;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .help-link-holder {
    flex-direction: column;
  }

  .brand {
    width: 130px;
    padding-left: 0;
  }

  .hero-section-app-container {
    width: 460px;
  }

  .hero-section-phone-holder {
    width: 370px;
  }

  .reviews-logos-container {
    grid-column-gap: 30px;
  }

  .reviews-logos {
    min-width: 100px;
  }

  .hero-section {
    height: 280vh;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .flex {
    flex-flow: column;
  }

  .flex.gab-25px._w-100 {
    align-items: center;
  }

  .flex.space_between-copy {
    flex-flow: column;
  }

  .max_w-790px, .max_w-550px {
    max-width: none;
  }

  .trending_text_wrapper {
    width: 100%;
  }

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

  .h2._2 {
    font-size: 2rem;
  }

  .blog_post_v2 {
    width: 100%;
    max-width: 320px;
  }

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

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

  .heading-2 {
    font-size: 3rem;
  }

  .collection-list-wrapper-2 {
    max-width: none;
  }

  .team-slider_cms_item.swiper-slide {
    min-width: 350px;
  }

  .section-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container-3, .div-block-12 {
    justify-content: center;
  }

  .section-5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-19 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: column;
  }

  .div-block-20 {
    grid-template-columns: 1fr 1fr;
  }

  .section-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-22 {
    flex-flow: column;
    align-items: flex-start;
  }

  .section-7 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-25 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
  }

  .div-block-26 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .expert-advice-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-28 {
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .div-block-29, .div-block-30 {
    width: auto;
  }

  .div-block-34 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .section_values-cards-wrapper, .section_team-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .text-block-26 {
    font-size: 16px;
  }

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

  .div-block-37 {
    max-width: none;
  }

  .div-block-38 {
    text-align: center;
  }

  .div-block-39 {
    max-width: none;
  }

  .btns-wrapper.mt-50px {
    flex-flow: column;
  }

  .btns-wrapper.v2 {
    flex-flow: row;
    margin-top: 20px;
  }

  .flex-scrolling-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
  }

  .company-logo {
    max-height: 32px;
  }

  .cta-sec {
    flex-flow: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  ._4-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .black-background-padding {
    padding: 7px;
  }

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

  .container.hero {
    padding: 14px;
  }

  .style-guide-box-holder {
    padding: 4px;
  }

  .style-guide-box-container {
    grid-row-gap: 7px;
  }

  .colors-buttons {
    flex-direction: column;
    padding-top: 29px;
    padding-bottom: 29px;
  }

  .section.under {
    margin-top: -150px;
  }

  .section.white {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-wrapper {
    grid-row-gap: 10px;
  }

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

  .footer-divider {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
  }

  .title.mobile-bigger {
    font-size: 8vw;
  }

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

  .early-access-card {
    min-width: 0;
  }

  .power-feature-card-container {
    border-radius: 20px;
  }

  .pricing-list-holder {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .pricing-footer-holder {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .figma-file-container {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .full-width-image {
    border-radius: 7px;
  }

  .hero-section-holder {
    grid-row-gap: 30px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section-container {
    padding: 28px 7px 0;
  }

  .hero-section-app-holder {
    width: 100%;
    top: 260px;
  }

  .hero-section-app-container {
    width: 100%;
  }

  .hero-section-phone-holder {
    width: 240px;
  }

  .hero-background-holder {
    opacity: .7;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    justify-content: center;
    align-items: flex-end;
    height: 24%;
  }

  .hero-background {
    object-fit: fill;
    object-position: 80% 0%;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    width: 100%;
    min-width: 110%;
    position: static;
  }

  .other-card-image._02 {
    left: -16px;
  }

  .other-card-image._03 {
    border-radius: 20px;
    right: -10px;
  }

  .other-card-image._04 {
    border-radius: 18px;
    width: 100px;
    bottom: 50px;
    right: -10%;
  }

  .deploying-app-section-holder {
    grid-row-gap: 60px;
    padding-top: 120px;
    padding-bottom: 0;
  }

  .deploying-app-link-holder {
    margin-top: 12px;
  }

  .stats-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    margin-top: 12px;
    display: flex;
  }

  .deploying-app-screenshot-holder {
    padding: 0;
  }

  .footer-signup-holder {
    width: 100%;
  }

  .form {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-container {
    padding-top: 30px;
  }

  .hero-section-container-extra {
    opacity: 0;
    margin-top: -40px;
    transform: translate(0, 111px);
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

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

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .blog_image_wrapper_v {
    width: 138px;
    max-width: none;
  }

  .blog_details {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    max-width: 60%;
  }

  .blog_title {
    font-size: 1rem;
  }

  .blog_description._w-75 {
    max-width: 90%;
    bottom: 20px;
  }

  .blog_description.center_text {
    left: 0;
    right: 0;
  }

  .h2 {
    font-size: .875rem;
  }

  .h2._1-5rem {
    font-size: 1.3rem;
  }

  .h2._1 {
    font-size: 1.5rem;
  }

  .image-2 {
    height: 100%;
  }

  .product_slider {
    width: 300px;
  }

  .product_title._2-625rem {
    font-size: 1.5rem;
  }

  .green-section_content-left {
    max-width: none;
    font-size: 16px;
  }

  .text-block {
    font-size: 1rem;
  }

  .slider_wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .item {
    width: 70vw;
  }

  .div-block-4 {
    margin-top: 10px;
  }

  .heading-2 {
    font-size: 3rem;
  }

  .text-block-2 {
    max-width: none;
    font-size: 1.25rem;
  }

  .div-block-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .rich_text h1 {
    font-size: 2.5rem;
  }

  .rich_text h2 {
    font-size: 2.6rem;
  }

  .slider {
    max-width: none;
  }

  .slide {
    max-width: 18.75rem;
  }

  .arrow {
    right: 40px;
  }

  .arrow.left {
    right: 90px;
  }

  .team-slider_cms_item.swiper-slide {
    min-width: 300px;
  }

  .heading-6 {
    font-size: 44px;
  }

  .div-block-12 {
    flex-flow: wrap;
  }

  .div-block-15 {
    width: 100%;
    max-width: 360px;
  }

  .div-block-26 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-block-27 {
    width: 100%;
  }

  .section_hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-21 {
    font-size: 35px;
  }

  .heading-22 {
    font-size: 40px;
  }

  .section_values-cards-wrapper, .section_team-cards-wrapper {
    flex-flow: column;
    display: flex;
  }

  .section_numbrs-wrapper {
    place-items: start stretch;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section_cta-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .buttons-wrapper {
    flex-flow: column;
  }

  .btns-wrapper.v2 {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .logo-wrap-ticker {
    min-width: 35vw;
  }

  .company-logo {
    max-width: 100px;
    max-height: 24px;
  }

  .tab-link {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }
}

#w-node-_61c38d58-5dde-50d2-a200-8efeccb72638-bf8e28eb, #w-node-d872fa4b-ce90-d762-9c05-4f7ab5e206f4-bf8e28eb, #w-node-_48b97d74-c2c0-bdc9-f8a3-c03ed1c128f9-bf8e28eb, #w-node-_1eac9545-ab98-eafa-e226-1d751a60ae7a-bf8e28eb, #w-node-_1eac9545-ab98-eafa-e226-1d751a60ae83-bf8e28eb, #w-node-e92bf484-a605-4132-f141-4518468af7e2-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7ef-468af7d9, #w-node-_1a28ebeb-9162-d3cb-8468-7300a05229ba-bf8e28ee, #w-node-_8595b4cc-f73c-3ac7-f9ab-37cddb2978a1-bf8e28ef, #w-node-_63c7100f-9342-3d29-c1e8-a026ad70c2f3-bf8e28f0, #w-node-_50d429f7-a276-3f83-9b9a-bc93d36794c4-bf8e28f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdc2-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc5-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc8-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdcb-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdce-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd1-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd4-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd7-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddc-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddf-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde2-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde5-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde8-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdeb-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf0-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf3-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf6-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf9-bf8e28f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-bf8e28f1 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc11-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc30-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc35-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc3a-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc3f-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc45-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc4b-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cc51-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd33-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd3b-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd52-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd6b-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd6e-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd70-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cd73-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cdc3-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cdcd-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cdce-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce40-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce45-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce4a-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce4f-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce54-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce59-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce63-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce68-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce6d-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce72-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce77-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce7c-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce81-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce86-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce8b-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce90-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce95-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce99-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce9a-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ce9f-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cea4-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cea9-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cebd-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cec2-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cec7-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cecc-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ced1-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ced6-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cee0-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cee5-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ceea-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1ceef-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cef4-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cef9-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cefe-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf03-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf08-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf0d-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf12-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf16-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf17-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf1c-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf21-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf26-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf37-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf3c-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf41-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf46-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf4b-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf50-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf55-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf5a-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf5f-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf64-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf68-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf69-9c8399a8 {
  justify-self: start;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cf6c-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1cfed-9c8399a8, #w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1d01a-9c8399a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9d1b5d-7d6e-6432-f631-8cb38dd1d058-9c8399a8 {
  justify-self: start;
}

@media screen and (max-width: 479px) {
  #w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-bf8e28f1, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-bf8e28f1 {
    grid-column: span 2 / span 2;
  }
}


