:root {
  --white: #f9f9f9;
  --geist: Geist, sans-serif;
  --text-grey: #616161;
  --body-text: .875rem;
  --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;
}

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

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

body {
  background-color: var(--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: underline;
}

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 {
  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-background.svg');
  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;
}

.section.features {
  background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%), url('../images/section-background.svg');
}

.section.authentication-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section.dashboard-section {
  flex-flow: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
}

.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-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/Blurry-Eliptical-Gradient.svg');
  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);
  background-color: #d4d4d4;
  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, #3cf0cc, #23cfff 48%, #004ddb);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
}

.heading-paragraph {
  max-width: 450px;
}

.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.authentication-button {
  color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 38px;
  font-weight: 600;
  display: flex;
}

.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, #00d0ff, #00a3ff 50%, #04deb5);
  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-white-background.upload-file-button {
  color: var(--text-grey);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: block;
}

.secondary-button-white-background.view-files-button {
  color: var(--text-grey);
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.secondary-button.send-chat-button {
  background-color: #1f88c2;
}

.secondary-button.upload-file-button, .secondary-button.view-files-button {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: none;
}

.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 {
  font-size: var(--body-text-large);
  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 {
  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;
  margin-left: auto;
  margin-right: auto;
}

.features-card-grid {
  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/upload-data-background.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.pay-bill {
  background-image: url('../images/pay-bill-background.svg');
}

.how-it-works-card-background.download-results {
  background-image: url('../images/download-data-background.svg');
}

.how-it-works-card {
  background-image: linear-gradient(135deg, #56f3e1, #44cfff 50%, #1960e0);
  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;
}

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

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

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

.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, #2783e9 48%, #3dffbe);
  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;
  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;
}

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

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

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

.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);
  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.png');
  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, #00dfeb 12%, #2495ff 51%, #00ddce 82%);
  -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;
}

.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: .6rem 1rem;
  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;
}

.ikonik-2xvnxl {
  color: #333;
}

.image-wrapper {
  border-radius: 20px;
  overflow: clip;
  box-shadow: 0 2px 20px #0000001f;
}

.authentication-content {
  width: 100%;
  max-width: 464px;
  margin-left: auto;
  margin-right: auto;
}

