:root {
  --white: #f9f9f9;
  --geist: Geist, sans-serif;
  --text-grey: #616161;
  --body-text: .98rem;
  --h1: 4rem;
  --h2: 3rem;
  --black: #424242;
  --h3: 2rem;
  --h4: 1.75rem;
  --h5: 1.5rem;
  --h6: 1.25rem;
  --body-text-large: 1rem;
  --body-extra-large: 1.5rem;
  --grey: #8d8d8d;
  --light-grey: #d9d7d7;
  --translucent-grey: #f4f4f480;
  --body-text-small: .75rem;
}

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

body {
  background-color: var(--white);
  font-family: var(--geist);
  color: var(--text-grey);
  font-size: var(--body-text);
  letter-spacing: -.2px;
  line-height: 130%;
}

h1 {
  color: #0000;
  font-size: var(--h1);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #2f2f2f, #5b5b5b 50%, #2f2f2f);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 120%;
  display: inline-flex;
}

h2 {
  color: #0000;
  font-size: var(--h2);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #2f2f2f, #5b5b5b 50%, #2f2f2f);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 120%;
  display: inline-flex;
}

h3 {
  color: var(--black);
  font-size: var(--h3);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 100%;
}

h4 {
  font-size: var(--h4);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 100%;
}

h5 {
  font-size: var(--h5);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 100%;
}

h6 {
  font-size: var(--h6);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 100%;
}

a {
  color: var(--text-grey);
  text-decoration: none;
}

a:hover {
  color: var(--black);
}

.large-text {
  font-size: var(--body-text-large);
  line-height: 130%;
}

.large-text.bold-text {
  font-weight: 600;
}

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

.spacer-10px-height {
  width: 20px;
  height: 10px;
}

.spacer-10px-height.borders {
  background-color: #0000;
  border: 1px solid #727272;
}

.extra-large-text {
  font-size: var(--body-extra-large);
  line-height: 130%;
}

.spacer-64px-height {
  width: 20px;
  height: 64px;
}

.spacer-64px-height.borders {
  background-color: #0000;
  border: 1px solid #727272;
}

.color-block {
  border: 1px solid #444445;
  width: 100%;
  height: 225px;
}

.color-block.text-gradient {
  background-image: linear-gradient(90deg, #2f2f2f, #5b5b5b 50%, #2f2f2f);
}

.color-block.text-grey {
  background-color: var(--text-grey);
  border-color: #f5f4ed;
}

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

.color-block.main-gradient {
  background-image: linear-gradient(120deg, #3ad8ff, #fd71ff 50%, #ff9b3f);
}

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

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

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

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

.color-card {
  border: 1px solid #b8b8af;
  border-radius: 8px;
  overflow: hidden;
}

.style-guide-heading-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 626px;
  display: flex;
}

.content-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-container.small {
  max-width: 926px;
}

.content-container.testimonials-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--white);
  background-color: var(--translucent-grey);
  border-radius: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1400px;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
  display: grid;
  overflow: hidden;
}

.content-container.large {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1400px;
}

.content-container.cta-section {
  position: relative;
  overflow: visible;
}

.style-guide-font-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 100px;
}

.section {
  background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%), url('../images/Section-Bg_1Section Bg.avif');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, scroll;
  padding: 8rem 1.25rem;
}

.section.overflow-clip {
  overflow: clip;
}

.section.how-it-works {
  background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
}

