@font-face {
  font-family: Tasa Orbiter;
  src: url('../fonts/TASAOrbiterDisplay-Medium-BF64891cba56e9b.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Tasa Orbiter;
  src: url('../fonts/TASAOrbiterDisplay-Bold-BF64891cba5ae6f.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Tasa Orbiter;
  src: url('../fonts/TASAOrbiterDisplay-SemiBold-BF64891cba47942.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Tasa Orbiter;
  src: url('../fonts/TASAOrbiterDisplay-Black-BF64891cba23c21.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Tasa Orbiter;
  src: url('../fonts/TASAOrbiterDisplay-Regular-BF64891cba1d563.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --colors--bg-color: white;
  --fonts--heading-font: "Tasa Orbiter", Arial, sans-serif;
  --colors--font-color: #071c21;
  --colors--acent-color: #2a6f8c;
  --fonts--paragraph: "IBM Plex Sans", sans-serif;
  --colors--paragraph-font: #000c;
  --colors--acent-color-low: #dfe6ea;
  --colors--element-color: #f5f5f7;
  --colors--section-color: #f5f5f7;
  --colors--element-stroke-color: #fff0;
}

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

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

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

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

h1 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  color: var(--colors--acent-color);
  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: 16px;
  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);
  font-family: var(--fonts--heading-font);
  text-transform: none;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 20px;
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-family: DM Sans;
  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--acent-color-low);
}

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

.container.navbar-container {
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

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

.container.no-padding-bot {
  z-index: 2;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

._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--acent-color);
  font-family: var(--fonts--paragraph);
  color: var(--colors--bg-color);
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  transition: transform .325s cubic-bezier(.175, .885, .32, 1.275), background-position .25s, background-color .45s;
}

.button:hover {
  background-color: var(--colors--acent-color);
  color: #fff;
  transform: scale(1.05);
}

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

.button.secondary {
  background-color: var(--colors--acent-color-low);
  color: var(--colors--acent-color);
}

.button.styled {
  text-align: center;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

.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.grey-section {
  background-color: var(--colors--section-color);
}

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

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--colors--acent-color-low);
  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: var(--colors--section-color);
  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: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.brand-image {
  width: 20rem;
  height: auto;
  line-height: 1.1;
}

.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: 15px;
  font-weight: 400;
  transition: background-color .6s;
  display: flex;
  bottom: -1px;
}

.nav-link.w--current {
  background-color: var(--colors--acent-color);
  color: #fff;
}

.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: 20px;
  font-weight: 500;
  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: 2px solid var(--colors--acent-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;
  font-weight: 700;
}

.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 {
  background-color: var(--colors--bg-color);
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  width: 100%;
  height: 55px;
  margin-bottom: 0;
  font-size: 16px;
  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;
}

.text-field.msg {
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 300px;
}

.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 #d2d2d2;
  min-width: 220px;
  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: 2px solid var(--colors--acent-color);
  background-color: var(--colors--element-color);
  opacity: 1;
  border-radius: 8px;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
}

.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 {
  height: 27px;
}

.title-holder {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 760px;
  display: flex;
}

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

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

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

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

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

.deploying-app-content {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.deploying-app-content.sticky {
  top: 120px;
}

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

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

.deploying-app-bg {
  object-fit: cover;
  width: 100%;
}

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

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

.tab-pane-tab-1 {
  border-radius: 12px;
  width: 100%;
  position: sticky;
  top: 85px;
  overflow: hidden;
}

.tabs-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 570px;
  display: flex;
}

.tabs-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 30px;
  display: flex;
  overflow: visible;
}