.authentication-card {
  z-index: 1;
  background-color: #0000;
  background-image: linear-gradient(#e2e2e21f, #eeeeee7a 100%, #fff);
  border: 2px solid #fff;
  border-radius: 12px;
  width: 100%;
  padding: 45px 30px;
  position: relative;
  box-shadow: 0 0 10px #0003;
}

.login {
  width: 100%;
}

.login-form-wrap {
  margin-bottom: 0;
}

.login-top-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.authentication-logo-wrap {
  margin-bottom: 30px;
}

.authentication-title {
  margin-bottom: 10px;
  line-height: 110%;
  display: inline-block;
}

.authentication-details {
  font-weight: 400;
}

.sign-in-single-fields {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-bottom: 20px;
  display: flex;
}

.sign-in-single-field-wrap.flex {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.form-field-label {
  margin-bottom: 14px;
}

.form-field {
  letter-spacing: -.14px;
  border: 1px solid #a1a1a14d;
  border-radius: 100px;
  width: 100%;
  height: 46px;
  margin-bottom: 0;
  padding: 0 16px;
}

.authentication-text-link {
  font-weight: 600;
}

.authentication-details-text-link {
  font-weight: 600;
  text-decoration: underline;
}

.upload-card-wrapper {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.file-status-area {
  display: none;
}

.text-link {
  text-decoration: underline;
}

.file-info-message-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.drop-zone-area {
  text-align: center;
  border: 2px dashed #82828270;
  border-radius: 8px;
  padding: 40px 20px;
}

.remove-file-button {
  color: #fff;
  background-color: #667085;
  border: 1px solid #0000;
  border-radius: 20px;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  font-size: .8rem;
  line-height: 20px;
  transition: all .4s ease-in-out;
  display: flex;
}

.remove-file-button:hover {
  border: 1px solid #fff;
  font-size: 1rem;
}

.file-info-item {
  text-align: center;
  border-radius: 8px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-weight: 700;
  display: flex;
}

.upload-card {
  z-index: 1;
  background-color: #0000;
  background-image: linear-gradient(#e2e2e21f, #eeeeee7a 100%, #fff);
  border: 2px solid #fff;
  border-radius: 12px;
  width: 100%;
  padding: 45px 30px;
  position: relative;
  box-shadow: 0 0 10px #0003;
}

.upload-card-content {
  margin-bottom: 10px;
}

.upload {
  width: 100%;
}

.upload-top-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.upload-details {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
}

.card, .card-2 {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(#ffffff1a, #0000);
  border: 0 solid #fff3;
  border-radius: clamp(.5rem, .4rem + .2vw, .75rem);
  flex-flow: column;
  list-style-type: none;
  overflow: hidden;
  box-shadow: 0 0 0 1px #fff3, 0 2px 4px #0000001a, 0 8px 14px #00000026;
}

.paragraph {
  text-align: left;
  padding-top: 20px;
  line-height: 30px;
}

.file-action-button-2 {
  text-align: center;
  text-transform: uppercase;
  background-color: #82828270;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.file-action-button-2.pay-bill-button {
  color: #00ffef;
  background-color: #00132a;
  border: 1px solid #39cdc4;
  box-shadow: inset 0 0 20px -8px #39cdc4;
}

.file-action-button-2.download-button {
  color: #000;
  background-color: #2f0;
}

.profile-form {
  padding-top: 40px;
  padding-left: 100px;
}

.message-timestamp {
  text-align: right;
  width: 100%;
  margin-top: 0;
  margin-bottom: 5px;
  padding-right: 2px;
  font-size: 8px;
  line-height: 10px;
}

.dashboard-tab-pane-tab-1 {
  z-index: 1;
}

.dashboard-tab-content {
  z-index: 1;
  width: 80%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: visible;
}

.chat-messages-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  max-height: 70%;
  display: flex;
}

.save-button-wrapper {
  grid-column-gap: 61px;
  grid-row-gap: 61px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.dashboard {
  z-index: 1;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: stretch start;
  height: 100svh;
  display: flex;
  position: static;
  overflow: visible;
}

.chat-message-item {
  color: #000;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 5px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

.chat-message-item.admin-sent {
  text-align: right;
  background-color: #fff;
  flex: 0 auto;
}

.chat-message-item.user-received {
  text-align: left;
  background-color: #fff;
}

.chat-message-item.admin-sent {
  text-align: right;
  flex: 0 auto;
}

.chat-message-item.user-received {
  text-align: left;
}

.file-card-status {
  border-radius: 8px;
  display: block;
}

.file-card-status.status-error {
  display: block;
}

.card-3 {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(#ffffff1a, #0000);
  border: 0 solid #fff3;
  border-radius: clamp(.5rem, .4rem + .2vw, .75rem);
  flex-flow: column;
  list-style-type: none;
  overflow: hidden;
  box-shadow: 0 0 0 1px #fff3, 0 2px 4px #0000001a, 0 8px 14px #00000026;
}

.card-3.contact-card {
  color: #000;
  background-color: #fff;
}

.card-3.contact-card.placeholder {
  display: none;
}

.profile-form-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 600px;
}

.chat-messages {
  color: #000;
  border: 2px solid #fff;
  border-radius: 12px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  padding: 10px;
  display: flex;
  overflow: auto;
  box-shadow: 0 0 10px #0003;
}

.chat-message-item-2 {
  color: #fff;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 2px;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

.no-files-message {
  padding-left: 40px;
}

.file-card-meta {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  font-size: 12px;
}

.profile-img-wrapper {
  background-image: url('../images/Profile-Icon_1Profile Icon.avif');
  background-position: 50%;
  background-size: cover;
  border-radius: 100px;
  width: 200px;
  height: 200px;
}

.dashboard-wrapper {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.file-item-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: linear-gradient(#e2e2e21f, #ffffff80);
  border: 2px solid #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  padding: 10px 10px 15px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 10px #0003;
}

.card-body {
  z-index: 1;
  flex-flow: column;
  height: 100%;
  padding: clamp(1.5rem, 1.25rem + .75vw, 3rem);
  display: flex;
  position: relative;
}

.results-map {
  z-index: 1;
  grid-column-gap: 46px;
  grid-row-gap: 46px;
  border-radius: 7px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.form-2 {
  border-radius: 50px;
}

.dashboard-tab-link {
  background-color: #ddd0;
  padding: 10px 15px;
}

.dashboard-tab-link.w--current {
  background-color: #bfbfbf21;
  border: 1px solid #84848470;
  border-radius: 50px;
  font-weight: 600;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.delete-button-wrapper {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 40px;
  display: flex;
}

.dashboard-menu-heading {
  border-right: 1px solid #efefff;
  width: 15%;
  margin-bottom: 0;
  padding-left: 15px;
}

.input {
  box-shadow: none;
  color: #fff;
  background-color: #0000;
  background-image: none;
  border: 1px solid #fff;
  border-radius: clamp(.25rem, .2rem + .1vw, .4rem);
  height: auto;
  margin-bottom: 0;
  padding: clamp(1rem, .8rem + .15vw, 1.25rem);
  font-size: 1rem;
  line-height: 1.3;
  transition: background-color .2s cubic-bezier(.165, .84, .44, 1), border-color .2s cubic-bezier(.165, .84, .44, 1);
}

.input:hover {
  box-shadow: none;
  border-color: #fff;
}

.input:focus {
  outline-offset: 2px;
  border-color: #fff;
  outline: 2px solid #39cdc4;
}

.input::placeholder {
  color: #fff3;
}

.profile_button-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.dashboard-tab-pane-tab-2 {
  z-index: 1;
}

.profile_edit-div {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: stretch start;
  display: flex;
  overflow: visible;
}

.chat-form-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.job-selector-form {
  z-index: 5;
  color: #000;
  border-radius: 10px;
  margin-bottom: 0;
  position: absolute;
  inset: auto auto 0% 0%;
}

.button {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #1f88c2;
  background-image: linear-gradient(#1f88c2, #0000), linear-gradient(#ffffff1a, #0000), linear-gradient(#7a7a7a08, #7a7a7a08);
  border: 0 solid #0000;
  border-radius: clamp(.25rem, .2rem + .1vw, .4rem);
  justify-content: center;
  align-items: center;
  padding: clamp(.5em, .5em + .15vw, 1.2em) clamp(1.5em, 1.4em + .2vw, 1.75em);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 2px 3px #0000001a, 0 1px 1px #0000001a, inset 0 0 0 1px #39cdc44d, inset 0 0 0 1px #ffffff1a;
}

.button:hover {
  color: #fff;
  background-color: #39cdc433;
  border-color: #0000;
  box-shadow: 0 3px 6px #0003, 0 1px 2px #0000001a, inset 0 0 0 1px #39cdc466, inset 0 0 0 1px #ffffff1a;
}

.button:active {
  background-color: #39cdc41a;
  box-shadow: 0 2px 3px #0000001a, 0 1px 1px #0000001a, inset 0 0 0 1px #39cdc44d, inset 0 0 0 1px #ffffff1a;
}

.button:focus {
  outline-offset: 2px;
  outline: 2px solid #39cdc4;
}

.button.delete-button {
  background-color: red;
  background-image: linear-gradient(red, #0000), linear-gradient(#ffffff1a, #0000), linear-gradient(#7a7a7a08, #7a7a7a08);
}

.button.secondary-button {
  color: #fff;
  background-color: #0000;
  background-image: none;
  border-color: #0000;
  box-shadow: inset 0 0 0 1px #fff3;
}

.button.secondary-button:hover {
  background-color: #0000;
  background-image: linear-gradient(#39cdc499, #0000);
  border-color: #0000;
  box-shadow: inset 0 0 0 1px #fff6;
}

.button.secondary-button:active {
  background-color: #0000;
  box-shadow: inset 0 0 0 1px #fff3;
}

.file-thumbnail-icon {
  width: 150px;
  max-width: 150px;
  height: 150px;
  max-height: 150px;
}

.file-list-grid {
  grid-column-gap: 3.8rem;
  grid-row-gap: 3.8rem;
  grid-template-rows: minmax(180px, 1fr) auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
}

.profile_img-div {
  grid-column-gap: 57px;
  grid-row-gap: 57px;
  flex-flow: row;
  max-width: 600px;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.message-sender {
  display: none;
}

.dashboard-tab-pane-tab-4 {
  z-index: 1;
  width: 100%;
  height: 80dvh;
}

.chat-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 80vh;
  min-height: 500px;
  max-height: 80vh;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.dashboard-tab-menu {
  z-index: 1;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 1px solid #efefff;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 15%;
  padding-top: 40px;
  display: flex;
}

.message-text {
  color: var(--text-grey);
  display: block;
}

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

.job-selector {
  color: #002a49;
  background-color: #fff;
  border-radius: 25px;
  margin-bottom: 0;
  font-weight: 700;
}

.file-card-name {
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  overflow: hidden;
}

.primary-button-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #3ab1dd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 14px;
  transition: all .2s;
}

.primary-button-2:hover {
  color: #fff;
  background-color: #32343a;
}

.primary-button-2:active {
  background-color: #43464d;
}

.dashboard-tabs {
  z-index: 1;
  overflow: visible;
}

.file-card-details {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.chat-input-field {
  color: var(--black);
  border: 2px solid #fff;
  border-radius: 12px;
  min-width: 100%;
  max-width: 100%;
  min-height: 10rem;
  max-height: 10rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  overflow: auto;
  box-shadow: inset 0 0 10px #0003;
}

.input-label {
  z-index: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin-bottom: .5em;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

.chat-message-item-wrapper.sent {
  align-self: flex-start;
  max-width: 52%;
}

.chat-message-item-wrapper.received {
  align-self: flex-end;
  max-width: 52%;
}

.chat-message-item-wrapper.admin-sent {
  align-self: flex-end;
}

.chat-message-item-wrapper.user-received {
  align-self: flex-start;
}

.dashboard-tab-pane-tab-3 {
  z-index: 1;
}

.ikonik-k6q51i, .ikonik-l9ctu {
  color: #333;
}

.file-action-button-3 {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--black);
  font-size: var(--body-text-large);
  border-radius: 12px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 2px;
  text-decoration: none;
  transition: transform .2s, box-shadow .5s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

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

.secondary-button-white-background-copy {
  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;
}

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

.primary-button-white-background-copy {
  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-blue-background {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--white);
  background-color: #1f88c2;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  padding: .6rem 1rem;
  display: flex;
  position: relative;
}

.nav-button-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-left: auto;
  display: flex;
}

.nav-button-wrapper.show-when-logged-in {
  display: none;
}

.strength-bar-progress {
  border-radius: 100px;
}

.strength-text {
  text-align: center;
  font-size: 16px;
}

.passwordrequirements-list {
  text-align: left;
  margin-bottom: 25px;
}

.requirement {
  font-size: 12px;
}

.admin-chat-panel {
  max-width: 1100px;
}

.admin-chat-panel.conversation-panel {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
}

.admin-chat-panel.chat-view-panel {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  flex: 0 auto;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 80vh;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.message-timestamp-2 {
  text-align: right;
  width: 100%;
  margin-top: 0;
  margin-bottom: 5px;
  padding-right: 2px;
  font-size: 8px;
  line-height: 10px;
}

.admin-chat-layout {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.conversation-item {
  border: 1px solid var(--light-grey);
  text-align: center;
  border-radius: 8px;
  width: 325px;
  padding: 5px;
  font-size: 18px;
  line-height: 38px;
}

.conversation-item.selected {
  border-color: var(--light-grey);
  background-color: var(--translucent-grey);
}

.message-text-2 {
  display: block;
}

.heading-2 {
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3rem;
}

.heading-2.centered {
  text-align: center;
  font-size: 3rem;
  line-height: 3rem;
  position: relative;
}

.chat-header {
  display: none;
}

.admin-chat-messages-area {
  border: 2px solid #fff;
  border-radius: 12px;
  flex-flow: column;
  flex: 1;
  width: 100%;
  min-height: 500px;
  padding: 20px;
  display: flex;
  overflow: auto;
  box-shadow: 0 0 10px #0003;
}

.conversation-list-items {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.chat-input-field-2 {
  color: #fff;
  background-color: #00132a;
  border: 1px solid #1f88c2;
  border-radius: 8px;
  min-width: 100%;
  max-width: 100%;
  min-height: 10rem;
  max-height: 10rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  overflow: auto;
  box-shadow: inset 0 2px 9px -1px #3ab1dd;
}

.social-auth-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.social-btn {
  color: #000;
  border: 1px solid #dcdce5;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 40px 12px 15px;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  box-shadow: 0 1px 2px #dcdce580;
}

.social-btn:hover {
  box-shadow: none;
  border-color: #374252;
}

.social-btn:focus {
  border: 1px solid #000;
}

.social-btn::placeholder {
  color: #6e6e6e;
}

.social-btn.google {
  background-color: #fff;
}

.social-btn.google:hover {
  border-color: #4285f4;
}

.social-content {
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
}

.social-image {
  width: 24px;
}

.disconnect-link {
  text-align: right;
  padding: 13px;
  text-decoration: underline;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.disconnect-link:hover {
  color: #000;
}

.disconnect-image {
  width: 16px;
}

.form-divider {
  color: var(--text-grey);
  letter-spacing: 2px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 12px;
  display: flex;
}

.form-div-line {
  background-color: var(--text-grey);
  width: 40%;
  height: .8px;
}

.form-div-text {
  color: var(--text-grey);
  text-align: center;
  flex: none;
  min-width: 33%;
}

.file-action-button {
  z-index: 1;
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--white);
  font-size: var(--body-text-large);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: .6rem 1rem;
  text-decoration: none;
  transition: box-shadow .5s, transform .2s;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #00000040;
}

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

.button-2 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #1f88c2;
  background-image: linear-gradient(#1f88c2, #0000), linear-gradient(#ffffff1a, #0000), linear-gradient(#7a7a7a08, #7a7a7a08);
  border: 0 solid #0000;
  border-radius: clamp(.25rem, .2rem + .1vw, .4rem);
  justify-content: center;
  align-items: center;
  padding: clamp(.5em, .5em + .15vw, 1.2em) clamp(1.5em, 1.4em + .2vw, 1.75em);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 2px 3px #0000001a, 0 1px 1px #0000001a, inset 0 0 0 1px #39cdc44d, inset 0 0 0 1px #ffffff1a;
}

.button-2:hover {
  color: #fff;
  background-color: #39cdc433;
  border-color: #0000;
  box-shadow: 0 3px 6px #0003, 0 1px 2px #0000001a, inset 0 0 0 1px #39cdc466, inset 0 0 0 1px #ffffff1a;
}

.button-2:active {
  background-color: #39cdc41a;
  box-shadow: 0 2px 3px #0000001a, 0 1px 1px #0000001a, inset 0 0 0 1px #39cdc44d, inset 0 0 0 1px #ffffff1a;
}

.button-2:focus {
  outline-offset: 2px;
  outline: 2px solid #39cdc4;
}

.button-2.cta-button {
  background-color: #39cdc4;
  background-image: linear-gradient(#39cdc4, #0000), linear-gradient(#ffffff1a, #0000), linear-gradient(#7a7a7a08, #7a7a7a08);
}

.button-2.cta-button:hover {
  background-color: #1f88c233;
}

.button-2.cta-button.upload-file-button {
  display: none;
}

.upload-result-message {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 28px;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
}

.button-3 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #1f88c2;
  background-image: linear-gradient(#1f88c2, #0000), linear-gradient(#ffffff1a, #0000), linear-gradient(#7a7a7a08, #7a7a7a08);
  border: 0 solid #0000;
  border-radius: clamp(.25rem, .2rem + .1vw, .4rem);
  justify-content: center;
  align-items: center;
  padding: clamp(.5em, .5em + .15vw, 1.2em) clamp(1.5em, 1.4em + .2vw, 1.75em);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 2px 3px #0000001a, 0 1px 1px #0000001a, inset 0 0 0 1px #39cdc44d, inset 0 0 0 1px #ffffff1a;
}

.button-3:hover {
  color: #fff;
  background-color: #39cdc433;
  border-color: #0000;
  box-shadow: 0 3px 6px #0003, 0 1px 2px #0000001a, inset 0 0 0 1px #39cdc466, inset 0 0 0 1px #ffffff1a;
}

.button-3:active {
  background-color: #39cdc41a;
  box-shadow: 0 2px 3px #0000001a, 0 1px 1px #0000001a, inset 0 0 0 1px #39cdc44d, inset 0 0 0 1px #ffffff1a;
}

.button-3:focus {
  outline-offset: 2px;
  outline: 2px solid #39cdc4;
}

.button-3.cta-button {
  background-color: #39cdc4;
  background-image: linear-gradient(#39cdc4, #0000), linear-gradient(#ffffff1a, #0000), linear-gradient(#7a7a7a08, #7a7a7a08);
}

.button-3.cta-button:hover {
  background-color: #1f88c233;
}

.button-3.cta-button.view-files-button {
  display: none;
}

.text-centered {
  text-align: center;
  flex: 1;
}

@media screen and (min-width: 1920px) {
  .section.dashboard-section {
    align-items: center;
  }

  .dashboard-wrapper {
    width: 100%;
    max-width: 1400px;
  }
}

@media screen and (max-width: 991px) {
  h1, h2, h3 {
    --text-grey: #616161;
    --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;
  }

  .primary-button.authentication-button {
    padding: 16px 24px;
  }

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

  .authentication-card {
    padding: 30px;
  }

  .login-top-wrap, .sign-in-single-field-wrap.flex {
    margin-bottom: 30px;
  }

  .form-field-label {
    margin-bottom: 10px;
  }

  .upload-card {
    padding: 30px;
  }

  .upload-top-wrap {
    margin-bottom: 30px;
  }

  .file-action-button-2.pay-bill-button, .file-action-button-2.download-button {
    font-size: 1rem;
  }

  .profile-form-grid {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
  }

  .file-card-meta {
    font-size: .8rem;
  }

  .profile-img-wrapper {
    width: 125px;
    height: 125px;
  }

  .file-item-card {
    justify-content: flex-start;
    height: 16rem;
    min-height: 16rem;
    max-height: 16rem;
  }

  .card-body {
    padding: clamp(2rem, 1.6rem + .8vw, 2.5rem);
  }

  .profile_button-div {
    align-items: flex-start;
  }

  .file-thumbnail-icon {
    width: 8rem;
    max-width: 8rem;
    height: 8rem;
    max-height: 8rem;
  }

  .file-list-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .message-text {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .file-card-name {
    padding-left: 0;
    padding-right: 0;
    font-size: .7rem;
    line-height: 1.3;
  }

  .file-card-details {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .message-text-2 {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  h1, h2, h3 {
    --text-grey: #616161;
    --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%;
  }

  .primary-button.authentication-button {
    padding-top: 14px;
    padding-bottom: 14px;
    font-weight: 400;
  }

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

  .authentication-content {
    max-width: 420px;
  }

  .authentication-card {
    border-radius: 15px;
    padding: 25px;
  }

  .login-top-wrap {
    margin-bottom: 20px;
  }

  .authentication-logo-wrap {
    margin-bottom: 16px;
  }

  .sign-in-single-fields {
    grid-row-gap: 15px;
  }

  .sign-in-single-field-wrap.flex {
    margin-bottom: 24px;
  }

  .form-field {
    padding-left: 15px;
    padding-right: 15px;
  }

  .upload-card-wrapper {
    max-width: 420px;
  }

  .upload-card {
    border-radius: 15px;
    padding: 25px;
  }

  .upload-top-wrap {
    margin-bottom: 20px;
  }

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

  .profile-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dashboard-tab-content {
    width: 100%;
    padding-top: 10px;
    position: relative;
  }

  .dashboard-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .card-body {
    padding: clamp(1.5rem, 1.2rem + .6vw, 1.75rem);
  }

  .dashboard-menu-heading {
    border-right-style: none;
    width: 100%;
  }

  .file-list-grid {
    grid-column-gap: 2.6rem;
    grid-row-gap: 2.6rem;
  }

  .profile_img-div {
    justify-content: space-around;
  }

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

  .dashboard-tab-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-bottom: 1px solid #efefff;
    border-right-style: none;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
  }
}

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

  .primary-button.authentication-button {
    padding-top: 13px;
    padding-bottom: 13px;
  }

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

  .authentication-card {
    border-radius: 10px;
    padding: 20px 15px;
  }

  .authentication-logo-wrap {
    margin-bottom: 15px;
  }

  .authentication-title {
    margin-bottom: 8px;
  }

  .sign-in-single-fields {
    grid-row-gap: 10px;
    margin-bottom: 15px;
  }

  .sign-in-single-field-wrap.flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    margin-bottom: 20px;
  }

  .form-field-label {
    margin-bottom: 8px;
  }

  .upload-card {
    border-radius: 10px;
    padding: 20px 15px;
  }

  .paragraph {
    text-align: left;
    width: 100%;
    font-size: 12px;
    line-height: 18px;
  }

  .chat-messages-wrapper {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .save-button-wrapper {
    flex-flow: row;
  }

  .card-body {
    padding: clamp(1.5rem, 1.2rem + .6vw, 1.75rem);
  }

  .delete-button-wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    display: flex;
  }

  .profile_button-div {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .button {
    white-space: nowrap;
  }

  .file-list-grid {
    grid-template-columns: 1fr;
  }

  .profile_img-div {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .chat-container {
    width: 100%;
    min-height: 80vh;
    padding-left: 0;
    padding-right: 0;
  }

  .message-text {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .chat-message-item-wrapper.sent, .chat-message-item-wrapper.received {
    max-width: 90%;
  }

  .message-text-2 {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .heading-2 {
    text-align: left;
    font-size: 23px;
    line-height: 29px;
  }

  .heading-2.centered {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.9rem;
  }

  .form-divider {
    width: 100%;
  }

  .button-2, .button-3 {
    white-space: nowrap;
  }
}

#w-node-d9b8b212-4ffa-1582-7b11-b97b81792edc-0af9f5d4 {
  justify-self: center;
}

#w-node-_676f6ee4-cb11-01d4-254f-e157cdd8cf30-0af9f5d4 {
  align-self: center;
}

#w-node-fc43d829-9125-ddf9-21f1-ba7e84929759-0af9f5d4 {
  justify-self: center;
}

#w-node-fc43d829-9125-ddf9-21f1-ba7e8492975a-0af9f5d4 {
  align-self: end;
}

#w-node-_8816cc9d-44c7-3cfc-3863-345b46e851d9-0af9f5d4 {
  justify-self: center;
}

#w-node-_8816cc9d-44c7-3cfc-3863-345b46e851da-0af9f5d4 {
  align-self: center;
}

#w-node-b2a5f59b-7b80-0bb9-f352-65c8bc183c9e-0af9f5d4 {
  justify-self: center;
}

#w-node-b2a5f59b-7b80-0bb9-f352-65c8bc183c9f-0af9f5d4 {
  align-self: center;
}

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

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

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

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

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

#w-node-_215a92ac-a177-8760-bb18-793e909a0a14-0af9f5d4 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: stretch;
}

#w-node-_793e45a0-5bcf-d10d-22a4-2223015d9e68-0af9f5d4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-affb7601-f392-47d0-cc73-a3adbd65716e-0af9f5d4, #w-node-f91c43af-826e-6c59-c88c-d01a64b7bfde-0af9f5d4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_1856796b-ccb9-cc22-9a4f-2786a5b598d5-0af9f5d4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_67c24692-f60e-729a-a6ee-a06fe6739cf2-0af9f5d4 {
  grid-area: 1 / 7 / 2 / 11;
  align-self: center;
}

#w-node-eac13a9f-cf04-20a4-d0a2-65d038274808-0af9f5d4 {
  grid-area: 1 / 7 / 2 / 11;
}

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

#w-node-be0bde0c-7c99-9d64-e7be-4c96ecfb2794-0af9f5d6, #w-node-be0bde0c-7c99-9d64-e7be-4c96ecfb2799-0af9f5d6, #w-node-be0bde0c-7c99-9d64-e7be-4c96ecfb279e-0af9f5d6, #w-node-be0bde0c-7c99-9d64-e7be-4c96ecfb27a3-0af9f5d6, #w-node-be0bde0c-7c99-9d64-e7be-4c96ecfb27a8-0af9f5d6, #w-node-be0bde0c-7c99-9d64-e7be-4c96ecfb27ad-0af9f5d6, #w-node-e7c18b2a-81f2-7c11-b0c4-1e138cc8a0ef-0af9f5d6, #w-node-_3bcae5eb-b82f-3b3b-f784-37113ff0ecdb-0af9f5d6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2e04a68-939b-fce5-a131-ecafe98eddd4-014bb7f4, #w-node-e2e04a68-939b-fce5-a131-ecafe98eddd8-014bb7f4, #w-node-e2e04a68-939b-fce5-a131-ecafe98edddc-014bb7f4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_215a92ac-a177-8760-bb18-793e909a0a14-0af9f5d4 {
    grid-area: 1 / 1 / 2 / 5;
    align-self: stretch;
  }

  #w-node-_67c24692-f60e-729a-a6ee-a06fe6739cf2-0af9f5d4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-eac13a9f-cf04-20a4-d0a2-65d038274808-0af9f5d4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #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-0af9f5d4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

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

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

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

@media screen and (max-width: 479px) {
  #w-node-_95d4001f-6154-266d-0f3e-438b9f1f7533-0af9f5d4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_793e45a0-5bcf-d10d-22a4-2223015d9e68-0af9f5d4, #w-node-affb7601-f392-47d0-cc73-a3adbd65716e-0af9f5d4, #w-node-f91c43af-826e-6c59-c88c-d01a64b7bfde-0af9f5d4, #w-node-_1856796b-ccb9-cc22-9a4f-2786a5b598d5-0af9f5d4 {
    grid-column: span 1 / span 1;
  }

  #w-node-e2e04a68-939b-fce5-a131-ecafe98eddcc-014bb7f4, #w-node-e2e04a68-939b-fce5-a131-ecafe98eddd0-014bb7f4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


