@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Bold.ttf') format("truetype"), url('../fonts/Poppins-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-BoldItalic.ttf') format("truetype"), url('../fonts/Poppins-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--background-color: white;
  --fonts--main-font: Poppins, sans-serif;
  --color--font: #32393c;
  --fonts--paragraph-font: Poppins, sans-serif;
  --color--acent-color: #00a1f3;
  --white: #fff;
  --color--box-color: #f8f8f8;
  --color--font-gradient-color-01: #000;
  --color--box-stroke: #cecece4d;
  --color--font-gradient-color-02: #15151c;
}

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

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

@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(--color--background-color);
  font-family: var(--fonts--main-font);
  color: var(--color--font);
  font-size: 14px;
  line-height: 1.2;
}

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

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

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: 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-font);
  color: var(--color--font);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

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

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

li {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--font);
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.1;
}

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

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

figure {
  margin-bottom: 10px;
}

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

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

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

.yellow-color-show-case {
  background-color: var(--white);
  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(--color--box-color);
}

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

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

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

.container {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  position: relative;
}

.container.navbar-container {
  -webkit-backdrop-filter: saturate(120%) blur(21px);
  backdrop-filter: saturate(120%) blur(21px);
  background-color: #ffffffd4;
  border-radius: 15px;
  align-items: center;
  width: auto;
  max-width: none;
  height: 50px;
  padding: 4px 4px 5px 14px;
  display: flex;
}

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

._100width {
  width: 100%;
}

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

.button {
  background-color: var(--color--font-gradient-color-01);
  font-family: var(--fonts--paragraph-font);
  color: var(--color--background-color);
  text-align: center;
  border-radius: 4px;
  padding: 14px 30px 12px;
  font-size: 16px;
  font-weight: 300;
  transition: transform .35s cubic-bezier(.68, -.55, .265, 1.55), background-color .45s;
}

.button:hover {
  background-color: var(--color--font);
  color: var(--color--box-color);
  transform: scale(1.05);
}

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

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

.button.transparent {
  border: 1px solid var(--color--box-stroke);
  color: var(--color--font);
  background-color: #fff0;
  transition-property: color, background-color;
}

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

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

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

.button.form-button {
  background-color: var(--color--font-gradient-color-01);
  color: var(--color--box-color);
  border: 1px #000;
  border-radius: 4px;
  height: 42px;
  padding: 10px 22px;
  font-size: 17px;
  transition-property: border-color, background-color;
}

.button.form-button:hover {
  background-color: #640d7e;
  border-color: #922ab1;
}

.button.outlined {
  border: 1px solid var(--color--font);
  background-color: var(--color--box-color);
  color: var(--color--font);
}

.button.outlined:hover {
  background-color: #00000014;
}

.button.pricing-button {
  border: 1px solid var(--color--font);
  color: var(--color--font);
  text-align: center;
  background-color: #fff0;
}

.button.pricing-button:hover {
  background-color: #ffffff29;
}

.button.pricing-button.compare-button {
  background-color: var(--color--font-gradient-color-01);
  color: var(--white);
  font-size: 14px;
}

.button.pricing-button.compare-button.slybroadcast {
  border-color: var(--color--background-color);
  color: var(--color--font);
  background-color: #49b970;
}

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

.style-guide-box-holder {
  background-color: var(--color--box-stroke);
  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.p {
  background-image: url('../images/Pricing-BG.webp');
  background-position: 0 0;
  background-size: cover;
}

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

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

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

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

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

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

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

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

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

.brand-image {
  width: 150%;
  max-width: 200%;
}

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

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

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

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

.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 {
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-link {
  color: var(--color--font);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

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

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

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

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

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

.title {
  font-family: var(--fonts--main-font);
  color: var(--color--font-gradient-color-01);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 13px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
}

.title.white-text {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, var(--color--box-stroke), var(--white) 28%);
  color: var(--color--font);
}

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

.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 {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--font);
  background-color: #85858526;
  border: 1px solid #d1d1d180;
  border-radius: 4px;
  width: 100%;
  height: 42px;
  margin-bottom: 0;
  font-size: 16px;
  transition: border-color .45s, box-shadow .425s;
}

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

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

.text-field::placeholder {
  color: var(--color--font-gradient-color-02);
  font-size: 15px;
}

.submit-button {
  background-color: var(--color--font);
  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: 6px;
}

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

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

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

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

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

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

.help-heading-holder {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  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: var(--color--font-gradient-color-01);
}

.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: var(--color--font);
  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(--color--acent-color);
  opacity: 1;
}

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

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

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

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

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

.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: 0;
  width: 100%;
}

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

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

.link:hover {
  color: #afafaf;
}

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

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

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

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

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

.brand {
  width: 120px;
}

.hero-section-holder {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  position: relative;
}

.hero-section-container {
  z-index: 1;
  grid-row-gap: 30px;
  perspective: 1500px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 90px;
  display: flex;
  position: relative;
}

.hero-section-news-holder {
  background-color: var(--color--background-color);
  border-radius: 7px;
  flex-direction: column;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 12px;
  display: flex;
}

.hero-section-news-container {
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  flex-direction: row;
  align-items: center;
  padding: 6px 16px;
  display: flex;
}

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

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

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