.tab-link-holder {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tab-link {
  border: 2px solid var(--colors--element-stroke-color);
  background-color: var(--colors--element-color);
  border-radius: 0 24px;
  height: 100%;
  padding: 32px 28px;
  transition: color .375s, background-color .45s, transform .375s, border-color .425s;
}

.tab-link:hover {
  border-color: #dfdfdf;
  transform: scale(1.03);
}

.tab-link.w--current {
  border-color: var(--colors--acent-color);
  background-color: var(--colors--acent-color);
  color: var(--colors--bg-color);
}

.tab-link-text {
  font-family: var(--fonts--heading-font);
  font-size: 22px;
  font-weight: 600;
}

.tab-pane-image {
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 280px;
}

.tab-holder {
  padding-top: 20px;
  padding-bottom: 30px;
}

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

.footer-title {
  font-family: var(--fonts--heading-font);
  font-size: 28px;
  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;
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
}

.hero-section {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  background-color: var(--colors--section-color);
  flex-flow: column;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.hero-section.less-spacing {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}

.hero-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.hero-content {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.button-holder {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  display: flex;
}

.green-text {
  color: var(--colors--acent-color);
  font-weight: 700;
}

.hero-image-holder {
  border-radius: 0 40px;
  width: 100%;
  position: relative;
  overflow: hidden;
  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;
}

.hero-image {
  width: 100%;
  padding-top: 0;
}

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

.hero-pattern-holder {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-pattern-holder.top {
  position: absolute;
  inset: -40px 0% auto;
}

.hero-pattern-holder.bot {
  position: absolute;
  inset: auto 0% -40px;
}

.hero-patter {
  flex: none;
  width: 100%;
}

.hero-decor {
  max-width: 350px;
  position: absolute;
  inset: auto auto 20px 20px;
}

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

.center-text-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-inside {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
}

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

.services-item {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--colors--section-color);
  border-radius: 18px;
  flex-flow: column;
  justify-content: space-between;
  padding: 24px;
  display: flex;
}

.icon-holder {
  background-color: var(--colors--acent-color-low);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding-top: 4px;
  display: flex;
}

.icon {
  width: 32px;
}

.semi-bold-title {
  color: var(--colors--element-color);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.service-content {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  display: flex;
}

.service-cta {
  border-radius: 30px;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.service-image {
  box-sizing: border-box;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: clip;
}

.service-overlays {
  -webkit-text-fill-color: inherit;
  background-color: #0000001a;
  background-image: linear-gradient(0deg, #0009, #0000);
  background-clip: border-box;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 50px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.white-title {
  color: var(--colors--bg-color);
  margin-top: 0;
  font-size: 50px;
  font-weight: 600;
}

.service-content-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  place-items: end;
  display: grid;
}

.tag {
  background-color: var(--colors--acent-color);
  font-family: var(--fonts--paragraph);
  color: var(--colors--acent-color-low);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 500;
}

.cta-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .75fr;
  grid-auto-columns: 1fr;
  place-items: center end;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.heading-and-supporting-text {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 410px;
  display: flex;
}

.colored-block {
  z-index: 10;
  background-color: var(--colors--acent-color);
  border: 1px solid #2c1f3a;
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.question-icon {
  filter: invert();
  width: 24px;
  min-width: 24px;
}

.questions-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.small-cta-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.questions-cta {
  z-index: 1;
  grid-row-gap: 84px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px;
  display: flex;
  position: relative;
}

.answer-text {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-font);
  padding-top: 8px;
  font-size: 17px;
  line-height: 1.5;
}

.question-text {
  font-size: 23px;
  font-weight: 500;
}

.answer-holder {
  justify-content: flex-start;
  max-width: 90%;
  display: flex;
  overflow: hidden;
}

.questions-container {
  background-color: var(--colors--section-color);
  cursor: pointer;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  flex-direction: column;
  padding: 36px;
  transition: background-color .325s;
  display: flex;
}

.question {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.paragraph-l {
  color: var(--colors--bg-color);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.cta-wrapper {
  background-color: var(--colors--acent-color);
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
}

.cta-logo-holder {
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
}

.cta-content {
  padding: 60px;
}

.cta-content-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  place-items: end;
  display: grid;
}

.cta-pattern {
  opacity: .2;
  width: 100%;
  display: flex;
}

.cta-logo {
  width: 140px;
  position: absolute;
  left: 60px;
}

.cta-logo-image {
  box-sizing: border-box;
  object-fit: fill;
  width: 100%;
  min-width: 480px;
  overflow: clip;
}

.hero-center {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: flex;
}

.hero-content-center {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-title-holder {
  aspect-ratio: auto;
  max-width: 720px;
}

.hero-image-holder-center {
  z-index: 2;
  border-radius: 0 40px;
  width: 100%;
  max-width: 970px;
  position: relative;
  overflow: hidden;
  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;
}

.tabs {
  display: flex;
}

.circle-holder {
  background-color: #dfe6ea1a;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  padding: 12px;
}

.circle-inside {
  background-color: var(--colors--bg-color);
  border-radius: 100px;
  width: 100%;
  height: 100%;
}

.tab-pane {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--colors--element-color);
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.tab-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.stats-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.white-paragraph {
  color: var(--colors--acent-color-low);
}

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

.stats-content-hodler {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-us {
  z-index: 2;
  flex-flow: row;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  position: relative;
}

.about-us-image {
  border-top-right-radius: 35px;
  border-bottom-left-radius: 35px;
  flex: none;
  max-width: 450px;
  overflow: hidden;
}

.about-us-image-wrapper {
  z-index: 2;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: none;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.company-stats {
  background-color: var(--colors--acent-color);
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
  padding: 90px 70px;
}

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

.company-stats-item {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.number-holder {
  background-color: var(--colors--bg-color);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 190px;
  display: flex;
}

.green-title {
  color: var(--colors--acent-color);
  margin-top: 0;
}

.content-stats {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.stat-title {
  color: var(--colors--acent-color-low);
  font-size: 32px;
  font-weight: 500;
}

.featuers-grid-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

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

.feature-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--colors--bg-color);
  border-radius: 20px;
  flex-flow: column;
  padding: 30px;
  display: flex;
}

.feature-icon-holder {
  background-color: var(--colors--acent-color-low);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.feature-icon {
  width: 30px;
}

.feature-content {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.feature-title {
  font-size: 32px;
  font-weight: 500;
}

.team-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.team {
  border-top-right-radius: 32px;
  border-bottom-left-radius: 32px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
}

.team-content {
  padding: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.team-content-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--colors--acent-color);
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  flex-flow: column;
  padding: 21px;
  display: flex;
}

.team-name {
  color: var(--colors--bg-color);
  font-size: 28px;
}

.team-position {
  font-family: var(--fonts--paragraph);
  color: var(--colors--bg-color);
  font-size: 18px;
}

.team-info {
  opacity: .8;
  color: var(--colors--bg-color);
}

.hero-blog-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
}

.blog-grid-twos-wrapper {
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid-twos-item {
  width: 100%;
}

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

.blog-item {
  background-color: var(--colors--acent-color-low);
  border-radius: 19px;
  width: 100%;
  height: 100%;
  padding: 15px;
  transition: background-color .4s, transform .325s;
}

.blog-item:hover {
  background-color: #d3dee4;
  transform: translate(0, -10px);
}

.blog-item.hoziontal {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-conte {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-flow: column;
  padding: 26px 8px 8px;
  display: flex;
}

.blog-thumbnail {
  border-radius: 14px;
  width: 100%;
}

.blog-thumbnail.horizontal {
  width: 50%;
}

.blog-title {
  font-family: var(--fonts--heading-font);
  font-size: 24px;
  font-weight: 600;
}

.blog-date {
  opacity: .74;
  font-size: 15px;
  font-weight: 400;
}

.share-social-media-icon-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: .44;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  transition: opacity .3s, transform .375s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.share-social-media-icon-holder:hover {
  opacity: 1;
  transform: scale(1.2);
}

.blog-details---title {
  font-size: 50px;
  font-weight: 600;
}

.blog-details-content {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 710px;
  display: flex;
}

.form-block-2 {
  width: 100%;
  margin-bottom: 0;
}

.form-block-2._100width {
  width: 100%;
}

.sign-up-letter {
  background-color: #fafafa;
  border: 1px solid #0000001a;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 160px;
}

.blog-grid-holder {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 100px;
  display: flex;
}

.animate-on-load-04 {
  width: 100%;
}

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

.error-message-2::placeholder {
  color: #7d7d7d;
  font-size: 15px;
}

.sign-up-letter-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.blog-details-main-image {
  width: 100%;
}

.share-blog-icons {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-name-details {
  grid-column-gap: 0px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.form-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.animate-on-load-03 {
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.share-icon {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  filter: invert();
  justify-content: center;
  align-items: center;
  width: 24px;
}

.sign-up-title {
  font-size: 20px;
}

.sign-up-letter-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form-holder {
  grid-row-gap: 13px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.blog-details-holder {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 70px;
  display: flex;
}

.blog-details-main-image-holder {
  border-radius: 14px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-right: auto;
  overflow: hidden;
}

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

.field-label {
  font-family: var(--fonts--paragraph);
  font-size: 16px;
  font-weight: 500;
}

.field-holder {
  width: 100%;
}

.field-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.button-wrapper {
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.checkbox-field {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.checkbox {
  border: 1px solid var(--colors--acent-color);
  background-color: var(--colors--bg-color);
  border-radius: 100px;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 6px;
}

.checkbox.w--redirected-checked {
  background-color: var(--colors--acent-color);
  background-image: url('../images/Empty-Check.svg');
  background-position: 50%;
  background-size: 12px;
}

.checkbox-label {
  font-family: var(--fonts--paragraph);
  font-size: 13px;
  font-weight: 400;
}

.contact-holder {
  background-color: var(--colors--acent-color);
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  width: 100%;
  height: 100%;
}

.contact-gird {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.contact-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-cta-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.grid-heading {
  color: var(--colors--bg-color);
  font-size: 20px;
  font-weight: 600;
}

.grid-feature-title-holder {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.grid-feature-title-holder.vertical-way {
  flex-direction: column;
}

.grid-feature-icon-holder {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.grid-feature-icon-holder.vertical {
  text-align: center;
}

.grid-feature-icon {
  width: 22px;
  height: 18px;
}

.grid-feature-icon.rounded {
  width: 24px;
}

.grid-paragraph {
  opacity: .8;
  font-family: var(--fonts--paragraph);
  color: var(--colors--bg-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.icon-wrapper {
  background-color: var(--colors--bg-color);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.contact-logo {
  width: 120px;
}

.pattern-holder {
  opacity: .4;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 40px;
}

.pattern-holder.right {
  left: auto;
  right: 40px;
}

.hero-patter-reverse {
  flex: none;
  width: 100%;
}

.heading {
  font-size: 55px;
}

.paragraph {
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 0;
  font-size: 18px;
  font-weight: 400;
}

.bold-text-2 {
  font-size: 60px;
  font-weight: 500;
}

.heading-2 {
  width: auto;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.heading-4 {
  color: var(--colors--acent-color);
  margin-top: 0;
  margin-bottom: 0;
}

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

.heading-6 {
  font-weight: 700;
}

.div-block-2 {
  z-index: 1;
  opacity: .3;
  background-color: gray;
  position: absolute;
  inset: 0;
}

.rich-text-block-2, .bold-text-3, .text-span, .text-span-2 {
  color: var(--colors--acent-color);
}

.heading-10 {
  margin-top: 0;
}

.bold-text-5 {
  font-size: 24px;
  font-weight: 500;
}

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

.heading-11 {
  color: var(--colors--acent-color);
  margin-bottom: 10px;
}

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

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

.rich-text-block-5 {
  font-weight: 400;
}

.paragraph-7 {
  margin-top: 10px;
  margin-bottom: 0;
}

.paragraph-8 {
  margin-bottom: 10px;
}

.paragraph-9 {
  margin-bottom: 0;
}

.bold-text-6, .bold-text-7 {
  font-weight: 400;
}

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

  .container.no-paddings {
    max-width: 1250px;
  }

  .brand-image {
    width: 20rem;
    height: auto;
  }

  .title {
    width: 830px;
  }

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

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

  .help-container {
    min-width: 270px;
  }

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

  .deploying-app-section-container {
    grid-template-columns: 1fr minmax(200px, 1.25fr);
  }

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

  .hero-section {
    margin-bottom: 60px;
  }

  .hero-section.less-spacing {
    padding-bottom: 10px;
  }

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

  .hero-paragraph-holder {
    max-width: 650px;
    font-size: 18px;
  }

  .section-spacing {
    box-sizing: border-box;
  }

  .services-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template: "."
                   "."
                   / 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .semi-bold-title {
    color: var(--colors--element-color);
  }

  .service-overlays {
    background-color: #0000;
  }

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

  .cta-holder {
    grid-template-columns: 1.25fr .75fr;
    font-size: 18px;
  }

  .cta-logo-holder {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .cta-content-holder {
    grid-template-columns: .75fr .75fr;
  }

  .cta-logo {
    width: 500px;
  }

  .hero-content-center {
    width: auto;
  }

  .stats-content {
    grid-template-columns: .75fr .35fr;
  }

  .white-paragraph {
    margin-bottom: 0;
  }

  .stats-content-hodler {
    justify-content: center;
    align-items: center;
  }

  .animate-on-load-01 {
    box-sizing: border-box;
    object-fit: fill;
  }

  .animate-on-load-03 {
    border-radius: 0 20px;
  }

  .contact-gird {
    grid-column-gap: 29px;
    grid-template-rows: auto;
    grid-template-columns: .5fr .5fr;
  }

  .contact-cta-grid {
    flex-flow: column;
    order: 1;
    justify-content: flex-start;
    align-items: center;
  }

  .grid-paragraph {
    margin-top: 20px;
  }

  .paragraph {
    color: var(--colors--font-color);
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 20px;
  }

  .div-block {
    width: 200px;
  }

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

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

  .heading-5 {
    color: var(--colors--acent-color);
  }

  .heading-6 {
    font-weight: 700;
  }

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

  .paragraph-3 {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }

  .paragraph-4 {
    font-size: 20px;
  }

  .paragraph-5 {
    max-width: 500px;
    font-size: 20px;
  }

  .image {
    max-width: 40%;
  }

  .heading-7 {
    font-size: 60px;
    font-weight: 700;
  }

  .rich-text-block-2, .bold-text-3 {
    color: var(--colors--acent-color);
  }

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

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

  .rich-text-block-3, .heading-8 {
    font-weight: 700;
  }

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

  .heading-9 {
    width: auto;
    max-width: 950px;
    font-size: 60px;
  }
}

@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;
  }

  ._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 {
    height: auto;
  }

  .brand-image {
    width: 16rem;
  }

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

  .title-holder {
    padding-top: 30px;
  }

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

  .deploying-app-section-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

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

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

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

  .tabs-menu {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 40%;
    display: flex;
  }

  .tab-link {
    width: 100%;
    height: auto;
    padding: 17px;
  }

  .tab-link-text {
    font-size: 20px;
  }

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

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

  .hero-grid {
    flex-flow: column;
    display: flex;
  }

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

  .white-title {
    font-weight: 600;
  }

  .questions-holder {
    max-width: 90%;
  }

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

  .stats-content-hodler {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .about-us-image {
    max-width: 260px;
  }

  .company-stats {
    padding: 51px;
  }

  .company-stats-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .team-grid, .blog-grid-twos-wrapper {
    max-width: 100%;
  }

  .blog-grid-twos-item {
    width: 100%;
  }

  .blog-grid-2x {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .blog-grid-holder {
    flex-direction: column;
    display: flex;
  }

  .contact-gird {
    flex-flow: column;
    display: flex;
  }

  .contact-cta-grid {
    flex-flow: column;
  }

  .heading-9 {
    margin-top: 0;
  }
}

@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;
  }

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

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

  .brand-image {
    width: auto;
    height: auto;
  }

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

  .utility-page-wrap {
    padding: 31px;
  }

  .brand {
    width: 150px;
    height: auto;
    padding-left: 0;
  }

  .deploying-app-content.sticky {
    position: static;
  }

  .tabs-menu {
    flex-direction: column;
  }

  .tabs-content {
    padding-top: 30px;
    padding-left: 0;
  }

  .tab-link-holder {
    width: 100%;
  }

  .tab-link {
    justify-content: center;
    display: flex;
  }

  .hero-pattern-holder.top {
    top: -20px;
  }

  .hero-pattern-holder.bot {
    bottom: -20px;
  }

  .services-grid {
    flex-flow: column;
    display: flex;
  }

  .semi-bold-title {
    font-size: 36px;
  }

  .service-overlays {
    padding: 25px;
  }

  .questions-holder {
    max-width: 100%;
  }

  .questions-cta {
    grid-row-gap: 18px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-wrapper {
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .cta-logo-holder {
    padding-top: 93px;
    padding-bottom: 93px;
  }

  .cta-content {
    padding: 33px;
  }

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

  .cta-logo {
    left: 30px;
  }

  .cta-logo-image {
    min-width: 450px;
  }

  .tabs {
    flex-flow: column;
  }

  .stats-content {
    flex-flow: column;
    display: flex;
  }

  .about-us-image-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .featuers-grid-wrapper {
    flex-flow: column;
    display: flex;
  }

  .team-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .team-content {
    padding: 0;
    position: relative;
  }

  .team-content-wrapper {
    border-top-right-radius: 0;
  }
}

@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;
  }

  .button {
    text-align: center;
  }

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

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

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

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

  .brand {
    width: 130px;
  }

  .title-holder {
    padding-top: 12px;
  }

  .deploying-app-section-holder {
    grid-row-gap: 60px;
  }

  .deploying-app-link-holder {
    margin-top: 12px;
  }

  .deploying-app-images-holder {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .tabs-menu {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .tabs-content {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .tab-link-holder {
    flex-flow: row;
  }

  .tab-link {
    flex-flow: row;
    width: 100%;
    padding: 13px;
  }

  .tab-link-text {
    max-width: 50%;
    font-size: 17px;
    font-weight: 500;
  }

  .tab-holder {
    padding-bottom: 0;
  }

  .footer-signup-holder {
    width: 100%;
  }

  .form {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-container {
    padding-top: 30px;
  }

  .hero-section {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 8px;
    padding-bottom: 30px;
  }

  .hero-content {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .button-holder {
    flex-flow: column;
  }

  .hero-image-holder {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .hero-pattern-holder {
    height: 50px;
  }

  .hero-pattern-holder.bot {
    bottom: -30px;
  }

  .hero-patter {
    width: auto;
    max-width: none;
    height: 100%;
  }

  .hero-decor {
    max-width: 60%;
  }

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

  .section-inside {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

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

  .service-cta {
    height: 350px;
  }

  .service-content-holder {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .cta-holder {
    text-align: center;
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

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

  .questions-cta {
    padding: 18px;
  }

  .answer-text {
    font-size: 16px;
  }

  .question-text {
    font-size: 18px;
  }

  .answer-holder {
    max-width: 100%;
  }

  .questions-container {
    padding: 22px;
  }

  .cta-logo-holder {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .cta-content {
    padding: 18px;
  }

  .cta-content-holder {
    align-items: stretch;
  }

  .cta-pattern {
    height: 60px;
  }

  .cta-logo {
    left: 18px;
  }

  .cta-logo-image {
    min-width: 250px;
  }

  .hero-content-center {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    justify-content: center;
    align-items: stretch;
  }

  .circle-holder {
    width: 20px;
    height: 20px;
    padding: 7px;
    display: flex;
    position: absolute;
    inset: auto 9px auto auto;
  }

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

  .about-us-image {
    max-width: 180px;
  }

  .company-stats {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 28px 18px;
  }

  .company-stats-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    display: flex;
  }

  .number-holder {
    width: 120px;
    height: 80px;
  }

  .featuers-grid-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .feature-grid, .team-grid {
    flex-flow: column;
    display: flex;
  }

  .hero-blog-holder {
    margin-top: 30px;
  }

  .blog-grid-twos-wrapper {
    max-width: 100%;
  }

  .blog-grid-twos-item {
    width: 100%;
  }

  .blog-grid-2x {
    grid-row-gap: 30px;
  }

  .blog-item.hoziontal {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 2px solid var(--colors--acent-color);
    flex-flow: column;
  }

  .blog-thumbnail.horizontal {
    width: 100%;
  }

  .blog-details---title {
    font-size: 33px;
  }

  .form-block-2, .animate-on-load-04 {
    width: 100%;
  }

  .form-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-details-main-image-holder {
    border-radius: 6px;
  }

  .field-grid {
    flex-flow: column;
    display: flex;
  }

  .button-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

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

  .contact-holder {
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

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

  .contact-cta-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .grid-feature-title-holder {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-feature-title-holder.vertical-way {
    align-items: center;
  }

  .grid-paragraph {
    font-size: 13px;
  }

  .contact-logo {
    width: 100px;
  }

  .pattern-holder {
    opacity: .2;
    width: 37px;
    left: 16px;
  }

  .pattern-holder.right {
    right: 16px;
  }

  .pattern-image {
    width: 100%;
  }

  .hero-patter-reverse {
    width: auto;
    max-width: none;
    height: 100%;
  }
}

#w-node-_262ebbc2-c490-900c-f91a-0a1cfefe41e9-b48763d4, #w-node-_262ebbc2-c490-900c-f91a-0a1cfefe41f0-b48763d4, #w-node-_318cc8be-1502-5c00-846d-c2d49b067aad-b48763d4, #w-node-a04c8b3d-0293-e18d-8793-f7fa70834fd2-b48763d4, #w-node-a04c8b3d-0293-e18d-8793-f7fa70834fdc-b48763d4, #w-node-e92bf484-a605-4132-f141-4518468af7e2-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7ef-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7fa-468af7d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b4db9fec-1986-6c44-068f-352852774577-5277456d {
  justify-self: start;
}

#w-node-fd98a7f1-4038-bd70-f676-67ba0131718c-b48763df, #w-node-fd98a7f1-4038-bd70-f676-67ba01317195-b48763df, #w-node-fd98a7f1-4038-bd70-f676-67ba0131719e-b48763df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-d336049b-e43c-d278-c6e0-aa3f9bb69558-b48763d4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fc26dfa2-116b-27f5-0b89-f125f4247094-b48763d4 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_58a582eb-d427-0dfe-e04e-0be405788a55-b48763d4 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_262ebbc2-c490-900c-f91a-0a1cfefe41e9-b48763d4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b4db9fec-1986-6c44-068f-352852774577-5277456d {
    justify-self: start;
  }

  #w-node-bb0f91ed-026d-5307-5745-8530084acba8-b48763dc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-fd98a7f1-4038-bd70-f676-67ba0131719e-b48763df {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Tasa Orbiter';
  src: url('../fonts/TASAOrbiterDisplay-Medium-BF64891cba56e9b.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tasa Orbiter';
  src: url('../fonts/TASAOrbiterDisplay-Bold-BF64891cba5ae6f.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tasa Orbiter';
  src: url('../fonts/TASAOrbiterDisplay-SemiBold-BF64891cba47942.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tasa Orbiter';
  src: url('../fonts/TASAOrbiterDisplay-Black-BF64891cba23c21.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tasa Orbiter';
  src: url('../fonts/TASAOrbiterDisplay-Regular-BF64891cba1d563.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}