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

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

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

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

:root {
  --body-font: Montserrat, sans-serif;
  --body-font-color: #292929;
  --brand-color: #4a6cff;
  --heading-font: Montserrat, sans-serif;
  --white: #fff;
  --heading-font-color: #3c4a47;
  --subtext-label-color: #292929;
  --footer-background: #3c4a47;
}

.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-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

body {
  font-family: var(--body-font);
  color: var(--body-font-color);
  background-color: #fff;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.container-1200px {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.navbar-inner-div {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-link {
  max-width: 200px;
}

.navbar-img {
  object-fit: contain;
  max-height: 50px;
}

.cta-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--brand-color);
  font-family: var(--heading-font);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
  transition: all .28s;
  display: flex;
}

.cta-btn:hover {
  box-shadow: 0 1px 8px 3px var(--brand-color);
  transform: scale(1.05);
}

.cta-btn.foot-btn {
  background-color: var(--white);
  color: var(--brand-color);
}

.cta-btn.banner-btn {
  padding: 8px 16px;
  font-size: 14px;
}

.cta-btn.v2 {
  background-color: var(--heading-font-color);
}

.navbar-outer-div {
  padding-top: 16px;
  padding-bottom: 16px;
}

.arrow-img {
  width: 24px;
  height: 24px;
  display: none;
}

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

.section.background-1 {
  background-color: #f7b2ad80;
}

.section.footer-background {
  background-image: url('../images/gradients.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.hero {
  padding-top: 20px;
}

.section.background-2 {
  background-color: #aadef680;
}

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

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

.grid-1-1.hero {
  place-items: center stretch;
}

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

.image-hero.about {
  height: auto;
}

.image-hero.v2 {
  width: 100%;
}

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

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

.flex-48 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  display: flex;
}

.flex-48.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-48.centered {
  justify-content: flex-start;
  align-items: center;
}

.uppercase-span {
  color: var(--brand-color);
  text-transform: uppercase;
  font-weight: 600;
}

.h1-hero {
  font-family: var(--heading-font);
  color: var(--heading-font-color);
  text-transform: uppercase;
  font-size: 69px;
  line-height: 1.2;
}

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

.flex-24.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

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

.flex-24.flex-center.position-relative {
  position: relative;
}

