:root {
  --royal-blue: #297bff;
}

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

body {
  color: #000;
  background-color: #1b38a0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

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

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 54px;
  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 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  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 {
  color: #fff;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

a {
  color: #fff;
  font-family: Inter, sans-serif;
  text-decoration: none;
}

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

li {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 15px;
}

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

blockquote {
  border-left: 2px solid var(--royal-blue);
  text-transform: none;
  border-radius: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 20px;
  font-size: 20px;
  font-style: normal;
  line-height: 1.7;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
}

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

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

.yellow-color-show-case {
  background-color: var(--royal-blue);
  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: #151515;
}

.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 {
  z-index: 3;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.9em 2em;
  position: relative;
}

.container.navbar-container {
  align-items: center;
  padding: 0 2em;
  display: flex;
}

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

.container.space-top {
  padding-top: 6em;
}

.container.developers {
  padding-top: 4em;
  padding-bottom: 4em;
}

.container.benefits {
  padding-top: 5em;
  padding-bottom: 5em;
}

._100width {
  width: 100%;
}

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

.button {
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 1px solid #a5a5a5;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  transition: background-position .25s, background-color .45s;
}

.button:hover {
  background-color: #cacaca;
}

.button.black {
  color: #fff;
  background-color: #191919;
  font-weight: 500;
}

.button.black:hover {
  background-color: #333;
}

.button.navbar-button {
  color: #fff;
  background-color: #111;
  padding: 8px 25px;
  font-size: 15px;
}

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

.button.navbar-button.login {
  border-radius: 4px;
}

.button.form-button {
  background-color: var(--royal-blue);
  color: #fff;
  border-radius: 5px;
  height: 42px;
  padding: 5px 35px;
  font-size: 15px;
  font-weight: 400;
}

.button.grey {
  background-color: rgba(0, 0, 0, .1);
}

.button.outline {
  color: #fff;
  text-align: center;
  background-color: rgba(255, 255, 255, .15);
  border: 1px solid #343434;
  font-size: 16px;
  font-weight: 500;
}

.button.cta-button {
  margin-right: 7px;
  position: static;
}

.style-guide-box-holder {
  background-color: #000;
  padding: 20px;
}

.style-guide-box-holder.white-box {
  background-color: #fff;
}

.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-copy {
  background-color: #0d0d0d;
}

.section.benefits {
  background-color: #fff;
}

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--royal-blue);
  border: 2px solid #8a8eff;
  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: 13px;
  font-weight: 400;
}

.paragraph-grey {
  color: rgba(51, 51, 51, .6);
  font-size: 14px;
  line-height: 1.5;
}

.navbar {
  z-index: 21;
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  background-color: #fff;
  height: 60px;
  position: -webkit-sticky;
  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;
}

.nav-menu-button-holder.login {
  padding-left: 30px;
}

.brand-image.black {
  opacity: 0;
  height: 100%;
  position: absolute;
}

.brand-image.white {
  height: 100%;
}

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

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

.nav-link {
  color: #fff;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  transition: border-color .6s;
  display: flex;
  bottom: -1px;
}

.nav-link.w--current {
  color: #fff;
  border-bottom-color: #fff;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
  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 {
  text-transform: none;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-link {
  color: #7d7d7d;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  transition: color .475s;
}

.footer-link:hover {
  color: #fff;
}

.footer-divider {
  border-top: 1px solid #2b2b2b;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
}

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

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

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

.title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(141deg, #96beff, #297bff 9%, #297bff 57%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
}

.title.dark {
  background-image: linear-gradient(159deg, #000 18%, rgba(0, 0, 0, .44));
}

.title.herotitle {
  background-color: #fff;
  padding: 15px;
}

.white-text {
  color: #fff;
}

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

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

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

.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-heading {
  font-size: 20px;
}

.hide {
  display: none;
}

.pricing-tag {
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .2);
  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 {
  color: #fff;
  background-color: #333;
  border: 1px solid #515151;
  border-radius: 8px;
  width: 100%;
  height: 51px;
  margin-bottom: 0;
  transition: border-color .45s, box-shadow .425s;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .24), 0 0 14px rgba(0, 0, 0, .24), 0 21px 36px rgba(99, 91, 255, .12);
}

.text-field:hover {
  border-color: #777;
  box-shadow: 0 0 4px rgba(0, 0, 0, .24), 0 17px 20px rgba(0, 0, 0, .24), 0 21px 36px rgba(99, 91, 255, .12);
}

.text-field:focus {
  border-color: #448eff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .24), 0 0 14px rgba(0, 0, 0, .24), 0 21px 90px rgba(99, 91, 255, .04);
}

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

.submit-button {
  background-color: var(--royal-blue);
  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: #7d7d7d;
  text-align: center;
  background-color: #333;
  border: 1px solid #aa5252;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0;
  font-family: IBM Plex Sans Hebrew;
  font-size: 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .24), 0 0 14px rgba(0, 0, 0, .24), 0 21px 36px rgba(255, 0, 4, .12);
}

.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 #242424;
  min-width: 280px;
  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;
  color: #fff;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  left: 2px;
}