.colors-card-text-wrapper {
  background-color: #0000;
  border: 1px solid #727272;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

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

.divider {
  background-color: #110f0440;
  width: 100%;
  height: 1px;
}

.page-hero-section {
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 3.75rem 1.25rem;
  overflow: hidden;
}

.spacer-80px-height {
  width: 20px;
  height: 80px;
}

.spacer-80px-height.borders {
  background-color: #0000;
  border: 1px solid #727272;
}

.spacer-40px-height {
  width: 20px;
  height: 40px;
}

.spacer-40px-height.borders {
  background-color: #0000;
  border: 1px solid #727272;
}

.spacer-30px-height {
  width: 20px;
  height: 30px;
}

.spacer-30px-height.borders {
  background-color: #0000;
  border: 1px solid #727272;
}

.spacer-20px-height {
  width: 20px;
  height: 20px;
}

.spacer-20px-height.borders {
  background-color: #0000;
  border: 1px solid #727272;
}

.link {
  transition: color .2s;
}

.heading {
  margin-top: 0;
}

.hero-section {
  padding: 1.25rem;
}

.hero-section.license {
  padding-top: 8rem;
}

.hero-section-background {
  z-index: 0;
  border: 1px solid var(--light-grey);
  background-image: url('../images/noise.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 18px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 11vw;
  padding-bottom: 8.75rem;
  position: relative;
  overflow: hidden;
}

.hero-section-gradient {
  background-image: url('../images/Hero-Gradient.png');
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  inset: 0%;
}

.hero-content-container {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  position: relative;
}

.featured-in-product-hunt {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  border: 1px dashed var(--text-grey);
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  display: flex;
}

.small-text {
  font-size: var(--body-text-small);
}

.hero-heading {
  max-width: 923px;
  margin-bottom: 0;
  display: block;
}

.highlighted-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(139deg, #1fd2ff, #fd71ff 48%, #ff9b3f);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
}

.heading-paragraph {
  font-size: var(--body-text-large);
  max-width: 450px;
  line-height: 180%;
}

.button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.primary-button {
  color: var(--black);
  font-size: var(--body-text-large);
  background-image: none;
  border-radius: 14px;
  padding: 2px;
  text-decoration: none;
  transition: box-shadow .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.primary-button:hover {
  box-shadow: 0 5px 10px #00000040;
}

.primary-button-white-background {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--white);
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  padding: .6rem 1rem;
  display: flex;
  position: relative;
}

.primary-button-gradient-background {
  z-index: 0;
  background-image: linear-gradient(127deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
  border-radius: 12px;
  position: absolute;
  inset: 0%;
}

.secondary-button-white-background {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--white);
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  padding: .6rem 1rem;
  display: flex;
  position: relative;
}

.secondary-button {
  color: var(--black);
  font-size: var(--body-text-large);
  border-radius: 14px;
  padding: 2px;
  text-decoration: none;
  transition: transform .2s, box-shadow .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.secondary-button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 10px #00000040;
}

.section-heading-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 690px;
  margin: 1rem auto 1.5rem;
  display: flex;
}

.navbar {
  background-color: #ddd0;
  min-width: 100%;
  max-width: 1160px;
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.nav-container {
  border: 1px solid var(--light-grey);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f9f9f9e6;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  display: flex;
}

.nav-logo {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  margin-right: auto;
  font-weight: 600;
  display: flex;
}

.nav-link {
  padding: 0;
  transition: color .2s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--grey);
}

.nav-menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.nav-button {
  color: var(--black);
  font-size: var(--body-text-large);
  background-image: none;
  border-radius: 14px;
  margin-left: auto;
  padding: 2px;
  text-decoration: none;
  transition: box-shadow .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.nav-button:hover {
  box-shadow: 0 5px 10px #00000040;
}

.hero-image-wrapper {
  perspective: 1500px;
  margin-top: 4rem;
  transform: none;
}

.partners-carousel-section {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
}

.partners-animation-wrapper {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.partners-animator {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  align-items: center;
  display: flex;
}

.partners-logo-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex: none;
  justify-content: flex-start;
  display: flex;
}

.partners-logo {
  height: 35px;
}

.secotion-fade-out-blur {
  background-image: linear-gradient(95deg, #f9f9f9, #10101100);
  width: 200px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.secotion-fade-out-blur.right {
  background-image: linear-gradient(90deg, #f9f9f900, #f9f9f9);
  inset: 0% 0% 0% auto;
}

.partners-carousel-text {
  text-align: center;
  margin-bottom: 1.625rem;
}

.section-heading {
  text-align: center;
  background-image: linear-gradient(90deg, #2f2f2f, #5b5b5b 50%, #2f2f2f);
  max-width: 923px;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.hero-section-heading-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  display: flex;
}

.section-tag {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 1px;
  position: relative;
}

.section-tag.testimonials {
  margin-left: 0;
  margin-right: 0;
}

.section-tag-background {
  z-index: 0;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--white);
  border-radius: 18px;
  padding: .25rem .5rem;
  display: flex;
}

.section-heading-paragraph-wrapper {
  text-align: center;
  flex: 0 auto;
  grid-template: ". . . . Area"
  / 1fr 1fr 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
}

.features-card-grid {
  grid-template-areas: ". ."
                       ". Area";
  width: 100%;
  margin-top: 4rem;
}

.feature-card-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 2px solid var(--white);
  background-image: linear-gradient(#e2e2e21f, #ffffff80);
  border-radius: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 2.5rem;
  display: grid;
  box-shadow: 0 0 10px #0003;
}

.feature-card-text-wrapper {
  padding-top: 2.5rem;
  padding-bottom: 0;
}

.features-card-paragraph {
  max-width: 280px;
}

.how-it-works-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: .25rem;
}

.how-it-works-card-background {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--white);
  background-color: var(--white);
  background-image: url('../images/connect-tools.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  height: 480px;
  padding: 2.375rem;
  display: flex;
}

.how-it-works-card-background.let-ai-learn {
  background-image: url('../images/let-ai-learn.svg');
}

.how-it-works-card-background.collaborate-and-act {
  background-image: url('../images/lightning.svg');
}

.how-it-works-card {
  background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
  border-radius: 13px;
  padding: 2px;
}

.lottie-animation-wrapper {
  max-height: 300px;
}

.how-it-works-card-paddings {
  padding-top: 3.75rem;
}

.sticky-content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 926px;
  height: 1500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.sticky-content {
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  position: sticky;
  top: 10rem;
}

.sticky-section-heading {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#2f2f2f, #5b5b5b 50%, #2f2f2f);
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 692px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6rem;
  font-weight: 600;
  line-height: 120%;
  display: block;
}

.sticky-section-logo {
  position: absolute;
  inset: auto 0% 0% auto;
}

.sticky-section-logo.logo-top-right {
  inset: 0% 10% auto auto;
  transform: rotate(23deg);
}

.sticky-section-logo.logo-center-right {
  inset: 35% 0% 0% auto;
}

.sticky-section-logo.logo-bottom-right {
  transform: rotate(7deg);
}

.sticky-section-logo.logo-top-left {
  mix-blend-mode: normal;
  align-self: auto;
  margin-top: 49px;
  margin-left: -4px;
  padding-bottom: 0;
  padding-left: 0;
  transition: opacity .2s;
  inset: -2% auto auto 1%;
  transform: rotate(-18deg)translate(0);
}

.sticky-section-logo.logo-center-left {
  inset: 50% auto 0% 0%;
  transform: rotate(-20deg);
}

.testimonials-section-text-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  display: flex;
}

.testimonials-section-heading-wrapper {
  text-align: left;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 690px;
  margin: 1rem auto 1.5rem;
  display: flex;
}

.numbers-grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.numbers-grid-card {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  background-color: var(--white);
  border-radius: 18px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 1.875rem;
  display: flex;
}

.numbers-card-number {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 120%;
}

.numbers-grid-card-wrapper {
  background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
  border-radius: 18px;
  padding: 1px;
}

.lottie-animation {
  width: 110%;
  height: 300px;
}

.testimonials-animator-wrapper {
  height: 100%;
}

.testimonials-animator {
  flex-flow: column;
  align-items: stretch;
  max-height: 860px;
  display: flex;
  position: relative;
}

.testimonials-cards-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  flex: none;
  padding-top: 1.25rem;
  display: flex;
}

.testimonials-card {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  background-color: var(--white);
  border-radius: 18px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 240px;
  padding: 2.5rem;
  display: flex;
  box-shadow: 0 0 10px #0003;
}

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

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

.testimonials-client-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.testimonials-client-text {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonials-text-wrapper {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.testimonials-blur {
  z-index: 1;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  pointer-events: none;
  height: 50px;
  position: absolute;
  inset: 0% 0% auto;
}

.testimonials-blur.bottom {
  background-image: linear-gradient(0deg, #f9f9f9, #f9f9f900);
  inset: auto 0% 0%;
}

.pricing-tabs {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 3.75rem;
}

.tabs-menu {
  border: 1px solid var(--white);
  background-color: var(--translucent-grey);
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  max-width: 216px;
  margin-left: auto;
  margin-right: auto;
  padding-top: .175rem;
  padding-bottom: .175rem;
  display: flex;
}

.tab-link {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  font-size: var(--body-text-small);
  background-color: #f9f9f900;
  border: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  padding: .25rem 1rem;
  display: flex;
}

.tab-link.w--current {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  border-radius: 18px;
}

.save-25-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(139deg, #1fd2ff, #fd71ff 48%, #ff9b3f);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.pricing-card {
  border-radius: 18px;
  padding: 1px;
}

.pricing-card.most-popular {
  background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
  position: relative;
}

.pricing-card-text-wrapper {
  border: 1px solid var(--white);
  background-color: var(--translucent-grey);
  border-radius: 18px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 620px;
  padding: 2.5rem;
  display: flex;
  box-shadow: 0 0 10px #0003;
}

.pricing-card-text-wrapper.most-popular {
  background-color: #f4f4f4de;
  border-width: 0;
  border-radius: 17px;
}

.plan-pricing-text {
  color: var(--black);
  font-size: 3rem;
  font-weight: 600;
  line-height: 90%;
  display: inline-block;
}

.pricing-text-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.pricing-features-wrapper {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 3.5rem;
  display: flex;
}

.pricing-feature-row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  display: flex;
}

.pricing-secondary-button {
  border: 1px solid var(--grey);
  color: var(--black);
  font-size: var(--body-text-large);
  border-radius: 14px;
  padding: 2px;
  text-decoration: none;
  transition: transform .2s, box-shadow .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.pricing-secondary-button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 10px #00000040;
}

.pricing-secondary-button-white-background {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--white);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: .6rem 1rem;
  display: flex;
  position: relative;
}

.pricing-primary-button {
  color: var(--black);
  font-size: var(--body-text-large);
  background-image: none;
  border-radius: 14px;
  padding: 2px;
  text-decoration: none;
  transition: box-shadow .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.pricing-primary-button:hover {
  box-shadow: 0 5px 10px #00000040;
}

.pricing-primary-button-white-background {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--white);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: .6rem 1rem;
  display: flex;
  position: relative;
}

.most-popular-tag {
  background-color: var(--white);
  border-radius: 18px;
  padding: .5rem .75rem;
}

.most-popular-tag-wrapper {
  background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
  border-radius: 18px;
  padding: 1px;
  position: absolute;
  inset: -2% 10% auto auto;
}

.tabs-content {
  overflow: visible;
}

.faq-grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 3.75rem;
}

.faq-wrapper {
  border: 1px solid var(--white);
  background-color: var(--translucent-grey);
  perspective-origin: 50% 100%;
  transform-origin: 50% 100%;
  cursor: pointer;
  border-radius: 18px;
  height: auto;
  padding-top: 1.125rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  transition: padding-right .2s, padding-left .2s;
  overflow: hidden;
  box-shadow: 0 0 10px #0003;
}

.faq-wrapper:hover {
  padding-left: 30px;
  padding-right: 30px;
}

.faq-question {
  color: var(--black);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.faq-question-text {
  text-transform: none;
  margin-bottom: 0;
  line-height: 150%;
}

.plus-icon {
  justify-content: center;
  align-items: center;
  margin-bottom: .25rem;
  display: flex;
  position: relative;
}

.faq-answer {
  margin-top: 0;
  overflow: hidden;
}

.faq-paragraph {
  margin-bottom: 30px;
}

.faq-section {
  padding: 8rem 1.25rem;
}

.faq-column {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.contact-flex {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 2.8125rem;
  display: flex;
}

.contact-button-flex {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  margin-top: 1rem;
  display: flex;
}

.contact-link {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  border-right: 1px solid var(--light-grey);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding-top: .625rem;
  padding-bottom: .625rem;
  padding-right: .625rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.contact-link.twitter {
  border-right-width: 0;
}

.cta-grid {
  grid-template-rows: auto;
  width: 100%;
}

.cta-text-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cta-section {
  background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%);
  padding: 8rem 1.25rem;
  overflow: hidden;
}

.cta-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 80vw;
  max-width: 1000px;
  display: flex;
  position: absolute;
  inset: 0% -40% 0% auto;
}

.cta-image-background {
  pointer-events: none;
  background-image: url('../images/CTA-Grad_1CTA Grad.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -20%;
}

.footer {
  padding: 1.25rem;
}

.footer-content-container {
  border: 1px solid var(--light-grey);
  background-image: url('../images/Footer-Background.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  max-width: 1400px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6.25rem 6.25rem 12rem;
  overflow: hidden;
}

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

.newsletter-form {
  width: 100%;
  display: flex;
  position: relative;
}

.newsletter-text-field {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  height: 100%;
  margin-bottom: 0;
  padding: .875rem;
}

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

.newsletter-text-field::placeholder {
  color: var(--grey);
}

.newsletter-submit-button {
  border-left: 1px solid var(--light-grey);
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  margin-top: 1px;
  margin-bottom: 1px;
  margin-right: 1px;
  padding: .875rem;
  transition: background-color .2s;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.newsletter-submit-button:hover {
  background-color: var(--translucent-grey);
}

.footer-logo {
  margin-bottom: 2rem;
}

.newsletter-form-block {
  margin-top: 1rem;
}

.footer-link {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-right: .625rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.footer-link-wrapper {
  margin-top: 1.375rem;
}

.copyright-grid {
  grid-template-rows: auto;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.copyright-grid-right {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.cta-section-heading-wrapper {
  text-align: left;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 690px;
  margin: 1rem auto 1.5rem;
  display: flex;
}

.hero-highlighted-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(139deg, #1fd2ff, #fd71ff 48%, #ff9b3f);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
}

.success-message {
  border: 1px solid var(--white);
  background-color: var(--translucent-grey);
  border-radius: 12px;
  padding: 1rem;
}

.error-message {
  border: 1px solid var(--white);
  border-radius: 12px;
  padding: 1rem;
}

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

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

.utility-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 960px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

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

.text-field {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  height: 100%;
  margin-bottom: 1rem;
  padding: .875rem;
}

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

.text-field::placeholder {
  color: var(--grey);
}

.submit-button {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  margin-top: 1px;
  margin-bottom: 1px;
  margin-right: 1px;
  padding: .875rem;
  transition: background-color .2s;
}

.submit-button:hover {
  background-color: var(--translucent-grey);
}

.style-guide-content-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1092px;
  display: flex;
}

.template-customization {
  z-index: 99;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #232325;
  background-color: #fff;
  border: 1px solid #cecece;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem .875rem;
  transition-property: background-color;
  display: flex;
  position: fixed;
  inset: auto 2% 2% auto;
  box-shadow: 0 2px 5px #3f3f3f40;
}

.template-customization:hover {
  background-color: #f5f5f5;
}

.template-customization-text {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.semi-bold-text {
  font-weight: 600;
}

.template-customization-flex {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.black-arrow {
  margin-top: 2px;
}

.image {
  border: 1px #000;
  overflow: clip;
}

.frame-624276 {
  grid-row-gap: 17px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 926px;
  text-decoration: none;
  display: flex;
}

.frame-624270 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 505px;
  display: flex;
}

.frame-624277 {
  grid-row-gap: 15px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-image: linear-gradient(#e2e2e240 0%, #fff 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 442px;
  padding: 48px 47px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 10px #00000026;
}

.group-9 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 333.5px;
  height: 255px;
  text-decoration: none;
  display: flex;
}

.text {
  color: #424242;
  text-align: center;
  letter-spacing: -.008em;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.text-2 {
  color: #616161;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.frame-624271 {
  grid-row-gap: 29px;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-image: linear-gradient(#e2e2e240 0%, #fff 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 436px;
  height: 505px;
  padding: 29px 39px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 10px #00000026;
}

.group-2085662966 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 338px;
  height: 256px;
  text-decoration: none;
  display: flex;
}

.text-3 {
  color: #424242;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.frame-624269 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-624278 {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-image: linear-gradient(#e2e2e240 0%, #fff 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 46px 35px;
  box-shadow: 0 0 10px #00000026;
}

.group-6 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 364px;
  height: 255px;
  text-decoration: none;
  display: flex;
}

.frame-2147228378 {
  grid-column-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 371px;
  height: 29px;
  text-decoration: none;
  display: flex;
}

.text-4 {
  color: #616161;
  text-align: center;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.frame-2147228379 {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-image: linear-gradient(#e2e2e240 0%, #fff 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 0 10px #00000026;
}

.text-5 {
  color: #424242;
  text-align: center;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.group-5 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280.5px;
  height: 267.5px;
  text-decoration: none;
  display: flex;
}

.from-4-hours-to-5-minutes-0 {
  color: #616161;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-4-hours-to-5-minutes-1 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(94.61deg, #1fd2ff 0%, #fd71ff 50%, #ff9b3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.from-4-hours-to-5-minutes-2 {
  color: #000;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-3-days-to-3-hours-1 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(94.48deg, #1fd2ff 0%, #fd71ff 50%, #ff9b3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.from-5-hours-to-30-minutes-0 {
  color: #616161;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-5-hours-to-30-minutes-1 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-5-hours-to-30-minutes-2 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(94.32deg, #1fd2ff 0%, #fd71ff 50%, #ff9b3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.frame-2147228380 {
  grid-row-gap: 15px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-image: linear-gradient(#e2e2e240 0%, #fff 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 442px;
  padding: 48px 47px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 10px #00000026;
}

.group-2085662967 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 333.5px;
  height: 255px;
  text-decoration: none;
  display: flex;
}

.text-6 {
  color: #424242;
  text-align: center;
  letter-spacing: -.008em;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.text-7 {
  color: #616161;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.from-4-hours-to-5-minutes-3 {
  color: #616161;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-4-hours-to-5-minutes-4 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(94.61deg, #1fd2ff 0%, #fd71ff 50%, #ff9b3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.from-4-hours-to-5-minutes-5 {
  color: #000;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.text-8 {
  color: #616161;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.from-3-days-to-3-hours-0 {
  color: #616161;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-3-days-to-3-hours-2 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(94.48deg, #1fd2ff 0%, #fd71ff 50%, #ff9b3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.frame-2147228381 {
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-image: linear-gradient(#e2e2e240 0%, #fff 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 441px;
  padding: 46px 35px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 10px #00000026;
}

.group-2085662968 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 364px;
  height: 255px;
  text-decoration: none;
  display: flex;
}

.frame-2147228382 {
  grid-column-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 29px;
  display: flex;
}

.text-10 {
  color: #424242;
  text-align: center;
  letter-spacing: -.008em;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.text-11 {
  color: #616161;
  text-align: center;
  letter-spacing: -.008em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-12 {
  clear: none;
  text-align: center;
  text-decoration: none;
}

.from-5-hours-to-30-minutes-3 {
  color: #616161;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-5-hours-to-30-minutes-4 {
  color: #000;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.from-5-hours-to-30-minutes-5 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(94.32deg, #1fd2ff 0%, #fd71ff 50%, #ff9b3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.image-2 {
  grid-column-gap: 46px;
  grid-row-gap: 46px;
  vertical-align: baseline;
  justify-content: center;
  align-items: flex-start;
  display: inline-flex;
}

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

@media screen and (max-width: 991px) {
  h1, h2, h3 {
    --text-grey: #616161;
    --body-text: .98rem;
    --h1: 3.75rem;
    --h2: 2.75rem;
    --h3: 1.75rem;
    --h4: 1.5rem;
    --h5: 1.25rem;
    --h6: 1.15rem;
    --body-text-large: 1rem;
    --body-extra-large: 1.5rem;
    --translucent-grey: #f4f4f480;
  }

  .spacer-10px-height {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .spacer-10px-height:hover {
    background-color: #fff0;
  }

  .spacer-64px-height {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .content-container.testimonials-section, .style-guide-font-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .style-guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-section {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .spacer-80px-height, .spacer-40px-height, .spacer-30px-height, .spacer-20px-height {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    padding: 1.25rem;
  }

  .hero-section-background {
    padding-top: 15vw;
    padding-bottom: 2rem;
  }

  .partners-logo-wrapper {
    min-width: 160%;
  }

  .partners-logo {
    height: 30px;
  }

  .secotion-fade-out-blur {
    width: 250px;
  }

  .feature-card-wrapper {
    padding: 2rem;
  }

  .how-it-works-card-background {
    background-size: auto 120px;
    height: 360px;
    padding: 2rem;
  }

  .sticky-section-heading {
    max-width: 480px;
    font-size: 5rem;
  }

  .sticky-section-logo {
    height: 100px;
  }

  .testimonials-animator-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
  }

  .pricing-tabs, .faq-grid {
    grid-template-columns: 1fr;
  }

  .plus-icon {
    margin-left: 10px;
  }

  .faq-section {
    padding: 4rem 1.25rem;
  }

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

  .cta-text-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .cta-section {
    padding: 4rem 1.25rem;
  }

  .cta-image-wrapper {
    width: 100%;
    position: relative;
    right: 0%;
  }

  .cta-image-background {
    position: absolute;
    left: 0%;
  }

  .footer {
    padding: 1.25rem;
  }

  .footer-content-container {
    padding: 4rem 4rem 8rem;
  }

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1, h2, h3 {
    --text-grey: #616161;
    --body-text: .98rem;
    --h1: 3.25rem;
    --h2: 2.75rem;
    --h3: 1.75rem;
    --h4: 1.5rem;
    --h5: 1.25rem;
    --h6: 1.15rem;
    --body-text-large: 1rem;
    --body-extra-large: 1.25rem;
    --translucent-grey: #f4f4f480;
  }

  .spacer-10px-height {
    background-color: #fff0;
  }

  .extra-large-text {
    font-size: 24px;
  }

  .spacer-64px-height {
    background-color: #fff0;
  }

  .content-container.testimonials-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .page-hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .spacer-80px-height, .spacer-40px-height, .spacer-30px-height, .spacer-20px-height {
    background-color: #fff0;
  }

  .hero-section {
    padding: 1.25rem;
  }

  .hero-section-background {
    padding-top: 20vw;
  }

  .hero-heading {
    line-height: 100%;
  }

  .section-heading-wrapper {
    text-align: center;
  }

  .navbar {
    overflow: visible;
  }

  .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
  }

  .nav-menu {
    border: 1px solid var(--light-grey);
    background-color: var(--white);
    border-radius: 18px;
    margin-top: .25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding: 1rem;
  }

  .nav-button.mobile-hidden {
    display: none;
  }

  .partners-logo-wrapper {
    min-width: 180%;
  }

  .partners-logo {
    height: 30px;
  }

  .features-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wrapper {
    padding: 4rem;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .lottie-animation-wrapper {
    display: none;
  }

  .sticky-section-heading {
    font-size: 4rem;
  }

  .sticky-section-logo {
    height: 75px;
  }

  .testimonials-section-text-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .faq-section {
    padding: 1.25rem;
  }

  .cta-text-wrapper {
    text-align: center;
  }

  .cta-section {
    padding: 2rem 1.25rem;
  }

  .footer {
    padding: 1.25px 1.25px 1.25rem;
  }

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

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

  .copyright-grid-right {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-button {
    color: var(--text-grey);
    padding: .5rem;
  }

  .menu-button.w--open {
    color: var(--text-grey);
    background-color: #fff0;
  }

  .cta-section-heading-wrapper {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    line-height: 100%;
  }

  .extra-large-text {
    font-size: 18px;
  }

  .style-guide-heading-wrapper {
    margin-top: 40px;
  }

  .content-container {
    padding-left: 0;
    padding-right: 0;
  }

  .content-container.testimonials-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .page-content-wrapper {
    overflow: hidden;
  }

  .section {
    padding: 2.5rem .625rem;
  }

  .style-guide-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-section {
    padding: 100px 10px 20px;
  }

  .hero-section {
    padding: 1.25rem .625rem 1rem;
  }

  .hero-section-background {
    padding-top: 40vw;
  }

  .hero-section-gradient {
    background-position: 50% 100%;
    background-size: contain;
  }

  .hero-content-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

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

  .navbar {
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .partners-logo-wrapper {
    min-width: 300%;
  }

  .partners-logo {
    height: 30px;
  }

  .secotion-fade-out-blur {
    width: 25px;
    display: none;
  }

  .secotion-fade-out-blur.right {
    width: 25px;
  }

  .feature-card-wrapper {
    padding: 2rem;
  }

  .how-it-works-card-paddings {
    padding-top: 2rem;
  }

  .sticky-content-wrapper {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .sticky-section-heading {
    max-width: 360px;
    font-size: 3rem;
  }

  .sticky-section-logo {
    height: 50px;
  }

  .sticky-section-logo.logo-center-right {
    top: 25%;
  }

  .sticky-section-logo.logo-top-left {
    top: 10%;
  }

  .sticky-section-logo.logo-center-left {
    inset: auto auto 0% 0%;
  }

  .testimonials-section-text-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .testimonials-animator-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .testimonials-card {
    height: 280px;
    padding: 1.25rem;
  }

  .testimonials-client-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pricing-tabs {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .pricing-card-text-wrapper {
    padding: 2rem;
  }

  .faq-wrapper {
    padding: 1rem 1.25rem;
  }

  .faq-wrapper:hover {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-question {
    margin-bottom: 0;
  }

  .faq-question-text {
    line-height: 120%;
  }

  .plus-line-animated {
    width: 20px;
  }

  .faq-answer {
    margin-top: 1rem;
  }

  .faq-section {
    padding: 2.5rem .625rem;
  }

  .contact-button-flex {
    flex-flow: column;
    width: 100%;
  }

  .contact-link {
    border-bottom: 1px solid var(--light-grey);
    border-right-width: 0;
    justify-content: center;
    align-items: center;
  }

  .cta-section {
    padding: 2.5rem .625rem;
  }

  .footer {
    padding: 2.5rem .625rem 1rem;
  }

  .footer-content-container {
    padding: 2rem 2rem 4rem;
  }

  .copyright-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .copyright-grid-right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-highlighted-text {
    font-size: 2.8rem;
  }
}

#w-node-d58ba0bd-bc40-6a9f-3859-77002fe8ea77-928901bc {
  grid-area: 3 / 7 / 4 / 11;
}

#w-node-_9cb06643-b896-80a6-9106-73e249ef7094-928901bc {
  grid-area: 3 / 5 / 4 / 7;
  justify-self: end;
}

#w-node-a4eebe23-5453-20ce-482a-1cc28ba1d459-928901bc {
  grid-area: 2 / 4 / 3 / 8;
}

#w-node-_6125038a-aa88-ed6e-12ef-1158020c71f4-928901bc {
  grid-area: 2 / 2 / 3 / 4;
  justify-self: end;
}

#w-node-d2f51b0e-1eea-78a1-2b75-0528a36f78aa-928901bc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_4469ea1a-d3ef-180b-fd82-b237dd0c18cd-928901bc, #w-node-_9c8de7cb-aa91-42da-aaed-5b0be2c74926-928901bc, #w-node-_713205ef-a38a-eed1-5f1e-219e6898a4e1-928901bc, #w-node-fc1cb98d-6b5c-f49f-16ae-5d297e90441c-928901bc, #w-node-_8345b35e-0862-7b34-8a14-6fd8cd72e9f2-928901bc {
  place-self: end center;
}

#w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4d0-b103d4cd {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4df-b103d4cd {
  grid-area: 1 / 7 / 2 / 9;
}

#w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4ef-b103d4cd {
  grid-area: 1 / 9 / 2 / 11;
}

@media screen and (max-width: 991px) {
  #w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4d0-b103d4cd {
    grid-column: span 1 / span 1;
  }

  #w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4df-b103d4cd {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
  }

  #w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4ef-b103d4cd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d58ba0bd-bc40-6a9f-3859-77002fe8ea77-928901bc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a4eebe23-5453-20ce-482a-1cc28ba1d459-928901bc {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-d2f51b0e-1eea-78a1-2b75-0528a36f78aa-928901bc {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2d3e9f37-2fae-bc02-55d8-fdfeb103d4df-b103d4cd {
    justify-self: start;
  }
}