.hero-section-app-holder {
  z-index: 1;
  perspective: 1500px;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-section-app-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-section-phone-holder {
  z-index: 1;
  width: 100%;
  margin-left: 0;
  position: relative;
}

.hero-section-phone-screenshot-holder {
  padding: 2.5% 41% 34% 13%;
  position: absolute;
  inset: 0%;
}

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

.hero-section-phone-image {
  z-index: 1;
  filter: brightness(126%);
  width: 100%;
  position: relative;
}

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

.hero-background-holder.blog-hero {
  border-radius: 17px;
}

.hero-background {
  object-fit: cover;
  background-image: none;
  width: 100%;
  min-width: 100%;
  height: 100%;
}

.title-holder {
  z-index: 2;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  display: flex;
  position: relative;
}

.title-holder.xl-padding {
  z-index: 10;
  padding-top: 120px;
  position: relative;
}

.reviews-logos-holder {
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  overflow: hidden;
}

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

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

.reviews-logo-image {
  filter: invert(66%);
  width: 100%;
}

.fetaures-paragraph-holder {
  max-width: 440px;
}

.featured-cards-holder {
  margin-top: 60px;
  margin-bottom: 60px;
}

.features-card-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.features-card-image-container {
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.featured-card-background-iamge {
  object-fit: cover;
  width: 100%;
  min-width: 160%;
  height: 160%;
  position: absolute;
}

.featured-card-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.card-title-holder {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.card-title {
  font-size: 32px;
}

.grey-text {
  color: #202020cc;
  font-size: 16px;
}

.grey-text.no-marings {
  margin-bottom: 0;
}

.grey-text.g {
  color: #fffc;
}

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

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

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

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

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

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

.arrow-right {
  width: 13px;
}

.stats-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 1px solid var(--color--box-stroke);
  background-color: var(--color--box-color);
  opacity: .8;
  border-radius: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  padding: 20px 19px;
  display: flex;
  overflow: hidden;
}

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

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

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

.deploying-app-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(0);
}

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

.deploying-app-screenshot-holder {
  perspective: 1500px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
}

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

.gradient-line {
  opacity: .5;
  background-image: linear-gradient(to right, #ebebeb00, #ebebeb 17% 81%, #ebebeb00);
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.gradient-line.veritcal {
  background-image: linear-gradient(to top, #ebebeb00, #ebebeb 17% 81%, #ebebeb00);
  width: 1px;
  height: 90px;
  margin-top: 0;
  margin-bottom: 0;
}

.tab-link {
  background-color: #19191b;
  border: 1px solid #2f2f2f;
  border-radius: 16px;
  height: 100%;
  padding: 23px;
  transition: border-color .425s;
}

.tab-link:hover {
  border-color: #8a8a8a;
}

.tab-link.w--current {
  background-color: #1b1c1d;
  border-color: #fff;
}

.best-things-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.best-things-footer-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

.logo-interection-wrapper._01 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  padding-left: 6px;
  padding-right: 6px;
}

.logo-interection-wrapper._02 {
  grid-column-gap: 15px;
  padding-left: 6px;
  padding-right: 6px;
}

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

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

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

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

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

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

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

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

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

.social-media-image {
  filter: invert();
  width: 100%;
}

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

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

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

.title-wrapper {
  max-width: 840px;
}

.animate-on-load-03 {
  color: var(--color--font);
}

.starts-holder {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  max-width: 200px;
  display: flex;
}

.extra-features-2x {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.extra-features {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--color--box-stroke);
  text-align: center;
  background-color: #ffffffb3;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 370px;
  padding: 25px 18px;
  display: flex;
  position: relative;
}

.extra-features.left {
  position: relative;
  left: -60px;
}

.extra-features.right {
  position: relative;
  right: -60px;
}

.extra-features-icon {
  width: 32px;
  height: 32px;
}

.extra-features-heading {
  font-size: 24px;
  font-weight: 500;
}

.extra-features-phone-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: start;
  min-height: 790px;
  margin-top: 45px;
  display: flex;
  position: relative;
}

.extra-features-phone-wrapper {
  z-index: 1;
  width: 47vw;
  max-width: 610px;
  position: relative;
  left: 80px;
}

.extra-features-wrapper {
  z-index: 10;
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.phone-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.extra-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gradient-circle {
  filter: saturate(200%);
  width: 100%;
  min-width: 120%;
  position: absolute;
  top: 122px;
}

.feature-hero-holder {
  overflow: hidden;
}

.feature-hero-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  display: flex;
  position: relative;
}

.feature-hero-content {
  z-index: 10;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 800px;
  display: flex;
  position: relative;
}

.feature-paragraph {
  max-width: 420px;
}

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

.features-phone-holder {
  width: 600px;
  margin-top: 34px;
  position: relative;
  left: 87px;
}

.feature-bg {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.grid-features-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  padding-top: 39px;
  padding-bottom: 39px;
  display: flex;
}

.grid-features {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.grid-simple-feature {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-grid-line {
  opacity: 1;
  background-image: linear-gradient(#000, #000);
  width: 2px;
  height: auto;
}

.facts-holder {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  border: 1px solid var(--color--box-stroke);
  background-color: var(--color--box-color);
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px 35px;
  transition: border-color .3s, background-color .3s, transform .3s;
  display: flex;
}

.facts-holder:hover {
  border: 1px solid var(--color--acent-color);
  transform: scale(.97);
}

.facts-holder.horizontal {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
  padding-right: 0;
  overflow: hidden;
}

.facts-holder.with-image {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding: 0;
}

.facts-number {
  background-image: linear-gradient(90deg, var(--color--acent-color), #f5b36b);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 92px;
  font-weight: 700;
  line-height: .8;
}

.facts-number._03 {
  line-height: .8;
}

.facts-heading {
  font-size: 28px;
  font-weight: 500;
}

.facts-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 280px;
  max-width: 280px;
  display: flex;
}

.logos-holder {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.fact-heading-holder {
  padding: 0 40px 40px;
}

.piricng-hero-section {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 70px;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.pricing {
  background-color: var(--color--box-color);
  text-align: left;
  border: 1px solid #ffffff26;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.pricing.group {
  background-color: var(--color--font-gradient-color-02);
}

.pricing-header-holder {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border-bottom: 1px solid #0000001a;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
}

.pricing-title {
  color: var(--color--font-gradient-color-01);
  font-size: 32px;
}

.pricing-title.g {
  color: var(--color--background-color);
}

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

.price-text {
  color: var(--color--font-gradient-color-01);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 58px;
  font-weight: 700;
}

.price-text.g {
  color: var(--color--background-color);
}

.pricing-button-holder {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  display: flex;
}

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

.tabs-content-2 {
  margin-top: 45px;
  margin-bottom: 45px;
}

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

.tabs-menu-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #ffffffb3;
  border-radius: 12px;
  padding: 8px;
  display: flex;
}

.tab-link-tab-2 {
  color: var(--color--font);
  background-color: #d8d5d100;
  border-radius: 5px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  transition: color .35s, background-color .475s;
}

.tab-link-tab-2:hover {
  background-color: #86868636;
}

.tab-link-tab-2.w--current {
  background-color: var(--color--font);
  color: var(--color--background-color);
}

.more-pricing-options {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.enterprise-price-holder {
  border: 1px solid var(--color--box-stroke);
  background-color: var(--color--box-color);
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
}

.enterprise-price-container {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.enterprise-price-heading {
  font-size: 32px;
}

.faq-title-holder {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  display: flex;
}

.faq-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.faq-holder {
  border: 1px solid var(--color--box-stroke);
  background-color: var(--color--box-color);
  font-family: var(--fonts--paragraph-font);
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  padding: 22px;
  transition: background-color .425s, background-color .325s;
}

.faq-holder:hover {
  border-color: var(--color--acent-color);
  background-color: var(--color--box-color);
}

.faq-question-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.open---close-button {
  filter: invert(53%);
  width: 21px;
}

.faq-answer-holder {
  overflow: hidden;
}

.faq-answer {
  color: #000000bf;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}

.faq-question {
  color: var(--color--font);
  font-size: 18px;
  font-weight: 500;
}

.featured-blog-wrapper {
  margin-top: 20px;
  margin-bottom: 44px;
}

.featured-blog {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #131313bf;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  transition: background-color .325s;
  display: grid;
  overflow: hidden;
}

.featured-blog:hover {
  background-color: #131313;
}

.featured-blog-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 60px;
  display: flex;
}

.featured-blog-title {
  color: var(--color--background-color);
  font-size: 32px;
  font-weight: 500;
}

.featured-blog-title.smaller {
  color: var(--color--font);
  font-size: 22px;
}

.featured-blog-paragraph {
  color: var(--color--background-color);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.featured-blog-paragraph.dark {
  color: var(--color--font);
}

.featured-blog-image-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: flex;
}

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

.blog-grid-wrapper {
  margin-top: 30px;
  margin-bottom: 120px;
}

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

.blog-grid-link {
  transition: transform .3s;
}

.blog-grid-link:hover {
  transform: translate(0, -8px);
}

.blog-thumbnail {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 8px;
  width: 100%;
  max-height: 300px;
}

.blog-content-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding-top: 16px;
  display: flex;
}

.blog-thumbnail-wrapper {
  position: relative;
}

.blog-overlay {
  opacity: 0;
  color: var(--color--background-color);
  background-image: linear-gradient(0deg, #0006, #840da700);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 24px;
  font-size: 25px;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.blog-rich-text h1 {
  font-size: 52px;
}

.blog-rich-text h2 {
  font-size: 42px;
}

.blog-rich-text h3 {
  font-size: 32px;
}

.blog-rich-text h4 {
  font-size: 28px;
}

.blog-rich-text h5 {
  font-size: 26px;
}

.share-icon {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  filter: invert();
  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: stretch;
  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 {
  max-width: 570px;
  font-size: 42px;
  font-weight: 400;
}

.blog-details-content {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-details-content.left {
  margin-left: 0;
  margin-right: 0;
}

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

.extra-features-perspective {
  perspective: 1500px;
}

.perspective {
  perspective: 1853px;
}

.logo-gradient-left {
  z-index: 1;
  background-image: linear-gradient(270deg, #f8f8f800, var(--color--box-color) 78%);
  width: 40%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -1%;
  right: auto;
}

.logo-gradient-left.right {
  background-image: linear-gradient(90deg, #f8f8f800, var(--color--box-color) 78%);
  left: auto;
  right: -4%;
}

.feature-hero-text-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-title {
  color: var(--color--font);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 13px;
  font-weight: 500;
  line-height: 1;
}

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

._404-logo {
  width: 170px;
  margin-bottom: 24px;
}

.hero-section-box {
  border: 1px solid var(--color--background-color);
  background-color: var(--color--box-color);
  border-radius: 14px;
  flex-flow: row;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-left: 53px;
  padding-right: 53px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section-phone-holder-simple {
  z-index: 2;
  flex: none;
  width: 65%;
  min-width: 65%;
  position: relative;
  top: 60px;
}

.hero-section-phone-holder-simple.behind {
  z-index: 1;
  width: 57%;
  min-width: 57%;
  margin-left: -100px;
}

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

.hero-section-phone-screenshot-holder-2 {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-section-phone-screenshot-image-2 {
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 20px;
  width: 93%;
  height: 97%;
  position: relative;
  bottom: 1.5%;
}

.orange-background {
  background-image: radial-gradient(circle, #6cb6e0, #6cb6e0 25% 49%, #c5ddff 73%, #e3eeff);
  border-radius: 20000px;
  width: 1500px;
  min-width: 1500px;
  height: 1500px;
  min-height: 1500px;
  position: absolute;
  inset: 0% auto auto -6%;
  transform: translate(0);
}

.dark-mode-section {
  height: 200vh;
}

.dark-mode-section-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-top: 44px;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.dark-mode-phone-holder {
  z-index: 2;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  width: 18%;
  padding-top: 30px;
  display: flex;
  position: relative;
}

.dark-mode-phone {
  z-index: 2;
  flex: none;
  width: 100%;
  position: relative;
  top: 0;
}

.hero-section-phone-screenshot-holder-dark {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-section-phone-screenshot-image-dark {
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 20px;
  width: 93%;
  height: 97%;
  position: absolute;
  inset: auto auto 1.5%;
}

.dark-mode-sun-holder {
  justify-content: center;
  align-items: flex-start;
  height: 54%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.orange-sun {
  background-image: radial-gradient(circle, #e8a051, #ed608a 25%, #ee7e71 49%, #e49392 73%, #c5b5d1);
  border-radius: 20000px;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0% 0 auto 0%;
  transform: translate(0);
  box-shadow: inset 10.25px 5.91px 65.65px #e8a150, -7.49px -3.55px 98.57px #e99e53;
}

.orange-sun.purple {
  opacity: 0;
  background-image: radial-gradient(circle, #9d85ff, #a954c8 25%, #7158da 49%, #7141d5 73%, #9d85ff);
  position: absolute;
  box-shadow: inset 10.25px 5.91px 65.65px #9378ff, -7.49px -3.55px 98.57px #7249d787;
}

.dark-mode-sun-cut {
  background-color: var(--color--background-color);
  height: 31%;
  position: absolute;
  inset: auto 0% 0%;
}

.orange-sun-holder {
  justify-content: center;
  align-items: flex-start;
  width: 800px;
  height: 800px;
  display: flex;
  position: relative;
}

.left-lottie {
  width: 240px;
  position: absolute;
  inset: -55px auto auto -108px;
}

.left-lottie.right-side {
  left: auto;
  right: -108px;
}

.left-lottie-file, .right-lottie-file {
  width: 100%;
}

.orange-sun-wrapper {
  width: 800px;
  height: 800px;
  position: absolute;
}

.heading {
  text-align: center;
  padding-top: 40px;
}

.nav-link-2 {
  color: #000;
  border-bottom: 3px solid #fff0;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 6px 12px 3px;
  font-size: 14px;
  transition: background-color .6s;
  display: flex;
  bottom: -1px;
}

.nav-link-2.w--current {
  color: #fff;
  background-color: #0000;
}

.nav-link-2.join {
  color: #00a1f3;
}

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

.text-span {
  background-color: var(--color--acent-color);
  color: #fff;
  border-radius: 20px;
  padding: 10px;
}

.paragraph {
  font-size: 16px;
}

.text-block {
  text-align: center;
  padding-top: 40px;
}

.heading-2 {
  text-align: center;
  padding-top: 20px;
}

.paragraph-2 {
  color: var(--color--font);
  min-width: auto;
  font-size: 16px;
}

.body {
  padding-right: 0;
}

.regular-s {
  color: #32393c;
  font-size: 16px;
}

.pricing-price-info {
  padding-bottom: 4px;
}

.pricing-block-main {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-bottom: 1px solid #ffffff1a;
  flex-flow: column;
  padding: 32px;
  display: flex;
}

.header-glow {
  z-index: 0;
  filter: blur(100px);
  background-color: #ffffff1a;
  border-radius: 50%;
  width: 360px;
  height: 360px;
  position: absolute;
}

.section-2 {
  margin-top: 80px;
  padding-top: 160px;
}

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

.button-background {
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button-background.secondary-background {
  background-image: linear-gradient(270deg, #ffffff0d, #ffffff26);
}

.button-background.primary-background {
  background-image: linear-gradient(315deg, #68f7bb, #00a360);
}

.button-2 {
  text-align: center;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  padding: 16px 24px 18px;
  position: relative;
  overflow: hidden;
}

.button-2.primary {
  background-color: var(--color--acent-color);
  color: #000;
}

.button-2.secondary-small {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-color: #00a1f3;
  border-radius: 8px;
  padding: 11px 16px 12px;
}

.button-2.secondary {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-color: #00a1f3;
  box-shadow: inset 0 0 12px #ffffff1a;
}

.button-2.primary-small {
  color: #000;
  background-color: #00a1f3;
  border-radius: 8px;
  padding: 11px 16px 12px;
}

.button-2.primary-small._4 {
  background-color: #3db66b;
}

.button-2.primary {
  color: #000;
  background-image: linear-gradient(135deg, #68f7bb, #00a360);
}

.button-2.secondary-small {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-image: linear-gradient(90deg, #ffffff0d, #ffffff26);
  border-radius: 8px;
  padding: 11px 16px 12px;
}

.button-2.secondary {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-image: linear-gradient(90deg, #ffffff0d, #ffffff26);
  box-shadow: inset 0 0 12px #ffffff1a;
}

.button-2.primary-small {
  color: #000;
  background-image: linear-gradient(135deg, #68f7bb, #00a360);
  border-radius: 8px;
  padding: 11px 16px 12px;
}

.table-row-value {
  color: #ffffff8c;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pricing-bullet-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.table-header-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.pricing-block-wrapper {
  border-bottom: 2px solid #68f7bb;
  border-radius: 24px;
  flex-flow: column;
  display: flex;
}

.pricing-info {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  padding: 32px 32px 34px;
  display: flex;
}

.section-center-header {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.table-row {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template: ". Area"
  / 1fr 1.5fr 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-price {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.chips {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid #ffffff1a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 10px 16px 10px 14px;
  display: flex;
  box-shadow: inset 0 0 12px #ffffff1a;
}

.pricing-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.checkmark {
  background-image: linear-gradient(90deg, #00a1f3, #00a1f3 50%, #00a1f3);
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
  box-shadow: inset 0 0 12px #ffffff1a;
}

.checkmark._4 {
  background-color: #3db66b;
  background-image: none;
}

.container-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1208px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.table-header-overlay {
  background-color: #fff;
  height: 120px;
  position: absolute;
  inset: -120px 0% auto;
}

.bullet-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bullet-text {
  flex-flow: column;
  flex: 1;
  padding-top: 2px;
  display: flex;
}

.icon-12 {
  width: 12px;
  height: 12px;
}

.pricing-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(45deg, #ffffff0d, #ffffff26);
  border: 2px solid #ffffff1a;
  border-radius: 24px;
  flex-flow: column;
  flex: 1;
  display: flex;
  box-shadow: inset 0 0 24px #ffffff12;
}

.pricing-block.highlighted-block {
  background-image: linear-gradient(45deg, #68f7bb12, #68f7bb33);
}

.pricing-main-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.table-header {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #ffffff1a;
  border-bottom: 1px solid #ffffff0d;
  grid-template: ". Area"
  / 1fr 2.25fr 2.25fr 1.25fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: static;
  top: 120px;
}

.table-content {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #ffffff1a;
  flex-flow: column;
  display: flex;
}

.table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-user-select: none;
  user-select: none;
  flex-flow: column;
  width: 100%;
  margin-top: 120px;
  display: flex;
}

.icon-10 {
  width: 10px;
  height: 10px;
}

.price-name {
  flex-flow: column;
  flex: 1;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.price-name-and-chips {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.table-row-name {
  color: #fff;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.regular-xs-uppercase {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.regular-xs-uppercase.button-text {
  z-index: 2;
  color: #fff;
  text-transform: none;
  z-index: 2;
  position: relative;
}

.large-value {
  letter-spacing: -1.68px;
  font-size: 56px;
  line-height: 96%;
}

.regular-s-2 {
  color: #000;
}

.section-3 {
  margin-top: 80px;
  padding-top: 160px;
}

.section-3.section-padding-bottom {
  padding-bottom: 240px;
}

.table-row-value-2 {
  color: #ffffff8c;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.table-header-item-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

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

.checkmark-2 {
  background-color: #3faef5;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
  box-shadow: inset 0 0 12px #ffffff1a;
}

.table-header-overlay-2 {
  background-color: #fff;
  height: 120px;
  position: absolute;
  inset: -120px 0% auto;
}

.table-header-2 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #fff;
  border-bottom: 1px solid #ffffff0d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: sticky;
  top: 120px;
}

.icon-13 {
  width: 10px;
  height: 10px;
}

.table-row-name-2 {
  color: #fff;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.content-2 {
  width: 100%;
  max-width: 75em;
}

.account-form {
  box-shadow: 7px 9px 11px 0 var(--color--acent-color);
  padding: 3.7em;
}

.field-label {
  font-family: var(--fonts--main-font);
  color: #c9c6c6f2;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: .9em;
  font-size: .63em;
  font-weight: 500;
  line-height: 1.2em;
}

.subtitle {
  color: #fff;
  letter-spacing: .13em;
  text-transform: uppercase;
  background-color: #8eadf157;
  border-radius: 50em;
  margin-bottom: 1.5em;
  padding: .7em 1.3em;
  font-size: .63em;
  font-weight: 500;
  line-height: 1.3em;
}

.logo {
  height: 1.6em;
}

.field {
  text-align: left;
  flex: 1;
  width: 100%;
}

.success-message-2 {
  background-color: #35a67026;
  border-radius: 1em;
  padding: 1.4em;
}

.text-field-2 {
  color: #fff;
  letter-spacing: .025em;
  background-color: #ffffff80;
  border: 1px solid #211b18;
  border-radius: .62em;
  height: 3.75em;
  margin-bottom: 1.6em;
  padding: .8em 1.12em;
  font-size: 1em;
  line-height: 1.3em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field-2:focus {
  border-color: #0008f1;
}

.text-field-2::placeholder {
  color: #7e7e7ed9;
}

.form-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.error-message-2 {
  background-color: #0000;
  border: 1px solid #e74c5f;
  border-radius: .62em;
  margin-top: 1.6em;
  padding: 1em 1.2em;
}

.text-account {
  color: #7e7e7ed9;
  text-align: center;
  letter-spacing: .025em;
  margin-top: 2.2em;
  font-size: .94em;
  line-height: 1.4em;
}

.wrapper {
  perspective: 1300px;
  background-color: #ffffff26;
  border-radius: 1.2em;
  align-items: stretch;
  width: 100%;
  padding: 1px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #fff3;
}

.blur-top {
  z-index: -10;
  filter: blur(150px);
  background-color: #0088e5ed;
  border-radius: 100%;
  width: 75%;
  height: 22em;
  position: absolute;
  inset: -12em auto auto -25%;
  transform: perspective(1000px);
}

.text-success {
  color: #35a670;
  letter-spacing: .025em;
  font-weight: 500;
}

.text-error {
  color: #e74c5f;
  letter-spacing: .025em;
  font-weight: 500;
}

.block-account {
  width: 100%;
  max-width: 33.7em;
  margin-left: auto;
  margin-right: auto;
}

.block-heading-account {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2.5em;
  display: flex;
}

.brand-account {
  z-index: 100;
  filter: grayscale(90%);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .5em .4em;
  transition: filter .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: absolute;
  top: 1.4em;
}

.brand-account:hover {
  filter: grayscale(0%);
}

.link-account {
  color: #000000f2;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

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

.heading-3 {
  text-align: center;
  max-width: 12.8em;
  margin-bottom: .25em;
  font-size: 48px;
}

.submit-button-2 {
  background-color: #0000;
  background-image: linear-gradient(20deg, var(--color--acent-color), var(--color--acent-color));
  color: #fff;
  text-align: center;
  letter-spacing: .025em;
  border-radius: .62em;
  margin-top: 1.2em;
  padding: 1em 1.8em;
  font-size: 1.12em;
  font-weight: 500;
  line-height: 1.2em;
  transition: box-shadow .4s cubic-bezier(.25, .46, .45, .94);
  box-shadow: inset 0 0 #13243600, inset 0 0 #13243600;
}

.submit-button-2:hover {
  box-shadow: 0 0 0 -10px #0008f1, inset -15px 13px 30px #211b18, inset 20px -55px 30px #211b18;
}

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

.content-wrapper {
  z-index: 10;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-color: #fff;
  border-radius: 1.2em;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.blurred-color {
  z-index: 0;
  opacity: 0;
  filter: blur(30px);
  background-color: #fff;
  border-radius: 100%;
  width: 70%;
  height: 70%;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.account {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 7em 1em 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.account-form-2 {
  padding: 3.7em;
}

.field-label-2 {
  color: #c9c6c6f2;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: .9em;
  font-size: .63em;
  font-weight: 500;
  line-height: 1.2em;
}

.paragraph-form {
  max-width: 22em;
  margin-top: 1.5em;
}

.success-message-3 {
  background-color: #35a67026;
  border-radius: 1em;
  padding: 1.4em;
}

.text-field-3 {
  color: #fff;
  letter-spacing: .025em;
  background-color: #08060580;
  border: 1px solid #211b18;
  border-radius: .62em;
  height: 3.75em;
  margin-bottom: 1.6em;
  padding: .8em 1.12em;
  font-size: 1em;
  line-height: 1.3em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field-3:focus {
  border-color: #0008f1;
}

.text-field-3::placeholder {
  color: #7e7e7ed9;
}

.form-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.img-sing-up-banner {
  background-image: url('../images/Sing-up_1Sing up.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #211b18;
  border-radius: 1.2em;
  width: 100%;
}

.sing-up-banner {
  padding: 1em;
  display: flex;
}

.link-account-2 {
  color: #c9c6c6f2;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

.link-account-2:hover {
  color: #fff;
}

.heading-4 {
  text-align: center;
  max-width: 12.8em;
  margin-bottom: .25em;
}

.submit-button-3 {
  color: #fff;
  text-align: center;
  letter-spacing: .025em;
  background-color: #0000;
  background-image: linear-gradient(20deg, #0007ca, #0112ff);
  border-radius: .62em;
  margin-top: 1.2em;
  padding: 1em 1.8em;
  font-size: 1.12em;
  font-weight: 500;
  line-height: 1.2em;
  transition: box-shadow .4s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 7px 80px -12px #0008f1, inset 0 0 #13243600, inset 0 0 #13243600;
}

.submit-button-3:hover {
  box-shadow: 0 0 0 -10px #0008f1, inset -15px 13px 30px #211b18, inset 20px -55px 30px #211b18;
}

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

.grid-account {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
}

.content-wrapper-2 {
  z-index: 10;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-color: #fff;
  border-radius: 1.2em;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.card {
  background-color: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 2px 6px #11111112, 0 1px 4px #11111112;
}

.card.perks-card {
  grid-row-gap: 72px;
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px;
  display: flex;
}

.display-3 {
  color: #111;
  letter-spacing: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.118em;
}

.hidden-on-desktop {
  display: none;
}

.display-2 {
  color: #111;
  letter-spacing: -.033em;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
}

.mg-bottom-32px {
  margin-bottom: 32px;
}

.mg-bottom-0 {
  margin-bottom: 0;
}

.btn-circle-primary {
  color: #fff;
  transform-style: preserve-3d;
  background-color: #111;
  border: 1px solid #111;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  min-width: 72px;
  height: 72px;
  min-height: 72px;
  font-size: 26px;
  text-decoration: none;
  transition: border-color .3s, transform .3s, background-color .3s, color .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 6px #11111112;
}

.btn-circle-primary:hover {
  color: #fff;
  background-color: #0276ff;
  border-color: #0276ff;
  transform: translate3d(0, -3px, .01px);
}

.btn-circle-primary.white {
  color: #111;
  background-color: #fff;
  border-color: #f8f8f8;
}

.btn-circle-primary.white:hover {
  color: #fff;
  background-color: #0000;
}

.btn-circle-primary.white.top-left---slider-arrow {
  inset: -120px 96px auto auto;
}

.btn-circle-primary.white.top-left---slider-arrow:hover {
  color: #fff;
  background-color: #111;
  border-color: #111;
}

.btn-circle-primary.white.top-right---slider-arrow {
  inset: -120px 0% auto auto;
}

.btn-circle-primary.white.top-right---slider-arrow:hover {
  color: #fff;
  background-color: #111;
  border-color: #111;
}

.inner-container._420px {
  max-width: 420px;
}

.inner-container._680px {
  max-width: 680px;
}

.inner-container._510px {
  max-width: 510px;
}

.square-icon {
  border-radius: 16px;
  overflow: hidden;
}

.square-icon._72px {
  border-radius: 18px;
  min-width: 72px;
  max-width: 72px;
  min-height: 72px;
  max-height: 72px;
}

.slider-wrapper {
  background-color: #0000;
  height: 100%;
}

.heading-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #ffb774, #f68dff 47%, #7087ff);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.section-4.small {
  padding-top: 80px;
  padding-bottom: 80px;
}

.slider-mask {
  height: 100%;
}

.slider-mask.perks-slider {
  width: 100%;
  max-width: 404px;
  overflow: visible;
}

.paragraph-large {
  letter-spacing: -.02em;
  font-size: 28px;
  line-height: 1.571em;
}

.perk-slider-wrapper {
  margin-right: 32px;
}

.perks-section-title-wrapper {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 168px;
  grid-auto-columns: 1fr;
  margin-bottom: 48px;
  display: grid;
}

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

.item-icon-left {
  margin-right: 6px;
  line-height: 1em;
}

.text-neutral-300 {
  color: var(--color--box-color);
  font-size: 16px;
}

.left-btn-row-wrapper {
  margin-right: 24px;
}

.features-tab-menu-wrapper---v1 {
  flex-direction: column;
  width: 100%;
  max-width: 510px;
  display: flex;
}

.feature-tab-wrapper---v1 {
  color: #464851;
  background-color: #0000;
  border-bottom: 1px solid #dee0e6;
  flex-direction: column;
  padding: 40px 0;
  transition: transform .3s, color .3s;
  display: flex;
  overflow: hidden;
}

.feature-tab-wrapper---v1:hover {
  color: #464851;
  transform: translate(4px);
}

.feature-tab-wrapper---v1.w--current {
  background-color: #0000;
}

.feature-tab-wrapper---v1.first {
  padding-top: 0;
}

.feature-tab-wrapper---v1.dark {
  border-bottom-color: #464851;
}

.feature-tab-wrapper---v1.last {
  border-bottom-style: none;
  padding-bottom: 0;
}

.item-icon-right {
  align-items: center;
  margin-left: 6px;
  font-weight: 600;
  line-height: 1em;
}

.button-primary {
  color: #fff;
  text-align: center;
  background-color: #14161c;
  border: 1px solid #14161c;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 4px #19213d14;
}

.button-primary:hover {
  color: #fff;
  transform: scale(.94);
}

.button-primary.white {
  color: #14161c;
  background-color: #fff;
  border-color: #fff;
  border-radius: 4px;
}

.display-9 {
  font-size: 48px;
  line-height: 1.208em;
}

.display-9.medium.text-neutral-100 {
  color: var(--color--background-color);
  font-size: 36px;
}

.text-no-wrap {
  white-space: nowrap;
}

.tab-spacer {
  height: 12px;
}

.mg-top-48px {
  margin-top: 48px;
}

.link-2 {
  color: #14161c;
  align-items: center;
  font-size: 18px;
  line-height: 1.333em;
  text-decoration: none;
  transition: opacity .3s, color .3s;
  display: flex;
}

.link-2:hover {
  opacity: .75;
  color: #14161c;
}

.link-2.text-neutral-100 {
  color: #fff;
}

.link-2.text-neutral-100:hover {
  color: #dee0e6;
}

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

.display-7 {
  font-size: 30px;
  line-height: 1.2em;
}

.display-7.medium.text-neutral-100, .icon-font-rounded {
  color: #fff;
}

.section-5 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.section-5.card-section {
  background-color: #14161c;
  border-radius: 24px;
}

.section-5.card-section.tab-section---v3 {
  background-color: var(--color--font-gradient-color-02);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 220px;
  padding-bottom: 140px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block-2 {
  color: var(--color--font-gradient-color-01);
}

.feature-tab-body---v1 {
  margin-top: 0;
}

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

.grid-2-columns.tab-section---v3 {
  align-items: center;
}

.feature-tab-header---v1 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tab-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1em;
  display: flex;
}

.tab-icon-wrapper.color-100 {
  color: #fff;
}

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

.image {
  width: 100%;
}

.image.tab-image---v3 {
  object-fit: cover;
  object-position: 0% 50%;
}

.hidden {
  display: none;
}

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

.buttons-row.left {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
}

.image-wrapper {
  overflow: hidden;
}

.image-wrapper.tab-image---v3 {
  width: 63%;
  max-width: 894px;
  position: absolute;
  inset: 32px auto 0 -2%;
}

.container-default-2 {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.footer-item {
  font-size: 17px;
}

.nav-link-3 {
  text-align: center;
  align-self: center;
}

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

.container-3 {
  border: 1px solid var(--color--font);
  background-image: linear-gradient(to bottom, var(--color--box-color), var(--color--box-color));
  border-radius: 5px;
  padding: 20px;
}

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

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

.buttons-row-2.left {
  justify-content: flex-start;
}

.icon-font-rounded-2 {
  color: #fff;
}

.secondary-button {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #121316;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25em;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 1px 4px #1213161a;
}

.secondary-button:hover {
  color: #121316;
  transform: scale3d(.94, .94, 1.01);
}

.primary-button {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #121316;
  border: 1px solid #121316;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25em;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 2px 4px #4d91e11a;
}

.primary-button:hover {
  color: #fff;
  transform: scale3d(.94, .94, 1.01);
}

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

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

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

  .hero-section-holder {
    grid-column-gap: 60px;
  }

  .deploying-app-title-holder {
    max-width: 540px;
  }

  .extra-features {
    max-width: 400px;
  }
}

@media screen and (min-width: 1920px) {
  .image-wrapper.tab-image---v3 {
    left: 0%;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

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

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

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

  .nav-menu-link-holder {
    grid-row-gap: 20px;
    border: 1px solid var(--color--box-stroke);
    background-color: var(--color--box-color);
    border-radius: 5px;
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .nav-menu {
    background-color: #c8c8c800;
    height: auto;
    padding-top: 10px;
    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;
  }

  .title {
    font-size: 58px;
  }

  .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(--color--acent-color);
    border-radius: 8px;
    padding: 10px;
  }

  .hero-section-holder {
    grid-row-gap: 60px;
    flex-direction: column;
    padding: 34px 34px 0;
    display: flex;
  }

  .hero-section-container {
    grid-row-gap: 13px;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

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

  .hero-section-app-container {
    width: 100%;
  }

  .hero-section-phone-holder {
    width: 100%;
    left: 70px;
  }

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

  .hero-background-holder {
    border-radius: 13px;
  }

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

  .title-holder.xl-padding {
    padding-top: 60px;
  }

  .card-title {
    font-size: 22px;
  }

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

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

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

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

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

  .deploying-app-title-holder {
    max-width: none;
    margin-bottom: 12px;
  }

  .stats-container {
    margin-top: 24px;
  }

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

  .best-things-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .extra-features-holder {
    margin-bottom: 45px;
  }

  .extra-features-2x {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .extra-features {
    max-width: none;
    height: 100%;
  }

  .extra-features.left, .extra-features.right {
    position: static;
  }

  .extra-features-phone-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    margin-top: 30px;
  }

  .extra-features-phone-wrapper {
    width: 280px;
  }

  .extra-features-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .phone-holder {
    display: none;
    position: static;
  }

  .gradient-circle {
    min-width: 180%;
    top: 164px;
  }

  .features-phone-holder {
    left: 20px;
  }

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

  .facts-holder {
    padding: 20px;
  }

  .facts-holder.horizontal {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .facts-number {
    font-size: 60px;
  }

  .facts-heading {
    font-size: 20px;
  }

  .pricing-tab-holder, .featured-blog {
    flex-direction: column;
    display: flex;
  }

  .featured-blog-image-holder {
    overflow: hidden;
  }

  .hero-title {
    font-size: 11vw;
  }

  .hero-section-box {
    justify-content: center;
    align-items: flex-end;
  }

  .hero-section-phone-holder-simple {
    width: 60%;
  }

  .hero-section-phone-holder-simple.behind {
    width: 50%;
  }

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

  .dark-mode-phone-holder {
    width: 40%;
  }

  .dark-mode-phone {
    width: 90%;
  }

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

  .dark-mode-sun-cut {
    height: 50%;
  }

  .nav-menu-link-holder-2 {
    grid-row-gap: 20px;
    background-color: #f8f8f8;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .menu-button-2.w--open {
    background-color: #e8a051;
    border-radius: 8px;
    padding: 10px;
  }

  .section-2 {
    margin-top: 56px;
  }

  .section-2.section-padding-bottom {
    padding-bottom: 216px;
  }

  .section-center-header {
    max-width: 520px;
  }

  .large-value {
    letter-spacing: -1.44px;
    font-size: 48px;
  }

  .section-3 {
    margin-top: 56px;
  }

  .section-3.section-padding-bottom {
    padding-bottom: 216px;
  }

  .account-form, .account-form-2 {
    padding: 2.7em;
  }

  .card {
    border-radius: 32px;
  }

  .card.perks-card {
    padding-left: 40px;
    padding-right: 40px;
  }

  .display-3 {
    font-size: 32px;
  }

  .display-2 {
    font-size: 52px;
  }

  .btn-circle-primary {
    width: 64px;
    min-width: 64px;
    height: 64px;
    min-height: 64px;
  }

  .btn-circle-primary.white.top-left---slider-arrow {
    top: -112px;
    right: 80px;
  }

  .btn-circle-primary.white.top-right---slider-arrow {
    top: -112px;
  }

  .inner-container._400px---tablet {
    max-width: 400px;
  }

  .section-4 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-4.small {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .slider-mask {
    position: static;
  }

  .paragraph-large {
    font-size: 24px;
  }

  .features-tab-menu-wrapper---v1 {
    max-width: 54%;
  }

  .display-9 {
    font-size: 40px;
  }

  .display-7 {
    font-size: 28px;
  }

  .section-5, .section-5.card-section.tab-section---v3 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .feature-tab-body---v1 {
    max-width: 700px;
  }

  .grid-2-columns.tab-section---v3 {
    grid-template-columns: 1fr 1.25fr;
  }

  .image-wrapper.tab-image---v3 {
    flex-direction: column;
    justify-content: center;
    width: 60%;
    display: flex;
    top: 0;
  }

  .buttons-row-2.left.center---tablet {
    justify-content: center;
    align-items: center;
  }
}

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

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

  .title {
    font-size: 52px;
  }

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

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

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

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

  .featured-cards-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .features-card-container {
    flex-direction: column;
    width: 60%;
    display: flex;
  }

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

  .feature-hero-content {
    max-width: none;
  }

  .piricng-hero-section {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing-hero-container {
    width: 100%;
  }

  .faq-title-holder {
    max-width: 100%;
  }

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

  .blog-thumbnail {
    max-height: 450px;
  }

  .feature-hero-text-content {
    padding-left: 35px;
    padding-right: 35px;
  }

  .hero-section-phone-holder-simple.behind {
    min-width: 51%;
    margin-left: -25px;
  }

  .dark-mode-phone {
    width: 90%;
  }

  .pricing-block-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-glow {
    filter: blur(60px);
    width: 240px;
    height: 240px;
  }

  .section-2 {
    margin-top: 24px;
  }

  .section-2.section-padding-bottom {
    padding-bottom: 184px;
  }

  .pricing-block-wrapper {
    border-radius: 20px;
  }

  .pricing-info {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-center-header {
    max-width: 360px;
  }

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

  .container-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .table-header-overlay {
    display: none;
  }

  .pricing-block {
    border-radius: 20px;
  }

  .table-header {
    min-width: 640px;
    position: static;
    top: 0;
  }

  .table-content {
    min-width: 640px;
  }

  .table {
    margin-top: 96px;
    overflow: auto;
  }

  .large-value {
    letter-spacing: -1.2px;
    font-size: 40px;
  }

  .section-3 {
    margin-top: 24px;
  }

  .section-3.section-padding-bottom {
    padding-bottom: 184px;
  }

  .table-header-overlay-2 {
    display: none;
  }

  .table-header-2 {
    min-width: 640px;
    position: static;
    top: 0;
  }

  .blur-top {
    width: 120%;
    height: 26em;
    left: -60%;
  }

  .sing-up-banner {
    display: none;
  }

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

  .card.perks-card {
    grid-row-gap: 64px;
    padding: 40px 32px;
  }

  .display-3 {
    font-size: 26px;
  }

  .display-2 {
    font-size: 40px;
  }

  .mg-bottom-32px {
    margin-bottom: 24px;
  }

  .btn-circle-primary {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    font-size: 22px;
    line-height: 24px;
  }

  .btn-circle-primary.white.top-left---slider-arrow {
    inset: auto 50% 0% auto;
    transform: translate(-8px);
  }

  .btn-circle-primary.white.top-right---slider-arrow {
    inset: auto auto 0% 50%;
    transform: translate(8px);
  }

  .inner-container._420px {
    max-width: 100%;
  }

  .inner-container._350px---mbl {
    max-width: 350px;
  }

  .square-icon {
    border-radius: 12px;
    max-width: 56px;
  }

  .square-icon._72px {
    border-radius: 16px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
  }

  .slider-wrapper.perks-slider {
    padding-bottom: 88px;
  }

  .section-4 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-4.small {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .slider-mask.perks-slider {
    max-width: 350px;
  }

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

  .perks-section-title-wrapper {
    grid-template-columns: 1fr;
  }

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

  .item-icon-left {
    font-size: 18px;
  }

  .left-btn-row-wrapper {
    margin-right: 20px;
  }

  .features-tab-menu-wrapper---v1 {
    max-width: 100%;
  }

  .feature-tab-wrapper---v1 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .item-icon-right {
    font-size: 18px;
  }

  .button-primary {
    font-size: 16px;
  }

  .display-9 {
    font-size: 32px;
  }

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

  .display-7 {
    font-size: 24px;
  }

  .section-5 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-5.card-section {
    border-radius: 16px;
  }

  .section-5.card-section.tab-section---v3 {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .feature-tab-body---v1 {
    max-width: 600px;
  }

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

  .grid-2-columns.tab-section---v3 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .image.tab-image---v3 {
    object-position: 0% 86%;
    position: absolute;
    inset: -25% 0% 0%;
  }

  .image-wrapper.tab-image---v3 {
    width: auto;
    min-width: 100%;
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
    padding-top: 90%;
    position: relative;
    left: 0;
    right: 0;
  }

  .buttons-row-2.left.center---tablet {
    justify-content: center;
  }
}

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

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

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

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

  .container.hero {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .footer-divider {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
  }

  .title {
    padding-bottom: 0;
    font-size: 42px;
  }

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

  .help-content-holder {
    padding-top: 27px;
  }

  .help-heading-holder {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .help-link-holder {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .figma-file-container {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .full-width-image {
    border-radius: 7px;
  }

  .change-log-block-holder {
    flex-flow: column;
    display: flex;
  }

  .hero-section-holder {
    border-radius: 20px;
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section-container {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-button-holder {
    grid-row-gap: 12px;
    flex-flow: column;
    width: 100%;
  }

  .hero-section-app-holder {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-section-phone-holder {
    margin-left: 28px;
    left: auto;
  }

  .hero-background-holder {
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }

  .hero-background {
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    width: 100%;
    min-width: 0%;
    height: 100%;
  }

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

  .features-card-container {
    width: 100%;
  }

  .featured-card-background-iamge {
    border-radius: 16px;
    min-width: 0%;
    min-height: 0%;
  }

  .featured-card-image {
    border-radius: 16px;
  }

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

  .stats-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .deploying-app-images-holder {
    border-radius: 11px;
  }

  .gradient-line.veritcal {
    background-image: linear-gradient(to right, #ebebeb00, #ebebeb 17% 81%, #ebebeb00);
    width: 100%;
    height: 1px;
  }

  .best-things-footer-grid {
    flex-direction: column;
    display: flex;
  }

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

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

  .extra-features-2x {
    display: flex;
  }

  .extra-features-phone-wrapper {
    width: 240px;
  }

  .extra-features-wrapper {
    display: flex;
  }

  .feature-hero-content {
    width: 100%;
  }

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

  .features-phone-holder {
    width: 100%;
  }

  .feature-bg {
    height: 60%;
    inset: auto 0% 0%;
  }

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

  .grid-features {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }

  .feature-grid-line {
    background-image: linear-gradient(to right, #fff0, #fff 25% 75%, #fff0);
    width: 100%;
    height: 2px;
  }

  .piricng-hero-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .enterprise-price-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-holder {
    padding: 13px;
  }

  .faq-question-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    font-size: 14px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-question {
    font-size: 19px;
  }

  .featured-blog-content {
    padding: 20px;
  }

  .featured-blog-title {
    font-size: 24px;
  }

  .featured-blog-paragraph {
    font-size: 15px;
    font-weight: 300;
  }

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

  .blog-thumbnail {
    max-height: 300px;
  }

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

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

  .hero-title {
    font-size: 13vw;
  }

  ._404-logo {
    width: 120px;
  }

  .hero-section-box {
    padding-left: 27px;
    padding-right: 27px;
  }

  .hero-section-phone-holder-simple {
    width: 60%;
  }

  .hero-section-phone-holder-simple.behind {
    width: 51%;
  }

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

  .orange-background {
    width: 750px;
    min-width: 750px;
    height: 750px;
    min-height: 750px;
  }

  .dark-mode-section-container {
    padding-top: 80px;
  }

  .dark-mode-phone-holder {
    justify-content: center;
    align-items: center;
    width: 90%;
    padding-top: 0;
  }

  .dark-mode-phone {
    width: 90%;
  }

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

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

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

  .regular-s {
    font-size: 14px;
  }

  .section-2.section-padding-bottom {
    padding-bottom: 60px;
  }

  .table-row-name {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .table-row-value-2 {
    box-sizing: border-box;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .table-row-2, .table-header-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .account-form, .account-form-2 {
    padding: 2em;
  }

  .paragraph-form {
    margin-top: 1em;
  }

  .card {
    border-radius: 24px;
  }

  .card.perks-card {
    grid-row-gap: 48px;
    padding: 32px 24px;
  }

  .display-3 {
    font-size: 24px;
  }

  .display-2 {
    font-size: 34px;
  }

  .btn-circle-primary {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    font-size: 18px;
  }

  .inner-container._300px---mbp {
    max-width: 300px;
  }

  .square-icon {
    border-radius: 14px;
    max-width: 56px;
  }

  .square-icon._72px {
    min-width: 56px;
    max-width: 56px;
    min-height: 56px;
    max-height: 56px;
  }

  .slider-wrapper.perks-slider {
    padding-bottom: 80px;
  }

  .section-4 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-4.small {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .slider-mask.perks-slider {
    max-width: 320px;
    overflow: visible;
  }

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

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-neutral-300 {
    font-size: 14px;
  }

  .left-btn-row-wrapper {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .button-primary {
    width: 100%;
  }

  .display-9 {
    font-size: 28px;
  }

  .mg-top-48px {
    margin-top: 40px;
  }

  .display-7 {
    font-size: 22px;
  }

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

  .section-5.card-section.tab-section---v3 {
    padding-top: 100px;
  }

  .buttons-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .buttons-row.left {
    flex-flow: row;
  }

  .image-wrapper.tab-image---v3 {
    margin-left: -20px;
    margin-right: -20px;
  }

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

  .section-6 {
    padding-top: 10px;
  }

  .container-3 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .buttons-row-2 {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .secondary-button, .primary-button {
    width: 100%;
  }

  .paragraph-3, .paragraph-4 {
    font-size: 14px;
  }
}

#w-node-e92bf484-a605-4132-f141-4518468af7e2-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7ef-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7fa-468af7d9, #w-node-_1a28ebeb-9162-d3cb-8468-7300a05229ba-fc9fd5a1, #w-node-_8595b4cc-f73c-3ac7-f9ab-37cddb2978a1-fc9fd5a2, #w-node-_63c7100f-9342-3d29-c1e8-a026ad70c2f3-fc9fd5a3, #w-node-_50d429f7-a276-3f83-9b9a-bc93d36794c4-fc9fd5a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

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

#w-node-_18686531-51c5-63b7-1255-daad5d7a1f14-677b6b9e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18686531-51c5-63b7-1255-daad5d7a1f16-677b6b9e {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

@media screen and (max-width: 767px) {
  #w-node-_18686531-51c5-63b7-1255-daad5d7a1f14-677b6b9e {
    order: 9999;
    justify-self: stretch;
  }

  #w-node-_18686531-51c5-63b7-1255-daad5d7a1f16-677b6b9e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-fc9fd5a4, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-fc9fd5a4 {
    grid-column: span 2 / span 2;
  }
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype'), url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype'), url('../fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}