.flex-24.flex-center.position-relative.max-width-900px.align-center {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flex-24.flex-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.form-embed {
  color: #000;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.form-styles {
  display: none;
}

.subtext {
  font-family: var(--heading-font);
  color: var(--subtext-label-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
}

.subtext.v2 {
  font-weight: 400;
}

.grid-item, .text-align-center {
  text-align: center;
}

.h2 {
  font-family: var(--heading-font);
  color: var(--heading-font-color);
  font-weight: 700;
  line-height: 1.2;
}

.h2.text-align-center._2 {
  color: var(--brand-color);
}

.h2.text-align-center.v2 {
  color: #292929;
}

.h2.foot-color {
  color: #fff;
}

.h2.span-brand.v3 {
  color: var(--white);
}

.h2.v2 {
  color: #292929;
}

.slide-nav-10 {
  text-align: center;
  margin-top: 25px;
  font-size: 11px;
}

.transformation-img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.left-arrow {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  bottom: 3px;
  left: 144px;
}

.slider {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.slide-nav {
  color: #efa37d;
  background-color: #fff0;
  margin-top: 48px;
  margin-bottom: 0;
  position: static;
}

.right-arrow {
  color: #000;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  bottom: 3px;
  right: 144px;
}

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

.sliderwrap._1col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.icon {
  color: #fff;
  background-image: linear-gradient(225deg, #fee4ae, #cead69 74%, #c4a15a);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  font-size: 19px;
  display: flex;
}

.icon.left, .icon.right {
  background-color: var(--brand-color);
  color: #fff;
}

.lightbox-img {
  width: 100%;
  height: 100%;
}

.app-icon {
  width: 80px;
  height: 80px;
}

.foot-logo-img {
  object-fit: contain;
  max-width: 134px;
  max-height: 70px;
}

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

.flex-32.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

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

.flex-32.flex-left {
  justify-content: flex-start;
  align-items: flex-start;
}

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

.flex-12.centered {
  justify-content: flex-start;
  align-items: center;
}

.flex-12.centered.padding-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.flex-12.full-width {
  width: 100%;
}

.flex-12.flex-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.col-right-footer {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.footer-logos-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.social-icon-link {
  color: #292929;
  width: 28px;
  transition: all .2s;
}

.social-icon-link:hover {
  color: var(--brand-color);
}

.social-icon-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-disclaimer-txt {
  font-family: var(--heading-font);
  color: #292929;
  text-align: right;
  font-size: 12px;
  line-height: 20px;
}

.footer-disclaimer-txt.brand-bold {
  text-transform: uppercase;
  font-weight: 700;
}

.footer-disclaimer-txt.is-underline {
  text-decoration: underline;
  transition: all .2s;
}

.footer-disclaimer-txt.is-underline:hover {
  color: var(--brand-color);
}

.copyright-text-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.terms-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

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

.flex-4.centered {
  justify-content: flex-start;
  align-items: center;
}

.span-brand {
  color: var(--brand-color);
}

.reward-about {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nasm-logo {
  width: 120px;
}

.h1-hero-2 {
  max-width: 900px;
  font-family: var(--heading-font);
  color: var(--heading-font-color);
  text-align: center;
  font-size: 32px;
}

.image-hero-3 {
  object-fit: contain;
  width: 100%;
  min-width: 120%;
  max-width: 120%;
  height: 100%;
  margin-top: -62px;
  margin-left: -59px;
}

.text-align-center-mob.text-color-light {
  color: #f6eef8;
}

.rt-privacy {
  color: #000;
  font-family: Montserrat, sans-serif;
}

.field-label {
  color: #000;
  margin-bottom: .5rem;
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  line-height: 1.5;
}

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

.success-message {
  background-color: #f4f4f4;
  padding: 1.5rem;
}

.form-contact {
  max-width: 600px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.form-col {
  width: 100%;
}

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

.form-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.form_input {
  color: #000;
  background-color: #fff;
  border: 1px solid #d0d5dd;
  border-radius: .5rem;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .875rem;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: all .3s;
  box-shadow: 0 1px 2px #1018280d;
}

.form_input:focus {
  color: #101828;
}

.form_input::placeholder {
  color: #667085;
}

.form_input.select {
  color: #101828;
  background-color: #fff;
}

.form_input.text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.text-size-18 {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}

.text-size-18.white-var {
  color: #ffe7c2;
}

.text-size-18.white-var.max-with-500 {
  color: #fff;
  max-width: 500px;
}

.text-size-18.max-width-750 {
  max-width: 785px;
}

.text-size-18.v3 {
  color: #000;
  max-width: 500px;
}

.text-size-18.v2 {
  color: #fff;
  max-width: 450px;
}

.text-size-18.text-color-black {
  color: #000;
}

.text-size-18.v4 {
  color: #1a2430;
}

.max-width-900px {
  max-width: 900px;
}

.iphone-mockup {
  z-index: 1;
  height: 100%;
  position: relative;
}

.device-description-wrap {
  margin-top: 16px;
  font-size: 18px;
}

.device-title-wrap {
  font-family: var(--heading-font);
  color: var(--brand-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #aadef6;
  border-radius: 6px;
  margin-bottom: 25px;
  padding: 11px;
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  box-shadow: 0 -1px 5px #0000001a, 0 2px 5px #0000001a;
}

.iphone-screen {
  z-index: 0;
  object-fit: cover;
  border-radius: 6%;
  width: 93%;
  height: 95%;
  position: absolute;
  top: 2.4%;
  left: 3.5%;
}

.iphone-shape {
  z-index: 999;
  height: 90%;
  position: relative;
}

.iphone-grid-2 {
  grid-column-gap: 64px;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: start stretch;
}

.play-pause-button-3 {
  display: none;
}

.banner {
  background-color: #d2d4c8;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}

.banner.v2 {
  background-color: #f4d7d6;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
}

.banner-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

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

.flex-16.flex-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.h1-hero-3 {
  max-width: 900px;
  font-family: var(--heading-font);
  color: #292929;
  text-align: left;
  font-size: 32px;
}

.join-box {
  background-color: #f4d7d6;
  border-radius: 48px;
  padding: 48px;
}

.two-pillars-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.pillar-box {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #4a6cff;
  border-radius: 20px;
  flex-flow: column;
  width: 100%;
  padding: 24px;
  display: flex;
  box-shadow: 0 4px 5px #00000030;
}

.h3-n {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.h3-n.v2-blk {
  color: #292929;
  margin-left: auto;
  margin-right: auto;
}

.text-block {
  color: #f4d7d6;
  text-transform: uppercase;
  font-size: 14px;
  font-style: italic;
}

.text-color-white {
  color: var(--white);
}

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

.included-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 18px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.list-included {
  margin-bottom: 0;
  padding-left: 24px;
}

.list-included.v2 {
  color: var(--white);
}

.essentials-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ceedfb;
  border-radius: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 48px;
  padding-right: 48px;
  display: grid;
}

.essentials-col-1 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

.code-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.essentials-col-2 {
  margin-top: -82px;
}

.who-is-this-for-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #4a6cff;
  border-radius: 48px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  padding: 32px 48px;
  display: grid;
}

.footerbox {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  background-image: url('../images/Rectangle-756-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 48px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 145px;
  display: flex;
}

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

.text-block-2 {
  text-align: center;
  font-size: 14px;
}

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

.testimonial-div {
  background-color: #1a0f0a;
  background-image: linear-gradient(#fee4ae, #cead69 67%, #c4a15a);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 48px 32px;
  display: flex;
}

.testimonial-div.dark {
  background-color: #1a0f0a;
}

.testimonial-div.white {
  background-color: #fffaf3;
  background-image: none;
}

.testimonial-div.silver {
  background-image: linear-gradient(#bdc2c5, #f9fdff);
}

.testimonial-div.blk {
  background-color: #000;
  background-image: none;
}

.feature-icon-3 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.feature-icon-3.large {
  width: 40px;
  height: 40px;
}

.features-row-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  border-bottom: 1px solid #d8b877;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  display: flex;
}

.image-hero-2 {
  width: 100%;
}

.flex-64 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

.included-row-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--white);
  display: flex;
}

.feature-text {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
}

.span-brand-5 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fee4ae, #cead69 67%, #c4a15a);
  -webkit-background-clip: text;
  background-clip: text;
}

.span-brand-5.v2 {
  padding-bottom: 12px;
  padding-left: 11px;
}

.span-brand-5.v3 {
  padding-bottom: 8px;
}

.span-brand-5.v4 {
  padding-right: 12px;
}

.span-brand-5.v5 {
  padding-right: 8px;
}

.step-number {
  color: #fff;
  font-family: Playfair Display, sans-serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 32px;
}

.features-row-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.iphone-grid-2-2 {
  grid-column-gap: 64px;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: start stretch;
  width: 100%;
}

.spotlight-featured-txt {
  color: #000;
  font-family: Playfair Display, sans-serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.4;
}

.spotlight-featured-txt.text-color-white {
  color: #fff;
}

.device-title-wrap-2 {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.text-size-14 {
  font-size: 14px;
  line-height: 24px;
}

.feature-icon-2 {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
}

.quote-abt {
  color: #d4503a;
  font-family: Playfair Display, sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.2;
}

.feature-icon {
  flex: none;
  width: 30px;
  height: 30px;
  display: flex;
}

.quote-icon {
  opacity: .5;
  color: #cead69;
  font-family: Playfair Display, sans-serif;
  font-size: 60px;
  font-style: italic;
  line-height: 24px;
}

.quote-icon.v2 {
  color: #000;
}

.separator-row-spotlight {
  border-top: 1px solid #00000026;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  display: flex;
}

.separator-row-spotlight.v2 {
  border-top-color: #ffffff26;
}

.testimonial-image-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-block-6 {
  color: #000;
  font-family: Playfair Display, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.text-block-6.v2 {
  color: #fff;
}

.step-div {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--white);
  background-color: #101722;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.text-size-20 {
  font-size: 20px;
  line-height: 1.2;
}

.text-size-20.text-align-center.text-color-white-2 {
  color: #fffaf3;
}

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

.page-wrapper {
  background-color: #101722;
}

.page-wrapper.v2-summer {
  background-color: #fff;
}

.flex-16-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.quote-text {
  color: #000;
  font-family: Playfair Display, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.quote-text.v2 {
  color: #000;
}

.feature-text-2 {
  color: #fff;
  font-family: Playfair Display, sans-serif;
  font-size: 22px;
}

.step-label {
  color: #fff;
  font-family: Playfair Display, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.abt-separator {
  background-color: #c4a15a;
  height: 1px;
}

.video-wrap {
  border-radius: 4px;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

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

.ways-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 800px;
  display: grid;
}

.feel-feature-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #151212;
  background-color: #e1d2e4;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  display: flex;
}

.about-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.testimonial-separator-2 {
  background-color: #1a0f0a26;
  width: 100%;
  height: 1px;
  margin-top: 24px;
}

.testimonial-separator-2.v2 {
  background-color: #faf5ee26;
}

.navbar-img-2 {
  object-fit: contain;
  max-height: 48px;
}

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

.way-box {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 20px;
  flex-flow: column;
  width: 100%;
  padding: 32px;
  display: flex;
}

.cta-btn-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #252525;
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #d4503a;
  background-image: linear-gradient(#fee4ae, #cead69 66%, #c4a15a);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .28s;
  display: flex;
}

.cta-btn-2:hover {
  transform: scale(1.01);
  box-shadow: 0 1px 8px 3px #cead69;
}

.cta-btn-2.foot-btn {
  color: #1a0f0a;
  background-color: #fff;
}

.cta-btn-2.hero {
  letter-spacing: 0;
}

.cta-btn-2.hero.v3 {
  font-size: 22px;
  line-height: 1.2;
}

.cta-btn-2.hero.v4 {
  font-size: 18px;
  line-height: 1.2;
}

.cta-btn-2.v2 {
  color: #fff;
  background-color: #000;
  background-image: none;
}

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

.text-size-24.text-color-white-2 {
  font-size: 24px;
  line-height: 1.2;
}

.image-hero-3 {
  width: 100%;
}

.image-hero-3.about {
  height: auto;
}

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

.uppercase-hero-2 {
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.uppercase-hero-2.c2-small {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.uppercase-hero-2.span-brand-5 {
  color: #cead69;
}

.uppercase-hero-2.v2 {
  color: #000;
}

.social-icon-link-2 {
  color: #fff;
  width: 28px;
  transition: all .2s;
}

.social-icon-link-2:hover {
  color: #c4a15a;
}

.h2-2 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.h2-2.text-color-white-2 {
  color: #fff;
}

.h2-2.text-color-white-2.f2 {
  flex-flow: column;
  display: flex;
}

.way-arrow {
  position: absolute;
  inset: -68% 37% auto auto;
}

.text-color-white-2 {
  color: #fff;
}

.features-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

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

.h2-n {
  color: #fff;
  letter-spacing: -.02em;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.h2-n.v3 {
  color: #fff;
  font-size: 76px;
}

.h2-n.v3.dark-var {
  color: #1a0f0a;
}

.h2-n.v3.flex, .h2-n.v3.text-align-center.flexed-lim {
  flex-flow: column;
  display: flex;
}

.h2-n.text-align-center.c1 {
  color: #000;
}

.h2-n.v2 {
  font-size: 60px;
}

.h2-n.v4 {
  color: #fff;
  font-size: 60px;
}

.h2-n.v4.dark-var {
  color: #101722;
}

.h2-n.v4.flex, .h2-n.v4.text-align-center.flexed-lim {
  flex-flow: column;
  display: flex;
}

.h2-n.v3s {
  color: #fff;
  font-size: 43px;
}

.h2-n.v3s.dark-var {
  color: #1a0f0a;
}

.h2-n.v3s.flex, .h2-n.v3s.text-align-center.flexed-lim {
  flex-flow: column;
  display: flex;
}

.h1-hero-3-2 {
  color: #fff;
  letter-spacing: -.02em;
  font-family: Playfair Display, sans-serif;
  font-size: 86px;
  font-weight: 400;
  line-height: 1.1;
}

.grid-you {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-text {
  color: #fffaf3;
  text-align: center;
  letter-spacing: -.03em;
  max-width: 1150px;
  font-family: Playfair Display, sans-serif;
  font-size: 110px;
  line-height: 1.1;
}

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

.section-2.background-3 {
  background-color: #1a0f0a;
}

.section-2.footer-background {
  background-image: linear-gradient(#101722, #1a2430);
}

.section-2.background-1 {
  background-color: #ffe7c2;
  background-image: linear-gradient(#fee4ae, #cead69 69%, #c4a15a);
}

.section-2.background-4 {
  background-color: #000;
}

.section-2.background-5 {
  background-color: #1a2430;
}

.section-2.background-6 {
  background-color: #fff;
}

.top-banner {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #4a464b;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  text-decoration: none;
  display: none;
}

.top-banner:hover {
  text-decoration: underline;
}

.span-white {
  color: #fff;
}

.img-not {
  object-fit: cover;
  border-radius: 12px;
  height: 100%;
}

.div-block-2 {
  max-width: 850px;
}

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

.h1-hero-3-3 {
  color: #101722;
  letter-spacing: -.02em;
  font-family: Playfair Display, sans-serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1.1;
}

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

.included-div-3 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #101722;
  border-radius: 10px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.included-head {
  color: #d8b877;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.non-negotiables-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: linear-gradient(#fff6e3, #f2d497);
  border: 1px solid #d8b877;
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 140px;
  display: grid;
}

.non-negotiables-img-wrapper {
  max-width: 400px;
  margin-top: -64px;
  margin-left: auto;
  margin-right: auto;
}

.non-negotiables-content-col {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-right: 48px;
}

.non-negotiables-content-col.v2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.non-negotiables-head {
  color: #101722;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 36px;
  line-height: 1.2;
}

.negotiables-par {
  color: #101722;
  font-size: 20px;
  line-height: 1.2;
}

.negotiables-par._2 {
  font-size: 18px;
  line-height: 1.6;
}

.non-negotiables-rows-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.code-embed-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.non-negotiables-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.expand-line {
  background-color: #d8b877;
  width: 16px;
  height: 1px;
}

.expand-line.vertical {
  width: 1px;
  height: 16px;
  position: absolute;
}

.h3-ai-friend {
  color: #3e5172;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.h3-ai-friend.c3 {
  color: #000;
  font-weight: 600;
}

.expand-icon-wrap {
  border: 1px solid #d8b877;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-top: -4px;
  display: flex;
}

.faq-wrap {
  max-width: 950px;
}

.expandable-item {
  cursor: pointer;
  border-top: 1px solid #d8b877;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.expandable-item.first-item {
  border-top-style: none;
  padding-top: 0;
}

.expandable-open {
  transform-origin: 50% 0;
}

.link {
  color: #000;
  text-decoration: underline;
}

.paragraph-ai-friend {
  color: #1a2430;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.paragraph-ai-friend.text-style-light-ai-friend {
  font-weight: 300;
}

.expand-space {
  height: 16px;
}

.expandable-content {
  width: 100%;
  height: auto;
  margin-right: 24px;
}

.footer-box {
  background-color: #101722;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 64px;
  display: flex;
}

.cta-div {
  color: var(--white);
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid #d8b877;
  border-radius: 16px;
  padding: 6px 18px;
}

.footer-head {
  color: var(--white);
  text-align: center;
  font-family: Playfair Display, sans-serif;
  font-size: 53px;
  font-weight: 500;
  line-height: 1.2;
}

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

.h1-hero-3-4 {
  color: #c7a55f;
  letter-spacing: -.02em;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.italic-text {
  font-size: 35px;
}

.bold-text {
  color: #101722;
  font-size: 41px;
}

.non-negotiables-head-2 {
  color: #101722;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .container-1200px.custom-hero-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-inner-div {
    justify-content: center;
    align-items: center;
  }

  .navbar-img {
    max-height: 64px;
  }

  .cta-btn.navbar-btn {
    display: none;
  }

  .cta-btn.banner-btn {
    padding: 4px 8px;
    font-size: 12px;
  }

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

  .grid-1-1 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    place-items: start center;
  }

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

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

  .image-hero {
    max-width: 350px;
  }

  .image-hero.v2 {
    width: 100%;
    max-width: 100%;
  }

  .flex-8.v2 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-48.align-left.align-center-mob {
    justify-content: flex-start;
    align-items: center;
  }

  .uppercase-hero, .h1-hero {
    text-align: center;
  }

  .flex-24.align-left.align-center-mob {
    justify-content: flex-start;
    align-items: center;
  }

  .subtext, .h2 {
    text-align: center;
  }

  .h2.max-width-xx-mob {
    max-width: 500px;
  }

  .left-arrow {
    left: 43px;
  }

  .slider {
    height: auto;
  }

  .right-arrow {
    right: 43px;
  }

  .sliderwrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .icon {
    margin-bottom: 0;
  }

  .flex-32.align-left.align-center-mob {
    justify-content: flex-start;
    align-items: center;
  }

  .flex-32.flex-left.flex-center-mobile {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .flex-12.align-center-mob {
    justify-content: flex-start;
    align-items: center;
  }

  .col-right-footer {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-content: space-between;
    align-items: center;
  }

  .reward-about {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .h1-hero-2 {
    max-width: 500px;
    margin-left: 25px;
    margin-right: 25px;
  }

  .image-hero-3 {
    min-width: 0;
    max-width: 350px;
    margin-top: 0;
    margin-left: 0;
  }

  .text-align-center-mob, .text-size-18.v2, .text-size-18.v4 {
    text-align: center;
  }

  .iphone-mockup {
    min-height: 0;
  }

  .device-title-wrap {
    margin-bottom: 16px;
  }

  .iphone-shape {
    min-height: 0;
  }

  .iphone-grid-2 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .play-pause-button-3 {
    z-index: 9;
    display: none;
  }

  .banner {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .banner-container {
    font-size: 12px;
  }

  .h1-hero-3 {
    text-align: center;
    max-width: 500px;
  }

  .two-pillars-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .essentials-box {
    flex-flow: column;
    padding-top: 32px;
    display: flex;
  }

  .essentials-col-2 {
    margin-top: 0;
  }

  .who-is-this-for-div {
    flex-flow: column;
    display: flex;
  }

  .footerbox {
    padding-left: 64px;
    padding-right: 64px;
  }

  .image-hero-2 {
    max-width: 100%;
  }

  .span-brand-5.v2 {
    padding-left: 0;
  }

  .iphone-grid-2-2 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-16-2.flex-center-mobile {
    justify-content: flex-start;
    align-items: center;
  }

  .testimonials-gridline {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    display: flex;
  }

  .cta-btn-2.navbar-btn {
    display: none;
  }

  .image-hero-3 {
    max-width: 100%;
  }

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

  .h2-2 {
    text-align: center;
  }

  .way-arrow {
    max-width: 60px;
    margin-top: -48px;
    position: static;
  }

  .h1-hero-3-2 {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-you {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    display: flex;
  }

  .footer-text {
    font-size: 48px;
  }

  .section-2.hero {
    padding-top: 30px;
  }

  .h1-hero-3-3 {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .non-negotiables-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-top: 64px;
  }

  .paragraph-ai-friend {
    font-size: 16px;
  }

  .h1-hero-3-4 {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .cta-btn {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 22px;
  }

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

  .flex-48 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .h1-hero {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    line-height: 1.2;
  }

  .flex-24.v2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .subtext {
    font-size: 14px;
  }

  .h2 {
    font-size: 24px;
  }

  .h2.text-align-center.v2.v4 {
    max-width: 300px;
  }

  .h2.max-width-xx-mob {
    max-width: 400px;
  }

  .slide-nav-10 {
    position: relative;
    top: 4px;
  }

  .left-arrow, .right-arrow {
    bottom: 8px;
  }

  .sliderwrap {
    grid-row-gap: 20px;
  }

  .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0;
    font-size: 15px;
  }

  .icon.left {
    margin-left: 0;
  }

  .icon.right {
    margin-right: 0;
  }

  .copyright-text-wrap.v2 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .h1-hero-2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .form-contact {
    width: 100%;
    margin-top: 0;
  }

  .form-row {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .text-size-18 {
    font-size: 16px;
    line-height: 24px;
  }

  .device-description-wrap {
    font-size: 16px;
  }

  .iphone-screen {
    z-index: 99999;
    border-radius: 20px;
  }

  .iphone-grid-2 {
    grid-column-gap: 24px;
    justify-content: center;
  }

  .play-pause-button-3 {
    z-index: 9999;
    width: 24px;
    height: 24px;
    display: block;
  }

  .banner {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .banner-container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .banner-container.v2 {
    font-size: 14px;
  }

  .h1-hero-3 {
    font-size: 28px;
    line-height: 1.2;
  }

  .join-box, .pillar-box {
    border-radius: 16px;
  }

  .h3-n {
    font-size: 18px;
  }

  .essentials-box {
    border-radius: 16px;
  }

  .who-is-this-for-div {
    border-radius: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footerbox {
    border-radius: 16px;
  }

  .testimonial-div {
    padding: 24px;
  }

  .feature-icon-3.large {
    width: 24px;
    height: 24px;
  }

  .features-row-2 {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .included-row-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .span-brand-5.v2 {
    padding-bottom: 6px;
  }

  .span-brand-5.v4 {
    padding-right: 6px;
  }

  .step-number {
    font-size: 48px;
    line-height: 24px;
  }

  .features-row-wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .iphone-grid-2-2 {
    grid-column-gap: 24px;
    justify-content: center;
  }

  .spotlight-featured-txt {
    font-size: 22px;
  }

  .feature-icon-2 {
    width: 30px;
    height: 30px;
  }

  .quote-abt {
    font-size: 18px;
  }

  .testimonial-image-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

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

  .step-div {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 18px;
  }

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

  .testimonials-gridline {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
  }

  .feel-feature-row {
    font-size: 16px;
  }

  .testimonial-separator-2 {
    margin-top: 16px;
  }

  .included-grid-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .cta-btn-2 {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 22px;
  }

  .steps-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .uppercase-hero-2 {
    font-size: 12px;
  }

  .h2-2 {
    font-size: 24px;
  }

  .h2-n, .h2-n.v3 {
    font-size: 32px;
  }

  .h2-n.v3.dark-var.flex {
    display: block;
  }

  .h2-n.v2, .h2-n.v4 {
    font-size: 32px;
  }

  .h2-n.v4.dark-var.flex {
    display: block;
  }

  .h2-n.v3s {
    font-size: 32px;
  }

  .h2-n.v3s.dark-var.flex {
    display: block;
  }

  .h1-hero-3-2 {
    font-size: 55px;
  }

  .grid-you {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .footer-text {
    max-width: 450px;
  }

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

  .top-banner {
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
  }

  .h1-hero-3-3 {
    font-size: 55px;
  }

  .included-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .included-grid-3.v2, .non-negotiables-container {
    flex-flow: column;
    display: flex;
  }

  .non-negotiables-img-wrapper {
    margin-top: -24px;
  }

  .non-negotiables-content-col {
    order: -9999;
    padding: 24px;
  }

  .footer-box {
    padding: 32px;
  }

  .cta-div {
    max-width: 350px;
  }

  .text-block-8 {
    text-align: center;
  }

  .h1-hero-3-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    line-height: .9;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }

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

  .navbar-img {
    max-height: 48px;
  }

  .arrow-img {
    margin-left: 9px;
  }

  .image-hero {
    max-width: 100%;
  }

  .h1-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .subtext.v2.span-brand.v3 {
    flex-flow: column;
    display: flex;
  }

  .h2.text-align-center._2 {
    max-width: 300px;
  }

  .h2.max-width-xx-mob {
    max-width: 265px;
  }

  .h2.span-brand.v2, .h2.span-brand.v3 {
    max-width: 310px;
  }

  .slide-nav-10 {
    margin-top: 10px;
    top: 0;
  }

  .left-arrow {
    left: 5px;
  }

  .right-arrow {
    bottom: 8px;
    right: 5px;
  }

  .sliderwrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .icon {
    margin-top: auto;
    margin-bottom: 0;
  }

  .flex-12.align-center-mob {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .copyright-text-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .play-pause-button-2 {
    z-index: 999;
  }

  .device-description-wrap {
    font-size: 14px;
    line-height: 19px;
  }

  .device-title-wrap {
    padding: 6px;
    font-size: 12px;
  }

  .iphone-screen {
    border-radius: 15px;
  }

  .iphone-grid-2 {
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .banner {
    text-align: center;
  }

  .banner-container {
    max-width: 350px;
    line-height: 18px;
  }

  .join-box {
    padding: 24px;
  }

  .essentials-box {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .essentials-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .who-is-this-for-div, .footerbox {
    padding: 24px;
  }

  .image-hero-2 {
    max-width: 100%;
  }

  .text-block-4 {
    flex-flow: column;
    display: flex;
  }

  .span-brand-5.v4 {
    padding-right: 3px;
  }

  .span-brand-5.text-align-center-mob.v3 {
    font-size: 12px;
  }

  .iphone-grid-2-2 {
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .device-title-wrap-2 {
    font-size: 14px;
  }

  .feature-icon-2 {
    width: 25px;
    height: 25px;
  }

  .text-size-20.text-align-center.text-color-white-2.v2 {
    font-size: 18px;
  }

  .logo-foot {
    max-width: 200px;
  }

  .play-pause-button-4 {
    z-index: 999;
  }

  .ways-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .feel-feature-row {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .way-box {
    padding: 18px;
  }

  .cta-btn-2.hero {
    width: 100%;
  }

  .cta-btn-2.hero.v4 {
    font-size: 16px;
  }

  .image-hero-3 {
    max-width: 100%;
  }

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

  .h2-n.v3.dark-var.flex.vfvv {
    max-width: 250px;
  }

  .h2-n.text-align-center.c1 {
    max-width: 300px;
  }

  .h2-n.v4.dark-var.flex.vfvv, .h2-n.v3s.dark-var.flex.vfvv {
    max-width: 250px;
  }

  .footer-text {
    max-width: 350px;
    font-size: 32px;
  }

  .text-block-7 {
    max-width: 280px;
  }

  .div-block-3 {
    width: 100%;
  }

  .h1-hero-3-3 {
    font-size: 40px;
  }

  .included-grid-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
  }

  .expand-line {
    flex: none;
  }

  .expand-line.vertical {
    transform-origin: 50%;
    flex: none;
  }

  .h3-ai-friend {
    font-size: 18px;
  }

  .expand-icon-wrap {
    flex: none;
    width: 24px;
    height: 24px;
  }

  .paragraph-ai-friend {
    font-size: 14px;
  }

  .expandable-content {
    flex: 0 auto;
    max-width: none;
  }

  .footer-head {
    font-size: 37px;
  }

  .text-block-8 {
    max-width: 220px;
  }

  .h1-hero-3-4 {
    font-size: 40px;
  }

  .italic-text {
    font-size: 24px;
  }

  .bold-text {
    font-size: 32px;
  }
}

#w-node-b195371a-c9c7-c2b2-291a-9418a5087bc5-dc071c82, #w-node-b195371a-c9c7-c2b2-291a-9418a5087c10-dc071c82 {
  align-self: center;
}

#w-node-b195371a-c9c7-c2b2-291a-9418a5087c73-dc071c82, #w-node-a694c4c7-3a31-9221-98cb-6cd5497516e6-dc071c82 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4225e2b9-a1f8-e353-3416-26506d32da60-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da5f-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da63-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da64-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da67-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da68-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da6b-dc071c82, #w-node-_4225e2b9-a1f8-e353-3416-26506d32da6c-dc071c82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fda8aaf7-7ab7-6f97-33f3-684df2b3fe69-dc071c82, #w-node-_5587e44c-b465-6f49-63dd-2e49da9d6bbb-dc071c82 {
  align-self: center;
}

#w-node-_679221c4-1126-3ad1-2dcb-9a20d2e902a1-dc071c82, #w-node-_6b5e250d-a5af-6dac-3a2c-94b6af137435-dc071c82, #w-node-_7cc93aa6-acbb-aecf-f602-070826bbcdb0-dc071c82, #w-node-c9c5a9ed-f4d6-e82d-fd98-e4231b2558aa-dc071c82, #w-node-_6c02aa14-630b-9029-84cf-dbcc20c22d2f-dc071c82, #w-node-_3083a85e-556f-e7b6-fa32-9ba5ec0ac9ee-dc071c82, #w-node-_9037e226-df39-5a8a-78e2-34f0af7d19a0-dc071c82, #w-node-bd57e3a3-5232-b686-8110-140e27299b05-dc071c82, #w-node-_88f88c29-8637-9187-de8d-274b6b45ebd3-dc071c82, #w-node-_23edf939-2285-0fb3-0642-036f9cceac80-dc071c82, #w-node-_9f77daea-064d-fcf3-e772-084d099c3800-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3801-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3804-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3805-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3808-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3809-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c380c-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c380d-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3810-2bd4b6b8, #w-node-_9f77daea-064d-fcf3-e772-084d099c3811-2bd4b6b8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b195371a-c9c7-c2b2-291a-9418a5087bc5-5b95a8aa, #w-node-b195371a-c9c7-c2b2-291a-9418a5087c10-5b95a8aa {
  align-self: center;
}

#w-node-ae15298c-19c2-5094-7fa9-c560da8a7510-5b95a8aa {
  align-self: end;
}

#w-node-b195371a-c9c7-c2b2-291a-9418a5087bc5-195755dd, #w-node-b195371a-c9c7-c2b2-291a-9418a5087c10-195755dd {
  align-self: center;
}

#w-node-_325136a2-26c0-2488-b84e-abc496fe6bd0-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bd1-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bd4-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bd5-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bd8-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bd9-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bdc-195755dd, #w-node-_325136a2-26c0-2488-b84e-abc496fe6bdd-195755dd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae15298c-19c2-5094-7fa9-c560da8a7510-195755dd {
  align-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-b195371a-c9c7-c2b2-291a-9418a5087bc5-dc071c82 {
    order: -9999;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087be3-dc071c82 {
    justify-self: center;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087c73-dc071c82 {
    grid-column: span 2 / span 2;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087c91-dc071c82 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a694c4c7-3a31-9221-98cb-6cd5497516e6-dc071c82 {
    grid-column: span 2 / span 2;
  }

  #w-node-d3de2eb3-bad0-b303-b264-0cea31f3480a-dc071c82 {
    justify-self: center;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d37-dc071c82 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d43-dc071c82 {
    grid-area: 1 / 3 / 2 / 5;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d4f-dc071c82 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d5b-dc071c82 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d70-dc071c82 {
    order: -9999;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac4051921c-dc071c82 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac4051922b-dc071c82 {
    grid-area: 1 / 3 / 2 / 5;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac4051923a-dc071c82 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac40519249-dc071c82 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-fda8aaf7-7ab7-6f97-33f3-684df2b3fe69-dc071c82 {
    order: -9999;
  }

  #w-node-b7b19d70-c919-1ef1-c9fa-9f79c8388939-2bd4b6b8 {
    order: 9999;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087bc5-5b95a8aa, #w-node-b195371a-c9c7-c2b2-291a-9418a5087bc5-195755dd {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d37-dc071c82, #w-node-b195371a-c9c7-c2b2-291a-9418a5087d4f-dc071c82, #w-node-_35466b94-99e0-ae11-9d93-1fac4051921c-dc071c82, #w-node-_35466b94-99e0-ae11-9d93-1fac4051923a-dc071c82 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d37-dc071c82 {
    grid-column: span 1 / span 1;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d43-dc071c82 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d4f-dc071c82 {
    grid-column: span 1 / span 1;
  }

  #w-node-b195371a-c9c7-c2b2-291a-9418a5087d5b-dc071c82 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac4051921c-dc071c82 {
    grid-column: span 1 / span 1;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac4051922b-dc071c82 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac4051923a-dc071c82 {
    grid-column: span 1 / span 1;
  }

  #w-node-_35466b94-99e0-ae11-9d93-1fac40519249-dc071c82 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Bitter-n';
  src: url('../fonts/Bitter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bitter-n';
  src: url('../fonts/Bitter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bitter-n';
  src: url('../fonts/Bitter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bitter-n';
  src: url('../fonts/Bitter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}