.help-link-container.w--current {
  opacity: 1;
  border-right: 3px solid #fff;
}

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

.help-link-icon {
  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;
  opacity: 1;
  background-color: #333;
  border: 1px solid #515151;
  border-radius: 8px;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25), 1px 1px 14px rgba(0, 0, 0, .25), 0 21px 36px rgba(99, 91, 255, .13);
}

.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 {
  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: -webkit-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 {
  background-color: #0d0d0d;
  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 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  display: flex;
}

.brand.w--current {
  flex-flow: row;
  width: auto;
  height: 100%;
}

.paragraph-black {
  color: #000;
  font-weight: 400;
}

.paragraph-black-small {
  color: #000;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.footer-text-field {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid #5d5d5d;
  border-radius: 4px;
  height: 42px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  transition: border-color .35s;
}

.footer-text-field:focus {
  border-color: var(--royal-blue);
}

.footer-form {
  grid-column-gap: 12px;
  display: flex;
}

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

.form-block-footer {
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.footer-links-holder {
  grid-column-gap: 24px;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.social-medial-holder {
  width: 25px;
}

.social-medial {
  width: 100%;
}

.footer-line {
  background-image: linear-gradient(to right, #884d06, #d4a458 20%, #ae9ec8 32%, #5590e3 42%, #98aae6 64%, #2a9bee 81%, #55a2f1 91%, #55a2f1);
  width: 100%;
  height: 11px;
}

.hero-section-wrapper {
  flex-direction: column;
  padding-top: 0;
  display: flex;
}

.hero-section-gird {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.hero-content {
  grid-row-gap: 42px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero-content.features {
  align-items: center;
}

.hero-buttons-holder {
  grid-column-gap: 24px;
  align-items: center;
  display: flex;
}

.hero-buttons-holder.features {
  justify-content: center;
}

.schedule-a-demo {
  grid-row-gap: 2px;
  text-align: left;
  flex-direction: column;
  display: flex;
}

.schedule-a-demo:hover {
  opacity: .7;
}

.schedule-a-demo-title {
  color: rgba(255, 255, 255, .59);
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.schedule-a-demo-title.dark {
  color: rgba(0, 0, 0, .59);
}

.schedule-a-demo-paragraphj {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.schedule-a-demo-paragraphj.dark {
  color: #000;
}

.hero-app-holder {
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  background-color: rgba(51, 51, 51, .3);
  border-radius: 10px;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 30px;
  position: relative;
}

.hero-app {
  border-radius: 10px;
  width: 100%;
}

.illustation-image {
  width: 200px;
  position: absolute;
  top: -9%;
  bottom: auto;
  left: auto;
  right: -8%;
}

.illustation-image._02 {
  z-index: 2;
  top: auto;
  bottom: -9%;
  left: 2%;
  right: auto;
}

.half-bg-holder {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.half-bg-holder.smaller {
  height: 70vh;
}

.half-bg {
  z-index: 1;
  filter: blur(20px);
  width: 130%;
  min-width: 140%;
  position: absolute;
  top: auto;
  bottom: -20px;
}

.half-bg.soft {
  opacity: .56;
}

.hero-section {
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  min-height: 90svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section.white-mode {
  background-color: #fff;
  margin-top: -60px;
  padding-top: 60px;
}

.hero-section.black {
  background-color: #000;
}

.hero-section.about {
  background-color: #000;
  overflow: hidden;
}

.light-section-holder {
  border-top: 1px solid rgba(223, 239, 254, .14);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-top: 47px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.light {
  background-image: radial-gradient(circle closest-corner at 50% 0, rgba(200, 200, 200, .17), rgba(0, 0, 0, 0));
  width: 400px;
  height: 200px;
  position: absolute;
  top: -78px;
}

.light-line {
  z-index: 2;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(143, 143, 143, .76) 50%, rgba(0, 0, 0, 0));
  width: 200px;
  height: 3px;
  position: absolute;
  top: -2px;
  bottom: auto;
}

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

.light-content {
  z-index: 1;
  width: 100%;
  position: relative;
}

.trust-text {
  max-width: 350px;
}

.grey-text {
  color: rgba(239, 247, 255, .61);
}

.featured-logo-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 52px;
  display: flex;
}

.featured-logo-grid {
  grid-column-gap: 80px;
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.featured-logo {
  width: 100%;
}

.paragraph-wrapper {
  max-width: 60%;
}

.button-holder {
  grid-column-gap: 24px;
  margin-top: 12px;
  display: flex;
}

.app-showcase {
  margin-top: 62px;
  margin-bottom: 62px;
}

.app-image {
  border-radius: 8px;
  width: 100%;
}

.app-showcase-image {
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

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

.white-section {
  color: #000;
  background-color: #fff;
}

.white-section-wrapper {
  grid-row-gap: 12px;
  flex-direction: column;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
}

.white-section-paragraph {
  max-width: 70%;
}

.white-cards-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  perspective: 1500px;
  grid-template-columns: 1fr 1fr;
}

.white-cards {
  background-image: linear-gradient(#fff, #efefef);
  border: 1px solid #efefef;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.white-cards.smaller {
  grid-row-gap: 32px;
  text-align: center;
  align-items: center;
  padding: 24px;
}

.white-cards-content {
  grid-row-gap: 12px;
  flex-direction: column;
  padding: 35px;
  display: flex;
}

.white-cards-content.smaler {
  grid-row-gap: 4px;
  padding: 0;
}

.white-cards-title {
  text-align: left;
  font-size: 32px;
  font-weight: 500;
}

.white-card-image {
  width: 100%;
}

.white-card-image.smaller {
  width: auto;
  height: 125px;
}

.tabs {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tabs._02 {
  flex-direction: column;
  margin-top: 62px;
}

.tabs-menu {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  display: flex;
}

.tabs-menu._02 {
  grid-column-gap: 30px;
  flex-direction: row;
  max-width: none;
}

.tab-link-content {
  grid-column-gap: 12px;
  color: #fff;
  align-items: center;
  font-size: 22px;
  display: flex;
}

.tab-link-icon-holder {
  background-image: linear-gradient(226deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(223, 239, 254, .14);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  display: flex;
}

.tab-link-icon {
  width: 18px;
}

.tab-link-tab-1 {
  grid-row-gap: 12px;
  background-color: #000;
  border: 1px solid #1f2123;
  border-radius: 16px;
  flex-direction: column;
  padding: 20px;
  display: flex;
}

.tab-link-tab-1.w--current {
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(110, 110, 110, .27), #000);
}

.tab-paragraph {
  margin-bottom: 0;
  overflow: hidden;
}

.tab-pane-tab-1 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.tabs-content {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  overflow: clip;
}

.tab-image {
  border-radius: 15px;
  width: 100%;
}

.tab-cursor-holder {
  cursor: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tab-cursor {
  width: 100px;
}

.super-features-title-holder {
  max-width: 500px;
}

.super-features-grid {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 48px;
  margin-bottom: 48px;
  display: grid;
}

.super-feature-icon {
  width: 24px;
  height: 27px;
}

.super-feature-title {
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 300;
}

.cta-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  background-color: var(--royal-blue);
  border-radius: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.features-hero {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.black-text {
  color: #000;
}

.feature-hero-text {
  max-width: 830px;
}

.features-paragraph {
  max-width: 600px;
}

.performance-section {
  grid-row-gap: 300px;
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.performance-grid {
  grid-column-gap: 130px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

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

.performance-content {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.list {
  padding-left: 0;
}

.list-icon-holder {
  background-color: #f4ebff;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  display: flex;
}

.list-icon {
  width: 16px;
}

.list-text {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.list-item {
  grid-column-gap: 12px;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.list-cta-holder {
  grid-column-gap: 14px;
  align-items: flex-start;
  margin-top: 12px;
  display: flex;
}

.people-holder {
  display: flex;
}

.people-image-holder {
  border: 2px solid #fff;
  border-radius: 200px;
  width: 53px;
  min-width: 53px;
  height: 53px;
  min-height: 53px;
  display: flex;
  overflow: hidden;
}

.people-image-holder._02 {
  z-index: 1;
  margin-left: -24px;
  position: relative;
}

.people-image-holder._03 {
  z-index: 2;
  margin-left: -24px;
  position: relative;
}

.people-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.list-cta-text {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
}

.performance-image-holder {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.performance-image {
  border-radius: 14px;
  width: 100%;
}

.performance-image-02 {
  border-radius: 7px;
  width: 400px;
  position: absolute;
  top: auto;
  bottom: -14%;
  left: -14%;
  right: auto;
  box-shadow: 0 14px 124px rgba(0, 0, 0, .13);
}

.performance-image-03 {
  border-radius: 12px;
  width: 400px;
  position: absolute;
  top: auto;
  bottom: -16%;
  left: auto;
  right: -18%;
  box-shadow: 0 14px 124px rgba(0, 0, 0, .13);
}

.performance-image-04 {
  width: 250px;
  position: absolute;
  top: -19%;
  bottom: auto;
  left: -16%;
  right: auto;
}

.tab-link-tab-2 {
  grid-row-gap: 12px;
  background-color: #000;
  border: 1px solid #1f2123;
  border-radius: 16px;
  flex-direction: column;
  padding: 20px;
  display: flex;
}

.tab-link-tab-2.w--current {
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(110, 110, 110, .27), #000);
}

.dark-cards {
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(200, 200, 200, .1), rgba(0, 0, 0, 0) 85%);
  border: 1px solid #1f2123;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.dark-cards.smaller {
  grid-row-gap: 32px;
  text-align: center;
  align-items: center;
  padding: 24px;
}

.about-hero {
  grid-column-gap: 120px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.about-content {
  grid-row-gap: 62px;
  flex-direction: column;
  min-width: 55%;
  margin-top: -70px;
  display: flex;
}

.about-grid-holder {
  flex: none;
  width: 50vw;
  margin-top: 67px;
  display: flex;
}

.about-grid {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.about-logo-holder {
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  border: 2px solid #1f2123;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 27px;
  display: flex;
}

.about-logo {
  width: 105px;
}

.about-image-holder {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.facts-holder {
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  border: 2px solid #1f2123;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
}

.fact-container {
  border-right: 1px solid #1f2123;
  width: 100%;
  height: 100%;
  padding: 60px;
}

.fact-container.last {
  border-right-style: none;
}

.about-us-grid {
  grid-column-gap: 80px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 62px;
  margin-bottom: 62px;
  display: grid;
}

.about-us-content {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.about-us-grid-images {
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
}

.about-us-grid-images.invert {
  grid-template-columns: 1fr 2.5fr;
}

.about-us-grid-holder {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-us-grid-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-us-grid-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.job-positions-holder {
  grid-row-gap: 24px;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.job-positions {
  filter: grayscale();
  background-color: #000;
  background-image: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, .1), rgba(0, 0, 0, 0) 53%);
  border: 1px solid #1f2123;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  transition: border-color .375s, filter .325s;
  display: flex;
}

.job-positions:hover {
  border-color: var(--royal-blue);
  filter: grayscale(0%);
}

.job-position-icon-holder {
  border: 1px solid rgba(223, 239, 254, .13);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 62px;
  min-width: 62px;
  height: 62px;
  min-height: 62px;
  display: flex;
}

.job-position-icon {
  width: 36px;
}

.job-position-title {
  font-size: 24px;
  font-weight: 500;
}

.job-position-link-holder {
  grid-column-gap: 32px;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  display: flex;
}

.job-position-link-icon-holder {
  width: 32px;
}

.job-position-link-icon {
  width: 100%;
}

.job-position-main {
  grid-column-gap: 32px;
  align-items: center;
  display: flex;
}

.main-blog-holder {
  margin-top: 100px;
}

.blog-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  transform-style: preserve-3d;
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .15), rgba(0, 0, 0, 0) 70%);
  border: 2px solid #1f2123;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  transition: filter .35s, transform .325s;
  display: grid;
  overflow: hidden;
}

.blog-grid:hover {
  transform: rotateX(3deg)rotateY(0)rotateZ(0)scale(.97);
}

.blog-content {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px;
  display: flex;
}

.blog-title {
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 500;
}

.blog-item-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 510px;
}

.post-summery-holder {
  max-width: 450px;
}

.black-line {
  background-color: #000;
  height: 230px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.collection-blog-grid {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-blog-item {
  perspective: 1500px;
  transform-origin: 50%;
}

.blog-item {
  transition: filter .325s, transform .525s;
}

.blog-item:hover {
  transform: scale(.9);
}

.blog-thumbnail {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 230px;
}

.blog-title-small {
  margin-top: 16px;
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 500;
}

.pricing-tab {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 47px;
  margin-bottom: 111px;
  display: flex;
}

.pricing-tabs-menu {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 8px;
}

.pricing-link {
  color: #fff;
  background-color: rgba(221, 221, 221, 0);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.pricing-link.w--current {
  color: #000;
  background-color: #fff;
}

.pricing-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-content {
  width: 100%;
  margin-top: 45px;
}

.pricing-tab-pane {
  width: 100%;
}

.pricing {
  grid-row-gap: 6px;
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .1), rgba(0, 0, 0, 0));
  border: 2px solid #1f2123;
  border-radius: 16px;
  flex-direction: column;
  padding: 26px;
  display: flex;
}

.pricing-header-holder {
  grid-column-gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.pricing-icon {
  width: 73px;
}

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

.pricing-price {
  font-size: 54px;
  font-weight: 500;
}

.small-price {
  font-size: 22px;
  font-weight: 600;
}

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

.faq-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 52px;
  display: flex;
}

.faq-container {
  cursor: pointer;
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .1), rgba(0, 0, 0, 0));
  border: 2px solid #1f2123;
  border-radius: 16px;
  flex-direction: column;
  width: 80%;
  padding: 15px 20px;
  transition: border-color .4s;
  display: flex;
}

.faq-container:hover {
  border-color: #424f5c;
}

.faq {
  justify-content: space-between;
  align-items: center;
  padding-top: 11px;
  padding-bottom: 11px;
  display: flex;
}

.faq-title {
  font-size: 17px;
}

.faq-icon-holder {
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  display: flex;
}

.faq-icon {
  width: 100%;
}

.faq-answer {
  color: #a7a7a7;
  padding-right: 22px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  overflow: hidden;
}

.cta-content {
  z-index: 2;
  grid-row-gap: 24px;
  flex-direction: column;
  padding: 72px 42px;
  display: flex;
  position: relative;
}

.cta-headinge {
  font-size: 54px;
  font-weight: 500;
}

.cta-paragraph {
  margin-bottom: 32px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.cta-image-holder {
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.cta-image {
  object-fit: cover;
  object-position: 0% 0%;
  height: 100%;
}

.cta-text-field {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .3) 37%, rgba(119, 123, 251, 0));
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 200px;
  height: 60px;
  margin-bottom: 0;
  padding-left: 21px;
  padding-right: 130px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  transition: border-color .5s;
}

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

.cta-text-field::placeholder {
  color: #fff;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.background-image-cta {
  filter: brightness(139%);
  width: 163%;
  max-width: 163%;
  position: absolute;
  top: auto;
  bottom: -61%;
  left: -23%;
  right: 0%;
}

.cta-image-illustation {
  width: 157px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: -9%;
  right: auto;
}

.success-message {
  -webkit-backdrop-filter: contrast(200%) blur(12px);
  backdrop-filter: contrast(200%) blur(12px);
  background-color: rgba(119, 123, 251, .37);
  border: 2px solid rgba(255, 255, 255, .49);
  border-radius: 8px;
}

.share-social-media-icon-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: .3;
  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);
}

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

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

.blog-date {
  color: #7d7d7d;
  letter-spacing: .5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20.5px;
}

.blog-details-holder {
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.blog-details-main-image {
  object-fit: cover;
  width: 100%;
  height: 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-details---title {
  color: #fff;
  max-width: 570px;
  font-size: 42px;
  font-weight: 500;
}

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

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

.other-blogs-title {
  margin-top: 80px;
  margin-bottom: 45px;
}

.body {
  background-color: #2b3d75;
}

.paragraph {
  color: #111;
}

.div-block {
  background-color: rgba(255, 255, 255, .7);
  border-radius: 12px;
  padding: 24px;
}

.text-block {
  color: #3d3d3d;
}

.image-floating-background {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.image-floating-background.smaller {
  height: 70vh;
}

.floating-image {
  z-index: 1;
  border-radius: 20px;
  width: 800px;
  position: absolute;
  top: 38px;
  right: -300px;
  overflow: clip;
}

.floating-image.soft {
  opacity: .56;
}

.div-block-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.heading {
  -webkit-text-fill-color: transparent;
  background-color: rgba(0, 0, 0, .64);
  background-image: linear-gradient(126deg, #000, #666 55%, #000 82%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.reason-of-choice {
  font-size: 16px;
}

.floating-image-content {
  position: static;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.floating-image-overlay {
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(48deg, #fff, #fff 17%, rgba(253, 250, 250, 0) 51%, rgba(252, 249, 249, 0));
  background-clip: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

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

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

  .white-section-paragraph {
    max-width: 62%;
  }

  .about-content {
    min-width: 50%;
  }

  .cta-image-holder {
    padding: 50px 0 50px 50px;
  }

  .div-block-2 {
    grid-column-gap: 58px;
    grid-row-gap: 58px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

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

  p {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
  }

  .container {
    padding-top: 2.4em;
    padding-bottom: 0;
  }

  .container.space-top {
    padding-top: 2.4em;
  }

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

  .nav-menu-link-holder {
    grid-row-gap: 20px;
    background-color: #fff;
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .nav-menu-button-holder.login {
    padding-left: 0;
  }

  .nav-menu {
    height: auto;
    display: flex;
  }

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

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

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

  .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: 12px;
    padding: 13px;
  }

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

  .paragraph-black-small {
    font-size: 16px;
  }

  .hero-section-wrapper {
    padding-top: 100px;
  }

  .hero-section-gird {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .illustation-image {
    width: 110px;
    right: -1%;
  }

  .half-bg {
    bottom: -19px;
  }

  .center-text {
    grid-row-gap: 4px;
  }

  .featured-logo-holder {
    padding-top: 24px;
  }

  .featured-logo-grid {
    grid-column-gap: 30px;
    width: 100%;
  }

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

  .app-showcase-image {
    width: 90%;
  }

  .white-cards-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .white-cards.smaller {
    padding: 12px;
  }

  .white-cards-content {
    padding: 24px;
  }

  .white-cards-title {
    font-size: 26px;
  }

  .white-card-image.smaller {
    height: 100px;
  }

  .tabs {
    flex-direction: column;
  }

  .tabs-menu {
    grid-column-gap: 10px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
  }

  .tab-link-tab-1 {
    flex-flow: wrap;
    width: 45%;
  }

  .tab-cursor {
    display: none;
  }

  .cta-wrapper {
    border-radius: 14px;
    flex-direction: column;
    display: flex;
  }

  .about-hero {
    grid-column-gap: 40px;
  }

  .about-image-holder {
    border-radius: 5px;
  }

  .facts-holder {
    align-items: stretch;
  }

  .fact-container {
    padding: 26px;
  }

  .about-us-grid {
    grid-column-gap: 30px;
  }

  .blog-content {
    padding: 23px;
  }

  .blog-item-thumbnail {
    max-height: 400px;
  }

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

  .pricing-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .cta-content {
    padding: 37px 37px 0;
  }

  .cta-image-holder {
    justify-content: flex-end;
    padding-left: 37px;
  }

  .cta-image-illustation {
    top: 0%;
    bottom: auto;
    left: 4%;
    right: auto;
  }

  .image-floating-background {
    padding-top: 36px;
    position: static;
  }

  .floating-image {
    width: 80%;
    position: static;
    bottom: -19px;
  }

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

  .floating-image-overlay {
    background-image: none;
  }
}

@media screen and (max-width: 767px) {
  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;
  }

  .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: rgba(26, 27, 31, .75);
  }

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

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

  .brand {
    padding-left: 0;
  }

  .hero-section-wrapper {
    padding-top: 0;
  }

  .hero-section-gird {
    padding-bottom: 30px;
  }

  .half-bg-holder {
    justify-content: flex-start;
    align-items: center;
    bottom: 0;
  }

  .half-bg {
    min-width: 250%;
  }

  .white-section-paragraph {
    max-width: 100%;
  }

  .white-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .super-features-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .performance-grid, .performance-grid.invert {
    grid-row-gap: 130px;
    flex-direction: column;
    display: flex;
  }

  .performance-image-03 {
    width: 200px;
    bottom: -9%;
    right: -1%;
  }

  .about-hero {
    flex-direction: column;
  }

  .about-content {
    min-width: 0%;
    max-width: none;
    margin-top: 0;
  }

  .about-grid-holder {
    width: 100%;
  }

  .facts-holder {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .fact-container {
    border-bottom: 1px solid #1f2123;
    border-right-style: none;
  }

  .fact-container.last {
    border-bottom-style: none;
  }

  .about-us-grid {
    flex-direction: column;
    display: flex;
  }

  .about-us-grid-wrapper {
    grid-row-gap: 16px;
  }

  .job-position-icon-holder {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
  }

  .job-position-icon {
    width: 29px;
  }

  .job-position-title {
    font-size: 18px;
  }

  .job-position-link-holder {
    grid-column-gap: 14px;
    font-size: 16px;
  }

  .job-position-link-icon-holder {
    width: 21px;
  }

  .job-position-main {
    grid-column-gap: 8px;
  }

  .main-blog-holder {
    margin-top: 50px;
  }

  .blog-grid {
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    display: flex;
  }

  .blog-content {
    padding: 42px;
  }

  .pricing-content {
    overflow: visible;
  }

  .pricing {
    padding: 12px;
  }

  .pricing-header-holder {
    grid-row-gap: 12px;
    text-align: center;
    flex-direction: column;
  }

  .pricing-price.title {
    font-size: 32px;
  }

  .faq-container {
    width: 100%;
  }

  .image-floating-background {
    justify-content: flex-start;
    align-items: center;
    bottom: 0;
  }

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

@media screen and (max-width: 479px) {
  ._4-col-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .container {
    padding: 2em .7em;
  }

  .container.navbar-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 15px;
    font-weight: 500;
  }

  .button.cta-button {
    position: relative;
  }

  .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-divider {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
  }

  .title {
    background-image: linear-gradient(141deg, #96beff, #297bff 9%, #297bff 57%, #fff);
  }

  .featured-logo-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

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

  .footer-form {
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .footer-form-wrapper {
    width: 100%;
  }

  .hero-section-wrapper {
    padding-top: 60px;
  }

  .hero-buttons-holder {
    grid-column-gap: 12px;
  }

  .hero-app-holder {
    margin-top: 70px;
    margin-bottom: 130px;
  }

  .illustation-image {
    width: 70px;
  }

  .illustation-image._02 {
    bottom: 1%;
  }

  .light-section-holder {
    padding: 40px 5px;
  }

  .light {
    width: 240px;
  }

  .featured-logo-grid {
    grid-column-gap: 60px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
    display: grid;
  }

  .featured-logo.last {
    width: 50%;
  }

  .app-image {
    border-radius: 4px;
  }

  .app-showcase-image {
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
  }

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

  .white-cards-grid {
    grid-row-gap: 30px;
    flex-direction: column;
    display: flex;
  }

  .white-cards {
    background-image: linear-gradient(#f3f3f3, #e0e0e0);
  }

  .tabs-menu {
    min-width: 100px;
  }

  .tab-link-content {
    grid-column-gap: 8px;
  }

  .tab-link-icon-holder {
    border-radius: 5px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .tab-link-tab-1 {
    border-radius: 7px;
    width: 100%;
    padding: 12px;
  }

  .tab-image {
    border-radius: 8px;
  }

  .super-features-grid {
    grid-row-gap: 42px;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .about-content {
    grid-row-gap: 32px;
  }

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

  .about-us-grid {
    margin-top: 34px;
    margin-bottom: 34px;
  }

  .about-us-content {
    grid-row-gap: 18px;
  }

  .job-positions {
    grid-row-gap: 24px;
    filter: none;
    flex-direction: column;
  }

  .job-position-title {
    font-size: 22px;
    font-weight: 500;
  }

  .job-position-link-holder {
    opacity: .59;
  }

  .job-position-main {
    grid-row-gap: 18px;
    flex-direction: column;
  }

  .blog-content {
    padding: 22px;
  }

  .blog-item-thumbnail {
    max-height: 250px;
  }

  .collection-blog-grid {
    grid-row-gap: 24px;
    flex-direction: column;
    display: flex;
  }

  .pricing-tab {
    align-items: center;
  }

  .pricing-tabs-menu {
    text-align: center;
    border-radius: 9px;
    display: flex;
  }

  .pricing-link {
    border-radius: 5px;
    justify-content: center;
    padding: 9px 21px;
    display: flex;
  }

  .pricing-grid {
    grid-row-gap: 32px;
    flex-direction: column;
    display: flex;
  }

  .pricing-content {
    margin-top: 12px;
  }

  .faq-container {
    border-radius: 13px;
    padding: 16px;
  }

  .faq {
    grid-column-gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .faq-title {
    font-size: 20px;
  }

  .cta-content {
    grid-row-gap: 12px;
    padding: 18px;
  }

  .cta-headinge {
    font-size: 32px;
  }

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

  .cta-image-holder {
    padding-left: 17px;
  }

  .cta-text-field {
    padding-right: 21px;
  }

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

  .cta-image-illustation {
    width: 80px;
    top: -15%;
  }

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

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

  .image-floating-background {
    padding-top: 0;
    padding-bottom: 71px;
  }
}

#w-node-e64935f8-6dd6-fe34-e799-60eefa407abc-6d8dfbcc, #w-node-e0e1833b-a885-5b70-faee-d03a6d6f27ce-6d8dfbcc, #w-node-_7c2234c5-6227-af18-1539-a4b96d5987ae-6d8dfbcc, #w-node-_1997715c-a4ab-d414-212c-da6e01f72cb4-6d8dfbcc, #w-node-_6d367612-f8bb-104a-e9b4-f85dd330a307-6d8dfbcc, #w-node-_791b0520-9e17-c96e-14f5-e3e035d1c309-6d8dfbcc, #w-node-ea7a44fc-3f85-5476-a261-da647a53ecff-6d8dfbcc, #w-node-_499ea907-40df-0e80-af4b-006824a550f9-6d8dfbcc, #w-node-d20db0d6-52a1-a41f-74d7-29f383872809-6d8dfbcc, #w-node-_0366f18b-4a67-a3da-8d46-c7e080eb8037-6d8dfbcc, #w-node-_1a28ebeb-9162-d3cb-8468-7300a05229ba-6d8dfbcf, #w-node-_8595b4cc-f73c-3ac7-f9ab-37cddb2978a1-6d8dfbd0, #w-node-_63c7100f-9342-3d29-c1e8-a026ad70c2f3-6d8dfbd1, #w-node-_50d429f7-a276-3f83-9b9a-bc93d36794c4-6d8dfbd2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdc2-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc5-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc8-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdcb-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdce-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd1-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd4-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd7-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddc-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddf-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde2-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde5-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde8-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdeb-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf0-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf3-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf6-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf9-6d8dfbd2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-6d8dfbd2 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_82eea95d-a132-1675-880c-f4f35d23ec81-6d8dfbd4, #w-node-_7916b1f2-b074-bb0d-dab2-01002c957cc8-6d8dfbd4, #w-node-_3c5fd0b9-f75b-60d0-9f30-271e0575331a-6d8dfbd4, #w-node-_3c5fd0b9-f75b-60d0-9f30-271e057532f8-6d8dfbd4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bfce2180-a766-d29d-8ec4-73ad2b8a2bc3-6d8dfbd4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bfce2180-a766-d29d-8ec4-73ad2b8a2bca-6d8dfbd4, #w-node-bfce2180-a766-d29d-8ec4-73ad2b8a2bd1-6d8dfbd4, #w-node-bfce2180-a766-d29d-8ec4-73ad2b8a2bd8-6d8dfbd4, #w-node-bfce2180-a766-d29d-8ec4-73ad2b8a2bdf-6d8dfbd4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ad3b0cd5-c1dc-68be-5fcd-4f64799d513f-6d8dfbd5 {
  grid-area: 1 / 2 / 3 / 4;
}

#w-node-_1bbd0e08-a492-c492-68f4-5ca03848aca1-6d8dfbd5 {
  grid-area: 3 / 1 / 5 / 4;
}

#w-node-_1d9faa6c-4e80-1c6b-aaf3-8da7a95dd4cd-6d8dfbd5 {
  grid-area: 1 / 4 / 5 / 7;
}

#w-node-e154ebad-f956-22ed-d3f1-64e585d00b27-6d8dfbd5 {
  grid-area: 5 / 3 / 7 / 7;
}

#w-node-_73eba624-1bec-1fff-8b9a-f0d5d1c72ba0-6d8dfbd5, #w-node-_73eba624-1bec-1fff-8b9a-f0d5d1c72ba2-6d8dfbd5, #w-node-_73eba624-1bec-1fff-8b9a-f0d5d1c72ba4-6d8dfbd5, #w-node-_73eba624-1bec-1fff-8b9a-f0d5d1c72ba7-6d8dfbd5, #w-node-_73eba624-1bec-1fff-8b9a-f0d5d1c72ba9-6d8dfbd5, #w-node-a6031c97-c530-b356-25d8-fc7f86789a81-6d8dfbd6, #w-node-_733b0c03-23cc-0282-a6f2-c097bb16241a-6d8dfbd6, #w-node-b696230c-d10c-d928-7d07-eb4a3e19c026-6d8dfbd8, #w-node-b696230c-d10c-d928-7d07-eb4a3e19c037-6d8dfbd8, #w-node-b696230c-d10c-d928-7d07-eb4a3e19c048-6d8dfbd8, #w-node-_5d8677a9-e289-27d2-7df3-bf02deb00cdf-6d8dfbd8, #w-node-_5d8677a9-e289-27d2-7df3-bf02deb00cf0-6d8dfbd8, #w-node-_5d8677a9-e289-27d2-7df3-bf02deb00d01-6d8dfbd8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-ad3b0cd5-c1dc-68be-5fcd-4f64799d513f-6d8dfbd5 {
    grid-area: 1 / 1 / 3 / 4;
  }

  #w-node-b696230c-d10c-d928-7d07-eb4a3e19c037-6d8dfbd8 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b696230c-d10c-d928-7d07-eb4a3e19c048-6d8dfbd8 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_5d8677a9-e289-27d2-7df3-bf02deb00cf0-6d8dfbd8 {
    grid-area: 1 / 1 / 2 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e0e1833b-a885-5b70-faee-d03a6d6f27ce-6d8dfbcc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e154ebad-f956-22ed-d3f1-64e585d00b27-6d8dfbd5 {
    grid-area: 5 / 1 / 7 / 7;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4fd8ffdc-b906-4a22-50f4-5a70721fe673-6d8dfbcc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-6d8dfbd2, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-6d8dfbd2 {
    grid-column: span 2 / span 2;
  }

  #w-node-ad3b0cd5-c1dc-68be-5fcd-4f64799d513f-6d8dfbd5, #w-node-_1bbd0e08-a492-c492-68f4-5ca03848aca1-6d8dfbd5 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_1d9faa6c-4e80-1c6b-aaf3-8da7a95dd4cd-6d8dfbd5 {
    grid-area: span 4 / span 2 / span 4 / span 2;
  }

  #w-node-e154ebad-f956-22ed-d3f1-64e585d00b27-6d8dfbd5 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_32f70bab-8fd9-11a6-ae62-b7eafe39025b-6d8dfbd8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


