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

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

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

:root {
  --royal-blue: #0171e3;
  --medium-sea-green: #10b981;
  --border: #e7e7e7;
  --logo-black: #323232;
  --white: white;
  --black: black;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

@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 {
  color: #212121;
  margin-top: 67px;
  font-family: Muli, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

h1 {
  text-align: center;
  letter-spacing: 0;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  background-image: linear-gradient(90deg, #00a2ff, var(--royal-blue));
  color: #393531;
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 40px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.5;
}

h3 {
  color: var(--medium-sea-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

p {
  text-align: left;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
}

a {
  opacity: 1;
  color: #00a2ff;
  font-style: normal;
  text-decoration: none;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

strong {
  font-weight: bold;
}

blockquote {
  color: #797571;
  border-left: 6px solid #d9d5d1;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 0;
  padding: 0 20px;
  font-family: Muli, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

figure {
  margin-top: 40px;
  margin-bottom: 60px;
}

figcaption {
  margin-top: 5px;
}

.hero-section {
  cursor: auto;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-section.hero {
  text-align: center;
  cursor: auto;
  justify-content: center;
  align-items: center;
  display: block;
}

.grid-3-columns {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.card-description {
  color: #494541;
  margin-bottom: 60px;
  line-height: 1.5;
}

.bg-dark {
  color: #fff;
  background-color: #23286b;
}

.container-flex {
  align-items: center;
  display: flex;
}

.container-flex.wide {
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.primary-button {
  background-color: var(--royal-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  border: 2px solid #00a2ff;
  border-radius: 10px;
  margin-top: 8px;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .2s;
}

.primary-button:hover {
  color: #00a2ff;
  background-color: #fff;
}

.featured-text {
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
}

.footer-menu {
  text-align: left;
  justify-content: space-between;
  margin-bottom: 52px;
  display: flex;
}

.footer-link {
  color: #393531;
  margin-bottom: 10px;
  font-size: .9em;
  display: block;
}

.footer-link.primary-button-in-footer {
  color: var(--royal-blue);
  border: 1px #000;
  font-size: 1.33em;
}

.footer-link.primary-button-in-footer:hover {
  color: var(--royal-blue);
  background-color: #fff;
}

.navbar {
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-color: #323232;
  background-clip: border-box;
  padding-top: 16px;
  padding-bottom: 16px;
  position: static;
}

.nav-link {
  text-transform: none;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: none;
}

.nav-link:hover {
  color: #00a2ff;
}

.nav-link.w--current {
  color: #00a2ff;
  display: none;
}

.nav-link.mobileonly {
  color: var(--royal-blue);
  display: none;
}

.brand {
  color: #23286b;
  order: -1;
  font-size: 1.2em;
  font-weight: 700;
}

.nav-menu {
  order: 1;
}

.feature-link {
  color: #00a2ff;
  text-align: left;
  letter-spacing: .02em;
  text-transform: none;
  border: 0 #000;
  border-bottom: 2px solid #0000;
  margin-top: 10px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.feature-link:hover {
  color: #1372ff;
  border: 0 solid #000;
  border-bottom: 2px solid #00a2ff;
}

.footer-brand {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-brand.w--current {
  align-items: center;
}

.cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta.bg-dark {
  background-color: var(--royal-blue);
  cursor: pointer;
  border: 0 solid #000;
}

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

.subfooter {
  text-align: center;
  font-size: .8em;
}

.div-block {
  width: 80px;
  height: 1px;
}

.heading {
  color: #393531;
  line-height: 1.2;
  text-decoration: none;
}

.navbar-2 {
  z-index: 999;
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #ffffffe6;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

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

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

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

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

.case-study-series-heading {
  color: #00a2ff;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 700;
}

.cardicon {
  height: 64px;
}

.title {
  color: #999591;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-image {
  width: 206px;
  height: 44px;
  margin-top: 20px;
}

.text-block-2 {
  color: #acacac;
  text-align: left;
  padding: 10px 10px 40px;
  font-style: normal;
}

.text-block-2.legalease {
  color: #999591;
  border-top: 1px solid #acacac;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 12px;
}

.text-block-2.legalease:hover {
  color: #777;
}

.testimonial {
  border-left: 4px #00a2ff;
  font-size: 22px;
  display: block;
}

.testimonial.whitetext {
  color: #434343;
  text-align: left;
  padding: 10px 10px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.testimonialuser {
  text-align: center;
  border-radius: 40%;
  margin-left: 40px;
}

.testimonialuser.contrain {
  border: 1px #999591;
  border-radius: 100%;
  height: 150px;
  margin-top: -67px;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 0 6px 1px #d9d5d1;
}

.secondary-button {
  color: #00a2ff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #00a2ff;
  border-radius: 10px;
  margin-top: 8px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .2s;
}

.secondary-button:hover {
  color: #fff;
  background-color: #00a2ff;
  border-width: 2px;
  border-color: #fff;
}

.get-started-form {
  background-color: var(--royal-blue);
  padding: 100px 40px 40px;
}

.small-text {
  opacity: .31;
  color: #fff;
}

.contact-form-flex {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.field-label {
  color: #eee;
  padding-left: 10px;
  font-weight: 400;
}

.getstartedtext {
  border-radius: 16px;
  padding: 10px 16px;
}

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

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

.product-container {
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
}

.gradient-text {
  background-image: linear-gradient(to right, #00a2ff, var(--royal-blue) 38%, var(--royal-blue));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  padding: 100px 10px 20px;
  font-size: 26px;
}

.formwide {
  min-width: 400px;
}

.arrow-down {
  width: 64px;
  padding-bottom: 10px;
}

.arrow-down-container {
  margin-bottom: 40px;
}

.finance-top-section {
  cursor: auto;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.finance-top-section.bg-dark {
  background-color: #212121;
  flex-direction: row;
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}

.footersection {
  cursor: auto;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.footersection.footer {
  padding-bottom: 60px;
}

.notreadycontainer {
  margin-bottom: 40px;
}

.whiteboxheading {
  color: #fff;
  letter-spacing: .02em;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-bottom: 10px;
  font-size: 2.6em;
  font-weight: 600;
}

.formbigheading {
  color: #fff;
  letter-spacing: .02em;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.5;
}

.headng-cont {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.4;
}

.image-6 {
  height: 40px;
}

.image-7 {
  padding-left: 10%;
  padding-right: 10%;
}

.html-embed-home {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  transform: none;
}

.formwide-honey-pot {
  min-width: 400px;
  display: none;
}

.democontainer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: scale(.9);
}

.demo-section {
  margin-top: 40px;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-heading {
  color: var(--royal-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-span {
  color: var(--royal-blue);
}

.usecases {
  text-align: left;
  padding-top: 60px;
  display: block;
}

.use-case-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 150px;
  display: flex;
}

.use-case-container.hidden-class {
  display: block;
}

.use-case-logo {
  text-align: left;
  max-width: 300px;
  max-height: 100px;
  margin-bottom: 60px;
}

.explain-bar-links {
  text-align: center;
  margin-top: 40px;
  line-height: 1.9;
}

.use-case-links {
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 19px;
}

.use-case-links:hover {
  text-decoration: underline;
}

.container-6 {
  text-align: center;
}

.use-case-link-heading {
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 10px;
  font-size: 2em;
  line-height: 1.4;
}

.text-block-4 {
  display: inline-block;
}

.container-7 {
  text-align: center;
}

.testmonials-main {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
}

.column {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.read-more-customer-stories {
  color: #00a2ff;
  margin-top: 10px;
}

.whitetext {
  text-align: center;
  margin-bottom: 20px;
}

.dropdown-toggle {
  margin-top: -16px;
}

.dropdown-toggle.nav-link {
  margin-top: -18px;
}

.dropdown-toggle.nav-link.desktop-use-cases-menu-link {
  margin-top: 0;
  font-family: Muli, sans-serif;
  display: inline-block;
}

.dropdown-toggle.nav-link.desktop-use-cases-menu-link:hover {
  color: #10b981;
}

.dropdown-toggle.nav-link.desktop-use-cases-menu-link {
  margin-top: 0;
  display: inline-block;
}

.dd-list.w--open {
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 4px;
  display: flex;
  box-shadow: 1px 1px 5px 3px #ddd;
}

.techstars {
  width: 206px;
  height: 44px;
  margin-top: 40px;
}

.additional-use-cases-section {
  cursor: auto;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.additional-use-cases-section.bg-dark {
  background-color: #00a2ff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.common-features {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 2;
}

.down-chevron {
  font-size: 23px;
}

.column-2 {
  text-align: left;
}

.text-demo-number {
  color: #00a2ff;
  font-size: 20px;
}

.scroll-to-demo-standalone {
  color: #00a2ff;
  font-size: 18px;
  font-weight: 700;
}

.html-embed-case-study {
  text-align: center;
  margin-bottom: -100px;
}

.container-8 {
  text-align: center;
  margin-bottom: 40px;
}

.paragraph-3 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 15px;
}

.case-study-para {
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.case-study-para.infotext {
  color: #00a2ff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.case-study-subheading {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.7;
}

.link-2 {
  color: #00a2ff;
}

.subcopy {
  color: #494541;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.text-span-2 {
  color: #999;
}

.bold-explain {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 24px;
  line-height: 1.5;
}

.card-desc2 {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.heading-sales {
  color: #00a2ff;
  text-align: left;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.imageinfooter {
  max-width: 200px;
  margin-top: 40px;
}

.letstalkemail {
  border: 2px solid #00a2ff;
  border-radius: 16px 0 0 16px;
  height: 48px;
  margin-top: 19px;
}

.combotextbutton {
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  border-radius: 0 16px 16px 0;
  min-width: 140px;
  height: 48px;
  margin-top: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .2s;
  display: inline;
}

.combotextbutton:hover {
  color: #fff;
  background-color: #00a2ff;
}

.letstalkemailsubmitform {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: -19px;
  display: flex;
}

.contact-form-flex-letstalk {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-3 {
  color: #00a2ff;
  font-size: 26px;
}

.xfinityimage {
  width: 100%;
}

.xfinitydiv {
  text-align: center;
  background-color: #f3f4f6;
  max-width: 800px;
}

.html-embed-home-xfinity {
  text-align: center;
  transform: scale(.9);
}

.business-value-review {
  text-align: center;
  flex: 1;
}

.text-span-5 {
  color: #00a2ff;
  font-size: 25px;
}

.pab-link-container {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.menu-item-subheading {
  color: #799591;
  font-size: 16px;
  line-height: 1.5;
  display: block;
}

.menu-item-container {
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 16px;
  padding-top: 10px;
  line-height: 1.5;
  display: block;
}

.menu-item-heading {
  color: #292521;
  font-size: 19px;
}

.menu-item-heading:hover {
  color: var(--royal-blue);
}

.solutions-grid {
  grid-template-rows: auto 1fr;
  grid-template-columns: 50% repeat(auto-fit, 50%);
  grid-auto-rows: auto;
  grid-auto-columns: .25fr;
  grid-auto-flow: row;
  align-content: stretch;
  width: 452px;
  margin-left: 0;
  padding: 10px 10px 10px 20px;
  display: block;
}

.product-menu {
  grid-template-columns: 300px 300px;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: stretch;
  width: 420px;
  padding: 10px 10px 10px 20px;
  display: block;
}

.customers-section {
  text-align: center;
  background-color: #fff;
  margin-top: 100px;
  padding: 0 20px 10px;
  transition: opacity .475s;
}

.product-card {
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-block;
}

.product-card-title {
  letter-spacing: -.02em;
  white-space: normal;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(150deg, #00a2ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 400;
}

.gradient-heading {
  font-size: 36px;
}

.gradient-heading.gradient-text {
  text-align: center;
}

.faq-heading {
  color: #595551;
  padding-top: 80px;
  font-size: 20px;
  font-weight: 700;
}

.faq-text {
  color: #393531;
  text-align: left;
  font-size: 16px;
}

.demo-button {
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  background-image: linear-gradient(to right, #00a2ff, purple 50%, orange);
  border-radius: 10px;
  margin-top: 10px;
  padding: 20px 40px;
  display: inline-block;
}

.demo-para {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
}

.demo-para.less-verticalheight {
  color: #696561;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.solutions-menu-header {
  color: #797571;
  text-align: left;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.product-list-container {
  padding-top: 40px;
}

.customer-list {
  color: #aaa;
  text-align: center;
  text-transform: uppercase;
  margin-top: 40px;
  font-size: 16px;
}

.visualization-subheading {
  padding-top: 40px;
  font-size: 16px;
}

.visualization {
  max-height: 625px;
}

.visualization-container {
  text-align: center;
  background-color: #f9f5f1;
  border-radius: 12px;
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial-author {
  color: #999591;
  text-align: center;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.image-margin {
  padding: 10px 10px 20px;
}

.blog-post-list-header {
  color: #090501;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-left: 20px;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.3;
}

.blog-post-collection-item {
  align-items: flex-start;
  display: flex;
}

.blog-image-thumb {
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 6px 17px 7px #99959180;
}

.blog-image-thumb.no-shadow {
  box-shadow: none;
}

.blog-image-thumb._50-border {
  border-radius: 50%;
}

.blog-image-thumb.jasons-adjust {
  border-radius: 50%;
  padding-bottom: 2%;
  padding-right: 2%;
}

.blog-image-thumb.soc2 {
  border-radius: 50%;
  padding: 10px;
}

.blog-image-thumb.paddedimage {
  padding: 20px;
}

.blog-image-thumb.paddedimage.margintop {
  margin-top: 40px;
}

.blog-post-summary {
  color: #494541;
  margin-left: 20px;
  font-size: 18px;
}

.blog-post-main-image {
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph-4 {
  font-size: 27px;
}

.image-13 {
  border-radius: 50%;
  max-width: 200px;
}

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

.blog-post-main-image-copy {
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.break-side-by-side {
  margin-top: 40px;
  margin-bottom: 0;
}

.h1-gradient-centered {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 50px;
  line-height: 1.2em;
  display: inline-block;
}

.image-14 {
  width: 120px;
  margin-top: 10px;
  display: inline-block;
}

.subcopy-copy {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.bold-text-4 {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.main-testimonial-person {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}

.landing-demo {
  cursor: pointer;
  border-style: none solid;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 20px 36px;
}

.landing-demo:hover {
  color: #00a2ff;
  background-color: #fff;
}

.gradient-h2-heading-main {
  background-image: linear-gradient(to right, var(--royal-blue), #f016ab 54%, orange);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
}

.gradient-h2-heading-main.padded-for-scrollto {
  padding-top: 100px;
}

.gradient-h2-heading-main.padded {
  padding-top: 40px;
  padding-bottom: 20px;
}

.primarycta {
  color: #fff;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  border: 4px solid #fff;
  border-radius: 10px;
  margin: 10px 10px 40px;
  padding: 10px 40px;
  display: inline-block;
}

.testmonials-landing {
  background-color: #f9f5f1;
  border-radius: 12px;
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.testimonial-landing {
  color: #434343;
  text-align: left;
  border-left: 4px #00a2ff;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 24px;
  display: block;
}

.container-10 {
  text-align: center;
}

.container-11 {
  margin-bottom: 100px;
}

.text-span-8 {
  text-transform: uppercase;
}

.container-12 {
  margin-top: 60px;
}

.container-10-copy {
  text-align: center;
  margin-top: 60px;
}

.text-span-10, .text-span-11 {
  font-weight: 700;
}

.more-customer-stories {
  color: #00a2ff;
  font-size: 26px;
}

.more-customer-stories:hover {
  color: #434343;
}

.gradient-h2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  padding-top: 60px;
  padding-bottom: 0;
  font-size: 31px;
  font-weight: 700;
  display: inline-block;
}

.image-17, .rte-article {
  margin-bottom: 40px;
}

.rte-article p {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
}

.rte-article strong {
  color: #434343;
  font-weight: 700;
}

.rte-article h2 {
  color: #545454;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.rte-article blockquote {
  color: #00a2ff;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.5em;
}

.rte-article img {
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.rte-article h3 {
  color: #666;
  margin-top: 40px;
}

.rte-article figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article li {
  padding-top: 20px;
}

.rte-article h4 {
  color: #fc427a;
  font-size: 19px;
}

.rte-article h6 {
  color: #999591;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.columns {
  margin-bottom: 40px;
  padding-top: 100px;
  display: flex;
}

.column-6 {
  align-items: center;
  display: flex;
}

.author {
  font-size: 20px;
}

.home-testimonial-column {
  text-align: center;
  margin-top: 67px;
  margin-bottom: 10px;
  display: block;
}

.testimonial-text {
  text-align: center;
  height: 200px;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-logo {
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.testimonial-div {
  text-align: center;
  background-color: #f9f5f1;
  border-radius: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.testimonial-and-author-div {
  height: 300px;
}

.short-testimonials {
  margin-top: 0;
  margin-bottom: 60px;
}

.text-span-19 {
  font-size: 14px;
}

.richfaq p {
  font-size: 16px;
}

.richfaq li {
  font-size: 16px;
  line-height: 1.8;
}

.boxed-image {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
  padding: 20px;
}

.image-600max {
  max-width: 600px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.blog-author {
  text-align: center;
  margin-top: 10px;
}

.more-articles {
  text-align: center;
}

.div-block-5 {
  width: 400px;
  height: 400px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

.div-block-6 {
  z-index: 1;
  display: block;
  position: relative;
  top: 220px;
  left: 0;
}

.div-block-7 {
  display: inline-block;
}

.pab-container {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
}

.pab-listbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  padding: 0;
  list-style-type: none;
  display: grid;
}

.pab-listitem {
  text-align: center;
  background-color: #f9f5f1;
  border-radius: 10px;
  min-height: 300px;
  margin: 0;
}

.pab-image {
  border: 1px solid #c9c5c1;
  border-radius: 40%;
  height: 175px;
  margin-top: 40px;
}

.pab-name {
  color: #494541;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 700;
}

.about-detail {
  color: #595551;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
}

.pab-company {
  color: #696561;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 700;
}

.top-lottie {
  padding-left: 220px;
  padding-right: 220px;
}

.rich-text-block {
  text-align: left;
  margin-top: 20px;
  font-size: 16px;
}

.gradient-h3-heading-main {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 36px;
  font-weight: 700;
}

.pab-link-block {
  width: 100%;
}

.text-block-10 {
  font-size: 15px;
}

.text-block-11 {
  margin-bottom: 100px;
}

.top-tweet {
  margin-top: 40px;
  padding-left: 180px;
  padding-right: 180px;
}

.black-h2 {
  color: #393531;
  text-transform: capitalize;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 39px;
  line-height: 140%;
}

.black-h2.topmargin {
  margin-top: 140px;
}

.about-w {
  width: 179px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.pab-h {
  height: 64px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.pab-w2 {
  width: 180px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.div-block-9 {
  text-align: center;
  margin-top: 100px;
}

.job-listing-div {
  padding-top: 100px;
}

.text-block-13 {
  color: #494541;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

.gradient-h2-blue {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(111deg, #758edd, #3549a4 69%, #223493 90%, #2d45c0);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 53px;
  font-weight: 700;
}

.top-lottie-bigger {
  padding-left: 140px;
  padding-right: 140px;
}

.picture-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.meet {
  background-color: #fff;
  padding: 0 20px 10px;
  transition: opacity .475s;
}

.mobile-demo-container {
  text-align: center;
  display: none;
}

.mobile-whitetext {
  text-align: center;
  margin-bottom: 20px;
  display: none;
}

.text-block-14 {
  padding-top: 20px;
  padding-bottom: 10px;
}

.rte-about {
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px;
}

.rte-about p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.rte-about strong {
  color: #434343;
  font-weight: 700;
}

.rte-about h2 {
  color: #595551;
  margin-top: 40px;
  font-size: 1.6em;
  font-weight: 400;
}

.rte-about blockquote {
  color: #666;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 20px;
  padding-left: 10px;
  font-size: 21px;
  line-height: 1.5em;
}

.rte-about img {
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.rte-about h3 {
  color: #797571;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 400;
}

.rte-about figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-about li {
  padding-top: 20px;
  font-size: 16px;
}

.rte-about h4 {
  color: #fc427a;
  font-size: 19px;
}

.homegridl {
  grid-column-gap: 22px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 100px;
  margin-bottom: 140px;
  padding-bottom: 10px;
  transition: opacity .2s;
  display: grid;
}

.homegridr {
  grid-column-gap: 22px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 100px;
  margin-bottom: 140px;
  padding-bottom: 10px;
  transition: opacity .2s;
  display: grid;
}

.h2-main-grad {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
}

.resources-grid {
  grid-template-rows: auto auto auto;
  grid-template-columns: 100%;
  grid-auto-rows: auto;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  align-content: stretch;
  width: 400px;
  padding: 10px 10px 10px 20px;
  display: block;
}

.nav-login {
  text-transform: none;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.nav-login:hover {
  color: #00a2ff;
}

.nav-login.w--current {
  color: #00a2ff;
  display: none;
}

.text-block-16 {
  text-align: center;
  margin-top: 20px;
}

.heading-for-meeting {
  color: #00a2ff;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  padding-left: 140px;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.text-span-21 {
  font-size: 18px;
}

.subcopy5 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
}

.about-container {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
}

.about-li {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  min-height: 208px;
  margin: 0;
}

.about-link-block-copy {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.about-name-h {
  color: #494541;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 700;
}

.about-comp {
  color: #696561;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 700;
}

.about-listbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f9f5f1;
  border-radius: 10px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: stretch stretch;
  width: 100%;
  padding: 10px;
  list-style-type: none;
  display: grid;
}

.about-w2 {
  height: 88px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.section-13 {
  background-color: #f9f5f1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-w-3 {
  color: #797571;
  width: 120px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 32px;
  display: inline-block;
}

.about-comp-additional {
  color: #696561;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 700;
}

.about-li-ins {
  text-align: center;
  background-color: #fff;
  border-top: 12px solid #d9d5d1;
  border-radius: 10px;
  min-height: 208px;
  margin: 0;
}

.about-li-ins.second-row-ii {
  margin-bottom: 40px;
}

.subcopy-about {
  color: #494541;
  text-align: left;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.gradient-h3-low-top-margin {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 36px;
  font-weight: 700;
}

.about-li-short {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  margin: 0;
}

.pricingcontainer {
  text-align: center;
  background-color: #f9f5f1;
  border-radius: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 400px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  box-shadow: 0 0 12px #d9d5d1;
}

.pricingcontainer.enterprise {
  background-image: url('../images/enterprise.svg');
  background-position: 0 45px;
  background-repeat: repeat-x;
  background-size: contain;
}

.tier {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 26px;
  font-weight: 700;
}

.main-subcopy {
  color: #393531;
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.quote {
  color: #393531;
}

.h2-gradient {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.bold-text-5 {
  font-size: 24px;
}

.text-span-23 {
  font-weight: 700;
}

.rte-article-nrr {
  margin-bottom: 40px;
}

.rte-article-nrr p {
  text-align: left;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
}

.rte-article-nrr strong {
  color: #434343;
  font-weight: 700;
}

.rte-article-nrr h2 {
  color: #00a2ff;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 140px;
}

.rte-article-nrr blockquote {
  color: #999591;
  text-align: left;
  border-left: 3px solid #00a2ff;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.6em;
}

.rte-article-nrr img {
  border-radius: 10px;
}

.rte-article-nrr h3 {
  color: #00a2ff;
  margin-top: 0;
  padding-top: 60px;
}

.rte-article-nrr figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-nrr li {
  padding-top: 20px;
}

.rte-article-nrr h4 {
  color: #999591;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 19px;
  font-weight: 400;
}

.section-16 {
  margin-top: 60px;
}

.text-block-21 {
  margin-top: 100px;
}

.text-block-22 {
  color: #999591;
  text-align: left;
}

.toc {
  background-color: #f9f5f1;
  border: 1px solid #e9e5e1;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
}

.ndr-image-header {
  max-width: 650px;
}

.gradient-h2-ndr {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #00a2ff, #f016ab 54%, orange);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 60px;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 55px;
  font-weight: 700;
}

.text-span-26 {
  color: #393531;
}

.article-link {
  margin-top: 60px;
  margin-bottom: 60px;
  display: inline-block;
}

.article-link.hidden {
  display: inline-block;
}

.link-5 {
  color: #fff;
}

.link-5.w--current {
  text-decoration: underline;
}

.text-block-23 {
  margin-top: 20px;
}

.rte-article-stren {
  margin-bottom: 40px;
}

.rte-article-stren p {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
}

.rte-article-stren strong {
  color: #434343;
  font-weight: 700;
}

.rte-article-stren h2 {
  color: #545454;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.rte-article-stren blockquote {
  color: #00a2ff;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.5em;
}

.rte-article-stren img {
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.rte-article-stren h3 {
  color: #666;
  margin-top: 40px;
}

.rte-article-stren figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-stren li {
  padding-top: 20px;
}

.rte-article-stren h4 {
  color: #fc427a;
  font-size: 19px;
}

.rte-article-stren h6 {
  color: #999591;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.rte-article-webinar {
  margin-bottom: 40px;
}

.rte-article-webinar p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 2;
}

.rte-article-webinar strong {
  color: #434343;
  font-weight: 700;
}

.rte-article-webinar h2 {
  color: #545454;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.rte-article-webinar blockquote {
  color: #00a2ff;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.5em;
}

.rte-article-webinar img {
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.rte-article-webinar h3 {
  color: #666;
  margin-top: 40px;
}

.rte-article-webinar figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-webinar li {
  padding-top: 20px;
}

.rte-article-webinar h4 {
  color: #191511;
  margin-top: 100px;
  font-size: 18px;
}

.rte-article-webinar h6 {
  color: #999591;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.image-25 {
  margin-top: 40px;
}

.text-block-24 {
  line-height: 1;
}

.image-header {
  max-width: 650px;
}

.rte-article-patent {
  margin-bottom: 40px;
}

.rte-article-patent p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.rte-article-patent strong {
  color: #434343;
  font-weight: 700;
}

.rte-article-patent h2 {
  color: #00a2ff;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 140px;
}

.rte-article-patent blockquote {
  color: #999591;
  text-align: left;
  border-left: 3px solid #00a2ff;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.6em;
}

.rte-article-patent img {
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 20px;
}

.rte-article-patent h3 {
  color: #00a2ff;
  margin-top: 0;
  padding-top: 60px;
}

.rte-article-patent figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-patent li {
  padding-top: 20px;
}

.rte-article-patent h4 {
  color: #999591;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 19px;
  font-weight: 400;
}

.container-25 {
  background-color: #f9f5f1;
  border-radius: 15px;
  margin-top: 60px;
  padding: 40px 220px;
}

.testimonial-logo-narrow {
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-12 {
  display: inline-block;
}

.video-section {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  padding: 40px 40px 0;
  display: flex;
}

.what-is-cast-lightbox-image {
  border-radius: 5px;
  width: 800px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0 0 4px 4px #39353145;
}

.job-bullet {
  margin-top: 20px;
  margin-bottom: 10px;
}

.link-7, .link-8 {
  text-decoration: underline;
}

.h2-main-grad-copy {
  background-image: linear-gradient(to right, #00a2ff, var(--royal-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.text-block-25 {
  text-align: left;
  margin-top: 40px;
}

.text-block-26 {
  font-size: 26px;
}

.video {
  border: 1px solid #c9c5c1;
  border-radius: 10px;
  width: 800px;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.mainrich {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.7;
}

.lightrich {
  color: #797571;
  text-align: left;
}

.text-block-27 {
  margin-top: 100px;
}

.h2-gradient-bold {
  padding-top: 20px;
  padding-bottom: 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.gradient-h2-podcast {
  padding-top: 20px;
  padding-bottom: 60px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
}

.rte-article-podcast {
  margin-bottom: 40px;
}

.rte-article-podcast p {
  text-align: left;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
}

.rte-article-podcast strong {
  color: #00a2ff;
  font-size: 18px;
  font-weight: 700;
}

.rte-article-podcast h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 140px;
}

.rte-article-podcast blockquote {
  color: #999591;
  text-align: left;
  border-left: 3px solid #00a2ff;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.6em;
}

.rte-article-podcast img {
  border-radius: 10px;
}

.rte-article-podcast h3 {
  color: #00a2ff;
  margin-top: 0;
  padding-top: 60px;
}

.rte-article-podcast figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-podcast li {
  padding-top: 20px;
}

.rte-article-podcast h4 {
  color: #999591;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 19px;
  font-weight: 400;
}

.marieimg {
  border-radius: 20px;
  max-width: 60%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.bold-text-6 {
  color: #797571;
  font-size: 18px;
  font-weight: 400;
}

.text-block-28 {
  color: #595551;
  margin-bottom: 100px;
}

.rte-article-marie {
  margin-bottom: 40px;
}

.rte-article-marie p {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 2;
}

.rte-article-marie strong {
  color: #00a2ff;
  font-size: 18px;
  font-weight: 700;
}

.rte-article-marie h2 {
  color: #00a2ff;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 140px;
}

.rte-article-marie blockquote {
  color: #999591;
  text-align: left;
  border-left: 3px solid #00a2ff;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.6em;
}

.rte-article-marie img {
  border-radius: 20px;
  min-width: 300px;
  max-width: 300px;
}

.rte-article-marie h3 {
  color: #00a2ff;
  margin-top: 0;
  padding-top: 60px;
}

.rte-article-marie figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-marie li {
  text-align: left;
  padding-top: 20px;
}

.rte-article-marie h4 {
  color: #999591;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 19px;
  font-weight: 400;
}

.bold-text-6-copy {
  color: #494541;
  font-size: 18px;
  font-weight: 700;
}

.marie2 {
  border-radius: 20px;
  max-width: 80%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.marie3 {
  border-radius: 20px;
  max-width: 80%;
  margin-bottom: 40px;
}

.hero-button-spacer {
  min-width: 30px;
  height: 100%;
}

.blog-summary {
  width: 100%;
  min-height: 100px;
  padding: 3% 8% 8%;
}

.purple-gradient-span {
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at 0 0, #7444b4, #7093e9);
  -webkit-background-clip: text;
  background-clip: text;
}

.testimonial-profile-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(150px, 150px) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-profile-wrapper.gapabove {
  margin-top: 10px;
}

.blog-highlight-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
  position: relative;
}

.product-section-scroll {
  background-image: linear-gradient(#292521, #292521);
  border-top: 1px solid #e7e7e7;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

.product-section-scroll.hero {
  height: 2500px;
  padding-top: 20vh;
}

.product-section-scroll.hero.book-demo {
  background-color: #292521;
  background-image: none;
  justify-content: center;
  height: auto;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 0;
}

.orange-gradient-span {
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at 0 0, #ea5e57, #f69e20);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.paragraph-wrapper {
  text-align: center;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.client-brands-text {
  z-index: 2;
  color: #393531;
  text-align: center;
  margin-top: 100px;
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.3em;
}

.testimonial-quote {
  color: #494541;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
}

.profile-role-company-text {
  color: #6d6d6d;
  text-align: left;
  font-size: 16px;
}

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

.green-gradient-span {
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at 0 0, #0c8693, #88d2a9);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-header-container {
  width: 90%;
  max-width: 1300px;
  margin-bottom: 20px;
}

.product-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.product-text-wrapper.bg-dark {
  background-color: #292521;
}

.product-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 3vh;
  padding-bottom: 3vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-section.less-verticalheight {
  padding-top: 0;
  padding-bottom: 0;
}

.product-section.dark {
  color: #fff;
  background-color: #292521;
}

.hero-paragraph {
  color: #585858;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Muli, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3em;
  display: block;
}

.hero-paragraph.left-aligned {
  color: #595551;
  text-align: left;
  line-height: 1.4em;
  display: inline-block;
}

.product-container-2 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template: "."
  / 1fr minmax(60%, 600px);
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1300px;
  margin-top: 60px;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.home-container-100 {
  text-align: center;
  border-radius: 25px;
  justify-content: center;
  align-items: flex-start;
  margin-left: 60px;
  margin-right: 60px;
  padding: 10px;
  line-height: 1.6;
}

.testimonial-section {
  background-image: linear-gradient(#fff, #fff);
  border-top: 1px solid #e7e7e7;
  justify-content: center;
  align-items: center;
  display: block;
}

.h3-header {
  color: #414141;
  text-align: center;
  margin-top: 10px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
}

.hero-section-sd {
  background-image: linear-gradient(#fffffff2, #fffffff2), url('../images/dots-grid.svg');
  background-position: 0 0, 50%;
  background-size: auto, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.product-text-wrapper-inner {
  text-align: center;
  max-width: 1000px;
  margin-bottom: 20px;
  display: block;
}

.cta-container {
  text-align: center;
  width: 90%;
  max-width: 1300px;
}

.subheader-logo-container {
  align-items: stretch;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.blog-card-text {
  font-size: 20px;
  line-height: 1.4em;
}

.button-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.blog-card-image {
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.html-embed-home-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  transform: scale(.9);
}

.html-embed-home-2.desktop {
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  transform: none;
}

.html-embed-home-2.mobile {
  display: flex;
}

.html-embed-home-2.mobile-on-home {
  display: none;
}

.hero-button-wrappers {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}

.hero-button-wrappers.left-aligned {
  justify-content: flex-start;
}

.scroll-headline-container {
  z-index: 1;
  margin-bottom: 50px;
  position: sticky;
  top: 10vh;
}

.scroll-headline-container.non-stick-footer {
  position: relative;
  top: auto;
}

.scroll-headline-container.landing-page {
  border-left-width: 1px;
  border-left-color: #ffffff80;
  width: 80vw;
  max-width: 1155px;
  top: 20vh;
}

.scroll-headline-container.landing-page.book-a-demo {
  position: relative;
  top: 0;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  padding: 8%;
  display: flex;
  box-shadow: 0 18px 40px -10px #00000026;
}

.testimonial-card.hidethis, .testimonial-card.desktop {
  display: none;
}

.blog-container-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 90%;
  max-width: 1300px;
  margin-top: 20px;
}

.hero-paragraph-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: block;
}

.profile-name-text {
  color: #5c5c5c;
  text-align: left;
  font-size: 16px;
}

.primary-button-2 {
  z-index: 2;
  color: #fff;
  background-color: #10b981;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  transition: all .3s;
  position: relative;
  top: 0;
  box-shadow: 0 18px 40px -11px #10b981;
}

.primary-button-2:hover {
  background-color: #098f62;
  top: -2.5px;
  box-shadow: 0 18px 40px -11px #10b981;
}

.primary-button-2.secondary {
  border: 0px solid var(--royal-blue);
  box-shadow: none;
  color: var(--royal-blue);
  background-color: #0171e300;
}

.primary-button-2.secondary:hover {
  background-color: var(--royal-blue);
  color: #fff;
  border-color: #0171e200;
}

.primary-button-2.secondary.white {
  color: #fff;
  border-color: #fff;
}

.primary-button-2.secondary.white:hover {
  color: #0171e3;
  background-color: #fff;
}

.primary-button-2.fit-button {
  display: inline-block;
}

.profile-text-wrapper {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.hero-client-logo-wrapper {
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 20px;
  display: block;
}

.profile-image {
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  box-shadow: 1px 1px 30px 5px #00000026;
}

.client-brands-text-wrapper {
  position: relative;
}

.blog-card {
  z-index: 1;
  color: #414141;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 500px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
  position: relative;
  top: 0;
  overflow: hidden;
  box-shadow: 13px 13px 40px -10px #00000026;
}

.blog-card:hover {
  z-index: 2;
  border-color: #0171e3;
  top: -5px;
  box-shadow: 13px 13px 40px -10px #0003;
}

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

.primary-nav-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  background-color: #10b981;
  border-radius: 13px;
  margin-top: 0;
  padding: 12px 30px;
  font-family: Muli, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  transition: all .2s;
  position: relative;
  top: 0;
  box-shadow: 1px 1px 30px #0000;
}

.primary-nav-button:hover {
  background-color: #098f62;
  top: 0;
  box-shadow: 0 5px 30px -5px #10b981;
}

.primary-nav-button.bottommargin {
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  display: inline-flex;
}

.nav-login-2 {
  text-transform: none;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.nav-login-2:hover {
  color: #10b981;
}

.nav-login-2.w--current {
  color: #00a2ff;
  display: none;
}

.nav-menu-2 {
  order: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacer {
  min-width: 10px;
  height: 100%;
  min-height: 60px;
}

.brand-2 {
  color: #23286b;
  order: -1;
  font-size: 1.2em;
  font-weight: 700;
}

.nav-logo-image {
  height: 40px;
}

.hero-paragraph-2 {
  color: #585858;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3em;
}

.hero-paragraph-2.left-aligned {
  text-align: left;
}

.hero-paragraph-2.left-aligned.white-hero-landing {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
}

.h1-header-3 {
  color: #323232;
  margin-top: 10px;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
}

.h1-header-3.white {
  color: #fff;
}

.h1-header-3.white.small {
  text-align: left;
  font-size: 60px;
  line-height: 1.4em;
}

.cast-logo-white {
  max-width: 150px;
}

.cast-logo-white.margin-above {
  margin-top: 60px;
}

.calendly-iframe-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.calendly-iframe {
  width: 100%;
  height: 100vh;
  position: relative;
}

.experience-link {
  color: var(--royal-blue);
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
}

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

.body-5 {
  margin-top: 60px;
}

.home-body {
  margin-top: 0;
}

.container-26 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.subpricing {
  min-height: 24px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
}

.cs {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 14px;
}

.rte-article-csmsecrets {
  margin-bottom: 40px;
}

.rte-article-csmsecrets p {
  color: #797571;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 2;
}

.rte-article-csmsecrets strong {
  color: #191511;
  font-size: 20px;
  font-weight: 700;
}

.rte-article-csmsecrets h2 {
  color: #00a2ff;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 140px;
}

.rte-article-csmsecrets blockquote {
  color: #999591;
  text-align: left;
  border-left: 3px solid #00a2ff;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 20px;
  line-height: 1.6em;
}

.rte-article-csmsecrets img {
  border-radius: 20px;
  min-width: 300px;
  max-width: 300px;
}

.rte-article-csmsecrets h3 {
  color: #00a2ff;
  margin-top: 0;
  padding-top: 60px;
}

.rte-article-csmsecrets figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-csmsecrets li {
  text-align: left;
  padding-top: 20px;
}

.rte-article-csmsecrets h4 {
  color: #999591;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 19px;
  font-weight: 400;
}

.spotify {
  margin-bottom: 60px;
}

.product-full-grid {
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 90%;
  max-width: 1100px;
}

.hero-container-sd-2 {
  color: #292521;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.body-no-margin {
  margin-top: 0;
}

.keap-calendar-iframe {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.keap-calendar-iframe.not-absolute {
  position: absolute;
}

.calendly-container-2 {
  background-color: #292521;
  width: 100%;
  min-height: 1500px;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
}

.div-block-13 {
  background-color: var(--royal-blue);
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px 20px 20px;
}

.lightbox-image {
  border-radius: 25px;
  width: 800px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.white-heading-main {
  color: #fff;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
}

.watch-expereince {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  padding: 15px 30px;
  text-decoration: underline;
  display: flex;
  position: relative;
  top: 0;
}

.watch-expereince:hover {
  top: -2.5px;
}

.rte-article-scale101 {
  margin-bottom: 40px;
  font-size: 18px;
}

.rte-article-scale101 p {
  color: #292521;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
}

.rte-article-scale101 strong {
  color: #434343;
  font-weight: 700;
}

.rte-article-scale101 h2 {
  background-image: linear-gradient(to right, var(--royal-blue) 14%, #f016ab 39%, orange 87%);
  color: #545454;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 2em;
  line-height: 1.8;
}

.rte-article-scale101 blockquote {
  color: var(--royal-blue);
  text-align: left;
  margin-top: 60px;
  margin-bottom: 40px;
  margin-left: 40px;
  font-size: 22px;
  line-height: 1.5em;
}

.rte-article-scale101 img {
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.rte-article-scale101 h3 {
  color: var(--royal-blue);
  margin-top: 40px;
  font-size: 24px;
}

.rte-article-scale101 figcaption {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

.rte-article-scale101 li {
  color: #292521;
  padding-top: 10px;
  line-height: 1.5;
}

.rte-article-scale101 h4 {
  color: #fc427a;
  margin-top: 100px;
  font-size: 19px;
}

.rte-article-scale101 h6 {
  color: #999591;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
}

.menu-item-heading2 {
  color: #292521;
  font-size: 19px;
}

.menu-item-heading2:hover {
  color: var(--royal-blue);
}

.menu-item-heading2.small-one {
  font-size: 16px;
}

.menu-link-block {
  flex-direction: row;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.menu-link-block.w--current {
  align-items: center;
}

.menu-link-block.leftmargin {
  max-width: 380px;
  padding-left: 20px;
}

.image-27 {
  height: 50px;
}

.innote {
  width: 180px;
  margin-top: 40px;
}

.menu-item-header {
  color: #595551;
  margin-bottom: 19px;
  font-size: 22px;
  line-height: 1.5;
}

.menu-item-header:hover {
  color: var(--royal-blue);
}

.text-span-28 {
  padding-left: 5px;
  padding-right: 5px;
}

.nrr-container {
  grid-column-gap: 20px;
  grid-row-gap: 18px;
  background-color: #292521;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  align-content: center;
  place-items: start;
  width: 100%;
  margin-bottom: 20px;
}

.check-white {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

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

.white-bullets {
  color: var(--white);
  text-align: left;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
}

.div-block-16 {
  margin-left: 20px;
}

.html-embed-7 {
  text-align: center;
}

.headinglossleader {
  color: var(--royal-blue);
  margin-top: 20px;
  font-size: 30px;
}

.container-27 {
  margin-top: 140px;
  margin-bottom: 140px;
}

.text-block-31 {
  color: var(--royal-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}

.h1-main {
  color: #393531;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2em;
  display: inline-block;
}

.h1-main.marginformenutop {
  margin-top: 72px;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-size: 38px;
  line-height: 1.4em;
}

.h1-main.marginformenutop.multicolor-gradient-span {
  text-align: left;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  background-image: linear-gradient(to right, purple 9%, #ff8000 32%, #2ec92e 55%, var(--royal-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 1000px;
  font-size: 47px;
}

.icon-container-alt {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.marquee-horizontal-large {
  z-index: 200;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-horizontal {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-vertical {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.marquee-gradient-cover {
  z-index: 10;
  background-image: linear-gradient(270deg, #fff0 95%, #fff), linear-gradient(270deg, #fff, #fff0 5%);
  display: block;
  position: absolute;
  inset: 0%;
}

.customer-marquee-container {
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.customer-marquee-container.flex-vertical {
  width: 96%;
  max-width: 1400px;
  margin-top: 0;
}

.icon {
  width: 66%;
}

.icon.icon-ps {
  width: 91%;
}

.icon.icon-gt {
  width: 100%;
}

.icon.icon-rt {
  width: 80%;
}

.icon.icon-vcom {
  width: 75%;
}

.icon.icon-portw {
  width: 89%;
  padding-bottom: 0;
}

.add-children-then-make-copy, .flex-horz {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: 10px;
  display: flex;
}

.flex-horz.flip-svp {
  justify-content: space-between;
}

.lightbox-overview {
  width: 96%;
  max-width: 1000px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.lightbox-overview.background-magic {
  background-color: #fff;
  border-radius: 18px;
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
  box-shadow: 0 0 9px 5px #0000001c;
}

.lightbox-link {
  border-radius: 8px;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.background-magic {
  background-color: red;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.tabbar {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.tab {
  border-top: 1px solid #00a2ff;
  border-left: 1px solid #00a2ff;
  border-right: 1px solid #00a2ff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: 2px;
  padding: 10px 20px;
  font-size: 16px;
}

.tab.tabunselected {
  border-bottom: 1px solid #00a2ff;
}

.tabmargin {
  border-bottom: 1px solid #00a2ff;
  flex: 1;
  display: flex;
}

.h1blue {
  color: var(--royal-blue);
  margin-bottom: 20px;
  padding-top: 60px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 50px;
}

.tablink {
  color: var(--royal-blue);
}

.menuicon {
  min-width: 80px;
  max-width: 80px;
  margin-top: 6px;
  margin-right: 20px;
}

.standalone {
  margin-top: 40px;
}

.h1blue-left {
  color: var(--royal-blue);
  text-align: left;
  margin-bottom: 20px;
  padding-top: 60px;
  font-size: 50px;
}

.html-embed-8 {
  margin-left: 30px;
  margin-right: 30px;
}

.webcastrich {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.7;
}

.webcastrich p {
  line-height: 1.8;
}

.webcastrich h2 {
  color: var(--medium-sea-green);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 30px;
  font-weight: 700;
}

.webcastrich h3 {
  color: var(--medium-sea-green);
  font-size: 21px;
  font-weight: 700;
}

.producth3 {
  color: var(--royal-blue);
  text-align: left;
  text-transform: capitalize;
  margin-top: 0;
  font-size: 22px;
}

.producth3.dark {
  color: #10b981;
  font-size: 30px;
  line-height: 1.3;
}

.productpara {
  color: #494541;
  text-align: left;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.productpara.darkbg {
  color: #d9d5d1;
}

.container-29 {
  text-align: center;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-block-35 {
  color: #afbe27;
  font-size: 28px;
}

.formcalendly {
  background-color: #fff;
  border-radius: 10px;
}

.home-section-white_bg {
  background-color: #292521;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
}

.home-section-white_bg.otherdark {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.dcsm {
  color: #fff;
  text-align: left;
  max-width: 1000px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
}

.div-block-18 {
  text-align: center;
  padding: 20px 10px;
}

.button {
  color: var(--white);
  background-color: #10b981;
  border-radius: 12px;
  margin-top: 20px;
  padding: 10px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
}

.centerh2 {
  color: #10b981;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.text-block-36 {
  color: #fff;
  padding-bottom: 20px;
}

.homevideoembed {
  margin-bottom: 10px;
}

.h1blue-campaign {
  color: var(--royal-blue);
  text-align: left;
  margin-bottom: 20px;
  padding-top: 60px;
  font-size: 26px;
}

.subhero {
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.teresa-img {
  width: 250px;
}

.bio-section {
  padding-left: 20px;
  padding-right: 20px;
}

.customerbio {
  color: #00a2ff;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 30px;
}

.transcripts-section {
  text-align: center;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  padding: 40px 40px 0;
}

.toc-links {
  border-top: 2px solid #999591;
  margin-top: 60px;
}

.pipe {
  color: #999591;
  padding-left: 10px;
  padding-right: 10px;
  display: inline;
}

.preheading {
  color: #090501;
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
}

.postheading {
  color: #797571;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.label {
  color: #999591;
  padding-left: 10px;
  padding-right: 10px;
  display: inline;
}

.heropreheading {
  text-align: center;
  max-width: 900px;
  margin-bottom: 0;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
}

.soc2-compliance {
  margin-top: 20px;
}

.prodpagetopcontainer {
  text-align: left;
  padding-top: 0;
}

.container-30 {
  text-align: center;
  flex: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}

.use-case-quotes {
  color: #10b981;
  text-align: left;
  border-left: 2px solid #10b981;
  align-self: flex-start;
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: 10px;
  padding-left: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.use-case-quote-author {
  color: var(--medium-sea-green);
  text-align: left;
  align-self: flex-start;
  margin-bottom: 10px;
  margin-left: 10px;
  padding-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.use-case-div {
  padding-top: 60px;
}

.use-case-image {
  width: 100%;
  max-width: 800px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tophero {
  -webkit-text-fill-color: transparent;
  background-color: #090501;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 1000px;
  margin-bottom: 0;
  padding-top: 140px;
  padding-bottom: 40px;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.html-embed-9 {
  z-index: 0;
  margin-top: 100px;
  display: none;
}

.underline {
  border-bottom: 6px solid #10b981;
}

.smallh1 {
  background-image: none;
  margin-bottom: 20px;
  font-size: 32px;
}

.head {
  cursor: pointer;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 15px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.use-case-accordion-item {
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.use-case-accordion-item.accordian-margin {
  margin-bottom: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
}

.wrapper {
  margin-top: 40px;
  display: block;
}

.usecase-icon-container {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 28px;
  display: block;
}

.usecase-icon-container:hover {
  filter: brightness(0%);
}

.usecase-icon-container.darkicon {
  padding-bottom: 6px;
}

.usecase-icon-container.darkicon:hover {
  filter: brightness(200%);
}

.usecasetitle {
  color: #10b981;
  text-align: left;
  text-transform: capitalize;
  flex: 1;
  order: 1;
  align-self: center;
  margin-top: 20px;
  font-size: 24px;
  line-height: 1.3;
}

.usecasetitle:hover {
  color: #292521;
}

.usecasetitle.big {
  font-size: 20px;
}

.usecasetitle.big.dark:hover {
  color: #fff;
}

.item-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: 46px;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.container-31 {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

.usecase-detail {
  color: #393531;
  text-align: left;
  align-self: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.usecase-detail.dark {
  color: #fff;
}

.testimonial-wrapper {
  text-align: center;
  max-width: 1000px;
  margin-top: 40px;
  margin-bottom: 100px;
  display: block;
}

.underline-thin {
  border-bottom: 4px solid #10b981;
}

.nrr-inner {
  align-items: flex-start;
  display: flex;
}

.prodherosub {
  color: #10b981;
  margin-top: -10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
}

.subhead {
  color: #494541;
  text-align: left;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.subhead.darkbg {
  color: #d9d5d1;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.customerprofile {
  border-radius: 15%;
  min-width: 150px;
  min-height: 150px;
}

.mainheading {
  color: #10b981;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 46px;
}

.mainheading.seagreen {
  background-color: var(--black);
  color: #090501;
  text-align: left;
  -webkit-text-fill-color: transparent;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.4;
}

.mainheading.seagreen.left {
  color: #10b981;
  text-align: left;
}

.mainheading.seagreen.tight {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mainheading.seagreen.bold {
  font-weight: 700;
}

.mainheading.darkheading {
  color: var(--white);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
}

.text-block-37 {
  margin-bottom: 40px;
}

.subheading {
  color: #f9f5f1;
  text-transform: none;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.use-case-image-2-copy {
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.use-case-image-3 {
  width: 100%;
  max-width: 800px;
  max-height: 360px;
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 20px 10px;
}

.smallcheckimage {
  max-width: 32px;
}

.paragraph-7 {
  color: #393531;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 17px;
  line-height: 1.8;
}

.attention {
  color: var(--medium-sea-green);
  font-weight: 700;
}

.use-case-image-4 {
  width: 100%;
  max-width: 500px;
  max-height: 360px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.green {
  color: var(--medium-sea-green);
  font-weight: 700;
}

.text-span-31 {
  line-height: 1.4;
}

.personalization {
  padding: 0 10px;
}

.home-container {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template: "."
  / 1fr minmax(60%, 600px);
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.productimage-spaced {
  width: 100%;
  max-height: 223px;
  margin: 20px auto;
  padding: 0 10px;
  display: block;
}

.subheading-main {
  text-align: left;
  text-transform: none;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.generate {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.reachprod, .presentprod {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 10px;
  display: block;
}

.text-block-38 {
  text-align: left;
  margin-bottom: 20px;
  display: block;
}

.home-section-light_bg {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.how-to-embed {
  margin-top: 20px;
  margin-bottom: 40px;
}

.subsubheading {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  display: inline;
}

.image-28 {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.productimage3 {
  margin: 10px auto 20px;
  padding: 0 10px;
  display: block;
}

.usecaserichtext {
  text-align: left;
}

._6bullets {
  grid-column-gap: 20px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  align-content: center;
  place-items: start;
  width: 100%;
  margin-bottom: 20px;
}

.div-block-18-copy {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 0 10px 20px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
}

.strategizerich {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.7;
}

.strategizerich p {
  line-height: 1.8;
}

.strategizerich h2 {
  color: var(--medium-sea-green);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 30px;
  font-weight: 700;
}

.strategizerich h3 {
  color: var(--medium-sea-green);
  font-size: 21px;
  font-weight: 700;
}

.strategizerich strong {
  color: var(--logo-black);
  font-size: 19px;
}

.strategizerich img {
  border: 1px solid #999591;
  border-radius: 5px;
  padding: 20px 10px;
}

.text-span-32 {
  font-size: 16px;
  font-weight: 400;
}

.div-block-18-copy-copy {
  text-align: center;
  padding: 20px 10px;
}

.amarich {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 20px;
  line-height: 1.7;
}

.amarich p {
  line-height: 2;
}

.amarich h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 60px;
  font-size: 34px;
  font-weight: 700;
}

.amarich h3 {
  color: var(--medium-sea-green);
  font-size: 21px;
  font-weight: 700;
}

.amarich strong {
  color: var(--black);
  font-size: 19px;
}

.amarich img {
  border: 1px solid #999591;
  border-radius: 5px;
  padding: 20px 10px;
}

.amarich h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.text-span-33 {
  color: #595551;
}

.container-32 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.text-block-40 {
  color: var(--medium-sea-green);
  text-align: left;
  background-color: #0000;
  padding: 10px;
  font-size: 15px;
  font-style: normal;
  line-height: 1.3;
}

.text-span-34 {
  color: #696561;
}

.image-29 {
  border: 0 solid #000;
  border-radius: 50%;
}

.hero-subheading-1 {
  text-align: center;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.dark-bullets {
  color: #fff;
  text-align: left;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
}

.psrich {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.7;
}

.psrich p {
  line-height: 1.8;
}

.psrich h2 {
  color: var(--medium-sea-green);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 30px;
  font-weight: 700;
}

.psrich h3 {
  color: var(--medium-sea-green);
  font-size: 21px;
  font-weight: 700;
}

.psrich strong {
  color: var(--black);
  font-size: 19px;
}

.psrich img {
  border-radius: 5px;
  padding: 20px 10px;
}

.psrich h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.image-30, .image-31 {
  padding-left: 10px;
  padding-right: 10px;
}

.logoasset {
  width: 300px;
}

.subheadingcast3 {
  margin-bottom: 40px;
}

.subtitle {
  font-size: 28px;
  font-weight: 400;
}

.cast3rich {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 20px;
  line-height: 1.7;
}

.cast3rich p {
  line-height: 2;
}

.cast3rich h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 60px;
  font-size: 34px;
  font-weight: 700;
}

.cast3rich h3 {
  color: var(--medium-sea-green);
  font-size: 21px;
  font-weight: 700;
}

.cast3rich strong {
  color: var(--black);
  font-size: 19px;
}

.cast3rich img {
  border-radius: 10px;
  padding: 0;
}

.cast3rich h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.text-block-42, .text-block-43, .text-block-44 {
  text-align: left;
}

.cast3quoteperson {
  border-radius: 12px;
}

.quotes {
  grid-column-gap: 4px;
  grid-row-gap: 70px;
}

.quoteauthor {
  color: #09a370;
  font-style: normal;
}

.link-12 {
  color: var(--medium-sea-green);
}

.customer-logo {
  margin-top: 20px;
}

.cell, .cell-2, .cell-3, .cell-4, .cell-5, .cell-6 {
  align-items: center;
}

.quotes-ps {
  grid-column-gap: 9px;
  grid-row-gap: 80px;
  background-color: #f9f5f1;
  border: 2px solid #e9e5e1;
  border-radius: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.ps-rich {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 20px;
  line-height: 1.7;
}

.ps-rich p {
  color: #393531;
  margin-top: 40px;
  line-height: 2;
}

.ps-rich h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 60px;
  font-size: 34px;
  font-weight: 700;
}

.ps-rich h3 {
  color: var(--medium-sea-green);
  font-size: 21px;
  font-weight: 700;
}

.ps-rich strong {
  color: var(--black);
  font-size: 19px;
}

.ps-rich img {
  border-radius: 10px;
  padding: 10px;
}

.ps-rich h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.image-32 {
  background-color: #f9f5f1;
  border: 2px solid #e9e5e1;
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
}

.bigh1black {
  color: #393531;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 56px;
  line-height: 72px;
}

.summary-heading {
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
}

.roi-rich {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.7;
}

.roi-rich p {
  color: #393531;
  margin-top: 40px;
  line-height: 2;
}

.roi-rich h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 10px;
  font-size: 34px;
}

.roi-rich h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
}

.roi-rich strong {
  color: var(--black);
  font-size: 19px;
}

.roi-rich img {
  border-radius: 10px;
  padding: 10px;
}

.roi-rich h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.bold-text-7 {
  font-size: 40px;
  line-height: 50px;
}

.bold-text-8 {
  color: #10b981;
  background-color: #f7f8aa;
  border-radius: 5px;
}

.cta-section-nrr {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.cta-container-nrr {
  text-align: center;
  border-radius: 6px;
  width: 80%;
  max-width: 1300px;
}

.calendlybanner {
  min-width: 500px;
}

.embedcalendly {
  background-color: #292521;
}

.text-span-35 {
  font-weight: 700;
}

.body-6 {
  padding-left: 20px;
}

.black-h2-copy {
  color: #393531;
  text-transform: capitalize;
  margin-top: 140px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 40px;
  line-height: 50px;
}

.productpara-copy {
  color: #494541;
  text-align: left;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.productpara-copy.darkbg {
  color: #d9d5d1;
}

.subpricing-copy {
  min-height: 24px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
}

.transparent {
  color: #0000;
}

.pricedby {
  color: var(--black);
  text-align: center;
}

.image-33 {
  height: 80px;
}

.text-span-36, .text-span-37 {
  color: var(--royal-blue);
}

.text-span-38, .text-span-39 {
  color: #ff0;
}

.text-span-40 {
  color: #dd8125;
}

.text-span-41 {
  color: #00a2ff;
}

.text-span-42, .text-span-43 {
  text-decoration: line-through;
}

.text-span-44 {
  font-size: 24px;
}

.smallheading {
  color: #999591;
  text-transform: capitalize;
  font-size: 46px;
}

.smallheading.seagreen {
  background-color: var(--medium-sea-green);
  color: #090501;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.smallheading.seagreen.left {
  text-align: left;
}

.smallheading.seagreen.tight {
  margin-top: 10px;
  margin-bottom: 10px;
}

.smallheading.darkheading {
  color: var(--white);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
}

.smallheading.white {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-color: #fff;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 100px;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.8;
}

.smallheading.white.left {
  text-align: left;
}

.smallheading.white.tight {
  margin-top: 10px;
  margin-bottom: 10px;
}

.image-34 {
  width: 100%;
  margin: 40px;
}

.text-span-45 {
  font-size: 28px;
}

.text-block-45 {
  color: #fff;
  text-align: left;
  margin-top: 40px;
  font-size: 26px;
}

.sea-green {
  color: var(--medium-sea-green);
}

.castcatersto {
  color: #10b981;
  text-align: center;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.image-35 {
  margin-top: 20px;
}

.text-block-46 {
  color: #393531;
  text-align: left;
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.7;
}

.sub-castcatersto {
  color: #212121;
  text-align: left;
  background-image: none;
  font-size: 22px;
  font-weight: 400;
}

.image-36 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.smallicon {
  margin: 60px 6px 0;
}

.image-37 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.image-38 {
  margin: 20px;
}

.want-vs-use-case {
  color: #393531;
  text-transform: capitalize;
  border-top: 1px solid #393531;
  margin-top: 140px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
  line-height: 50px;
}

.usecase-heading {
  color: #393531;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 28px;
}

.text-span-46 {
  font-style: italic;
}

.blacksubheading {
  color: #595551;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.imagemarginbottom {
  margin-bottom: 40px;
}

.miniheading {
  color: #999591;
  text-transform: capitalize;
  border-top: 1px solid #393531;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.white-h2 {
  color: #fff;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 39px;
  line-height: 50px;
}

.whitesubheading {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}

.text-block-47 {
  text-align: left;
  margin-top: 40px;
}

.inapp-h1 {
  color: #090501;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 43px;
  line-height: 1.4;
}

.code {
  color: #fff;
  text-align: left;
  background-color: #595551;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
  font-family: Inconsolata, monospace;
  font-size: 14px;
  line-height: 1.1;
}

.text-block-48 {
  text-align: left;
  margin-top: 40px;
}

.inapp-text {
  color: #393531;
  text-align: left;
  margin-top: 60px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.yellow {
  color: #ff0;
}

.text-span-47 {
  background-color: #ff0;
  border-radius: 4px;
}

.text-span-48 {
  color: #b9b5b1;
}

.inapp-text-copy {
  color: #393531;
  text-align: center;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 20px;
  line-height: 1.6;
}

.text-span-49 {
  font-family: Inconsolata, monospace;
}

.div-block-19 {
  text-align: center;
  font-size: 18px;
}

.subsubheadingtop {
  color: #fff;
  text-align: center;
  background-image: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 220px;
  padding-right: 220px;
  font-size: 22px;
}

.flex-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: space-around center;
  align-items: flex-end;
  transition: opacity .2s;
  display: grid;
}

.exp-button {
  background-color: #10b981;
  border: 1px solid #d9d5d1;
  border-radius: 20px;
  margin: 10px 40px 40px;
  padding: 10px 16px 0;
  font-size: 24px;
  transition: transform .7s cubic-bezier(.661, -1.184, .304, 2.254);
}

.exp-button:hover {
  transform: scale(1.1);
}

.link {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  transition: all 1s;
}

.text-span-50 {
  font-family: Great Vibes, cursive;
  font-size: 50px;
  font-weight: 400;
}

.yellowback {
  background-color: #ffffc6;
  border-radius: 20px;
  font-size: 17px;
}

.white {
  color: #fff;
}

.bigh2black {
  color: #393531;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 40px;
  line-height: 60px;
}

.richearlyind {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.7;
}

.richearlyind p {
  color: #393531;
  margin-top: 40px;
  line-height: 2;
}

.richearlyind h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 10px;
  font-size: 34px;
}

.richearlyind h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
}

.richearlyind strong {
  color: var(--black);
  font-size: 19px;
}

.richearlyind img {
  border-radius: 30px;
  padding: 10px;
}

.richearlyind h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.link-13 {
  color: #000;
  -webkit-text-stroke-color: black;
}

.text-span-52 {
  font-size: 20px;
}

.text-span-53 {
  font-size: 18px;
}

.image-39 {
  background-color: #f9f5f1;
  border: 1px solid #d9d5d1;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 20px 20px;
}

.text-span-54 {
  color: #fff;
}

.comment {
  color: #999;
}

.hero-subheading-2 {
  color: #393531;
  text-align: center;
  margin-top: -10px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 16px;
}

.text-block-46-copy {
  color: #fff;
  text-align: left;
  margin-top: 40px;
  font-size: 22px;
  line-height: 1.7;
}

.image-40 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.standout {
  color: #000;
  border-left: 5px solid #000;
  padding-left: 20px;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}

.use-list-item {
  text-align: left;
  padding-top: 7px;
  padding-bottom: 7px;
}

.text-block-49 {
  text-align: left;
  margin-top: 40px;
}

.usecases-heading {
  color: #595551;
  text-align: left;
  margin-top: 40px;
  padding-bottom: 10px;
  font-size: 25px;
}

.usecaselink {
  color: #393531;
  text-align: left;
  -webkit-text-stroke-color: #393531;
  margin-top: 20px;
  font-size: 16px;
  display: block;
}

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

.cell-8 {
  align-items: center;
}

.centercell {
  text-align: left;
  align-items: center;
}

.dotted {
  text-align: left;
  border-bottom: 1px dotted #393531;
  font-size: 15px;
}

.usecaseimage {
  width: 160px;
  margin-top: 100px;
}

.quick-stack {
  background-color: #f9f5f1;
  border: 1px solid #d9d5d1;
  border-radius: 10px;
  margin-top: 20px;
}

.examples-section {
  text-align: center;
  object-fit: contain;
  border-radius: 21px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  max-height: 100%;
  padding: 40px 40px 0;
  display: flex;
}

.examples-h1 {
  color: #393531;
  margin-top: 100px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 60px;
  line-height: 72px;
}

.example-h2 {
  color: #212121;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 24px;
}

.slide-image {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding-left: 10px;
  display: block;
}

.presentation-link {
  margin-top: 10px;
  text-decoration: underline;
  display: block;
}

.div-block-20 {
  margin-top: 60px;
}

.examples-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin: 60px;
  display: flex;
}

.presentation-link-copy {
  border-bottom: 1px solid #00a2ff;
  margin-top: 100px;
  display: block;
}

.courtesy {
  color: #515151;
  font-size: 15px;
}

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

.castcatersto-sub {
  color: #393531;
  text-align: center;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.example {
  margin-top: 100px;
  padding: 10px;
}

.seriestitle {
  color: #393531;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 20px;
  line-height: 30px;
}

.rich {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 20px;
  line-height: 1.5;
}

.rich p {
  color: #393531;
  margin-top: 40px;
  line-height: 2;
}

.rich h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 10px;
  font-size: 34px;
}

.rich h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
}

.rich strong {
  color: var(--black);
  font-size: 19px;
}

.rich img {
  border-radius: 30px;
  padding: 10px 60px;
}

.rich h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.text-span-55 {
  font-size: 54px;
}

.text-span-56 {
  font-size: 25px;
}

.text-span-57 {
  font-size: 20px;
  font-weight: 700;
}

.soup {
  margin: 40px 10px;
}

.blog-post-list-header-top {
  color: #595551;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-left: 20px;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3;
}

.blog-post-list-header-top-top {
  color: #595551;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-left: 20px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.3;
}

.text-span-58, .text-span-59 {
  text-decoration: underline;
}

.white-headingtop {
  color: #fff;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
  line-height: 50px;
}

.hero-container-lower {
  color: #fff;
  text-transform: capitalize;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.image-41 {
  margin-top: 40px;
  margin-bottom: 10px;
}

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

.hero2 {
  width: 60%;
  margin: 25px 20% 10px;
}

.testimonial-card-animatio {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 8%;
  display: flex;
  box-shadow: 0 18px 40px -10px #00000026;
}

.testimonial-card-animatio.hidethis, .testimonial-card-animatio.desktop {
  display: none;
}

.pure-excellence-user-quotes {
  margin-bottom: 20px;
  display: block;
}

.testimonial-container-wide {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.testimonial {
  margin-top: 20px;
}

.text-span-60 {
  color: #999591;
}

.smalltestimonial {
  color: #999591;
  font-size: 16px;
  font-style: italic;
}

.heading-2 {
  text-align: left;
  font-size: 24px;
  font-weight: 400;
}

.tier-copy {
  text-align: center;
  padding: 0 10px 4px;
  font-size: 18px;
  font-weight: 400;
}

.prod-image {
  margin-top: 0;
}

.prod-image.grayscaled {
  filter: grayscale();
}

.div-block-22 {
  margin: 20px;
}

.cell-9 {
  justify-content: flex-start;
}

.heading-3 {
  text-align: left;
  text-transform: capitalize;
  margin-top: 0;
  font-size: 35px;
  line-height: 1.2;
}

.prod-grid {
  grid-column-gap: 30px;
  grid-row-gap: 100px;
  background-color: #f9f5f1;
  border: 1px solid #d9d5d1;
  margin-top: 20px;
  padding: 40px;
}

.aiagents {
  color: #999591;
  text-transform: uppercase;
}

.image-43 {
  justify-content: center;
  align-items: center;
  max-width: 720px;
  display: inline-flex;
}

.container-33 {
  margin-top: 60px;
  padding-left: 10px;
  padding-right: 10px;
}

.rhpe {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.5;
}

.rhpe p {
  color: #393531;
  margin-top: 40px;
  line-height: 2;
}

.rhpe h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 10px;
  font-size: 34px;
}

.rhpe h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
}

.rhpe strong {
  color: var(--black);
  font-size: 19px;
}

.rhpe img {
  border: 2px solid #b9b5b1;
  border-radius: 30px;
  padding: 0;
}

.rhpe h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.herosub1 {
  color: #595551;
  text-align: center;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 23px;
}

.herosub1.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.herosub1.bolder {
  color: #000;
  font-size: 24px;
}

.heromain {
  color: #090501;
  margin-top: 100px;
  font-family: Muli, sans-serif;
  font-size: 81px;
  font-weight: 700;
  line-height: 1.3;
}

.herosubsub {
  text-align: center;
  text-transform: capitalize;
  font-size: 16px;
}

.divide-work {
  z-index: 2;
  color: #090501;
  text-align: center;
  text-transform: capitalize;
  margin-top: 70px;
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 47px;
  font-weight: 700;
  line-height: 1.5em;
}

.customer-first {
  z-index: 2;
  color: #797571;
  text-align: center;
  margin-top: 0;
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 20px;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 1.3em;
}

.linkroirov {
  color: #0356bb;
  border-bottom: 1px solid #0267e2;
  border-radius: 1px;
  font-weight: 400;
}

.linkroirov:hover {
  border-bottom-style: solid;
  font-size: 16px;
}

.divide-work2 {
  z-index: 2;
  color: #090501;
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 31px;
  line-height: 1.5em;
}

.herosub-copy {
  text-align: center;
  font-size: 31px;
}

.text-block-51 {
  color: var(--medium-sea-green);
  font-size: 32px;
  font-weight: 700;
}

.herowhite {
  text-align: center;
  text-transform: none;
  margin-top: 0;
  font-size: 22px;
}

.herowhite.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.image {
  width: 80%;
  margin: 40px 10px;
}

.text-block-52 {
  color: #393531;
  text-transform: none;
}

.image-44 {
  margin-bottom: 40px;
}

.subsubheadingtop-left {
  color: #fff;
  text-align: center;
  background-image: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}

.italic-text, .text-span-61 {
  color: #10b981;
}

.image-45 {
  margin-bottom: 60px;
}

.text-span-62 {
  color: #fff;
}

.text-span-63 {
  text-transform: capitalize;
}

.blue-text {
  color: #00a2ff;
}

.highlight {
  color: #10b981;
  font-weight: 700;
}

.embeddedcal {
  background-color: #292521;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.embeddedcal.otherdark {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.herosub2 {
  color: #494541;
  text-align: center;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 150%;
}

.herosub2.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.herosub2.bolder {
  color: #000;
  font-size: 24px;
}

.whiteitalic {
  color: #fff;
  text-transform: capitalize;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
}

.text-block-54 {
  color: #fff;
  margin-bottom: 20px;
}

.rich-slides {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  line-height: 1.5;
}

.rich-slides p {
  color: #393531;
  margin-top: 40px;
  line-height: 2;
}

.rich-slides h2 {
  color: #212121;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 10px;
  font-size: 34px;
}

.rich-slides h3 {
  color: var(--royal-blue);
  font-size: 24px;
  font-weight: 400;
}

.rich-slides strong {
  color: var(--black);
  font-size: 19px;
}

.rich-slides img {
  border-radius: 5px;
  padding-left: 40px;
  padding-right: 40px;
  box-shadow: 0 0 2px 2px #0000001a;
}

.rich-slides h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 40px;
}

.rich-slides figure {
  margin-bottom: 100px;
}

.bold-text-9 {
  text-decoration: line-through;
}

.div-block-23 {
  max-width: 1200px;
}

.figure-2 {
  margin-bottom: 100px;
}

.div-block-24 {
  max-width: 1350px;
  margin-left: 20px;
  margin-right: 20px;
}

.castcatersto-short {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.text-span-64, .text-span-65 {
  color: #fff;
}

.herosub1-copy {
  color: #999591;
  text-align: center;
  -webkit-text-stroke-color: #d9d5d1;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 33px;
  line-height: 150%;
}

.herosub1-copy.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.herosub1-copy.bolder {
  color: #000;
  font-size: 24px;
}

.herosublink {
  color: #494541;
  text-align: center;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 17px;
  line-height: 150%;
}

.herosublink.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.herosublink.bolder {
  color: #000;
  font-size: 24px;
}

.link-block-3 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-67 {
  color: var(--royal-blue);
}

.herosub100 {
  color: #494541;
  text-align: left;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 150%;
}

.herosub100.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.herosub100.bolder {
  color: #000;
  font-size: 24px;
}

.sub1 {
  color: #000;
  text-align: center;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.sub1.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.sub1.bolder {
  color: #000;
  font-size: 24px;
}

.bold-text-10 {
  color: #0d9e6e;
  font-weight: 700;
}

.ngaiagents {
  margin-top: 40px;
  margin-bottom: 40px;
}

.head2 {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
}

.text-span-68, .text-span-69, .text-span-70, .text-span-71 {
  color: #fff;
}

.text-span-72, .text-span-73 {
  color: #393531;
}

.bold-text-12, .bold-text-13, .bold-text-14, .text-span-74 {
  color: #000;
}

.herosub1-00 {
  color: #595551;
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 23px;
}

.herosub1-00.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.herosub1-00.bolder {
  color: #000;
  font-size: 24px;
}

.text-span-75 {
  color: #000;
  font-style: italic;
  font-weight: 700;
}

.text-span-76, .text-span-77, .bold000 {
  color: #000;
  font-weight: 700;
}

.sub2 {
  color: #000;
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 32px;
  font-style: normal;
  line-height: 150%;
}

.sub2.fordark {
  color: #10b981;
  font-size: 50px;
  line-height: 1.4;
}

.sub2.bolder {
  color: #000;
  font-size: 24px;
}

.image-46 {
  margin-top: 60px;
  margin-bottom: 40px;
}

.links {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-25 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.text-block-55 {
  color: #999;
  display: inline-flex;
}

.first-then {
  max-width: 1000px;
  margin: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.head3 {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 100px;
  padding: 20px 220px;
  font-size: 18px;
  font-weight: 400;
}

.text-span-78 {
  color: #10b981;
}

.div-block-25-copy {
  text-align: left;
  margin-bottom: 23px;
  padding-left: 10px;
  padding-right: 10px;
}

.image-48 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.text-span-79 {
  color: #10b981;
  -webkit-text-stroke-color: #10b981;
}

.text-span-80, .text-span-81, .text-span-green {
  color: #10b981;
}

.exp-heading {
  color: #595551;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.exp-btn {
  color: #10b981;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 10px;
  display: inline-block;
}

.text-span-83 {
  color: #10b981;
}

.image-49 {
  margin-top: 60px;
}

.withaicsm {
  text-align: center;
  text-transform: none;
  width: 90%;
  max-width: 600px;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.sub {
  color: #393531;
  text-align: center;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

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

.text-block-56 {
  color: #999591;
  font-size: 32px;
}

.flags {
  margin: 20px 100px;
}

.sub-narrow {
  color: #595551;
  text-align: center;
  text-transform: none;
  margin: 0 20px;
  font-size: 22px;
}

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

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

.text-span-84, .text-span-85, .text-span-86 {
  color: #10b981;
}

.centerh2-copy {
  color: #10b981;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.exp-title {
  color: #fff;
  font-size: 31px;
  font-weight: 400;
}

.with-ai-csms {
  color: #393531;
  text-align: center;
  text-transform: none;
  margin: 20px;
  font-size: 36px;
  font-weight: 400;
}

.subtext {
  color: #595551;
  text-align: center;
  text-transform: none;
  margin: 20px 40px 10px;
  font-size: 18px;
  font-weight: 400;
}

.text-span-87 {
  color: #10b981;
  font-weight: 700;
}

.text-span-88 {
  font-weight: 700;
}

.bold-text-17, .text-span-89 {
  color: #10b981;
}

.richwithcode {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.richwithcode p {
  color: #393531;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 2;
}

.richwithcode h2 {
  color: #000;
  text-transform: uppercase;
  background-image: linear-gradient(#000, #000);
  margin-top: 140px;
  padding-top: 10px;
  font-size: 30px;
}

.richwithcode h3 {
  color: #595551;
  margin-top: 60px;
  font-size: 26px;
  font-weight: 400;
  line-height: 37px;
}

.richwithcode strong {
  color: var(--black);
  font-size: 19px;
}

.richwithcode img {
  border-radius: 20px;
  padding: 10px;
}

.richwithcode h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 100px;
}

.article-link-copy {
  margin-top: 60px;
  margin-bottom: 60px;
}

.home-section-white {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}

.text-span-90 {
  color: #393531;
}

.richaudiogram {
  color: #191511;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.richaudiogram p {
  color: #393531;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 2;
}

.richaudiogram h2 {
  color: #000;
  text-transform: uppercase;
  background-image: linear-gradient(#000, #000);
  margin-top: 140px;
  padding-top: 10px;
  font-size: 30px;
}

.richaudiogram h3 {
  color: #595551;
  margin-top: 60px;
  font-size: 26px;
  font-weight: 400;
  line-height: 37px;
}

.richaudiogram strong {
  color: var(--black);
  font-size: 19px;
}

.richaudiogram img {
  border-radius: 20px;
  padding: 10px;
}

.richaudiogram h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 100px;
}

.block-quote {
  font-size: 17px;
}

.section-18 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.richcoauto {
  color: #191511;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.richcoauto p {
  color: #393531;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 2;
}

.richcoauto h2 {
  color: #000;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#0000, #0000);
  background-clip: border-box;
  margin-top: 60px;
  padding-top: 10px;
  font-size: 30px;
}

.richcoauto h3 {
  color: #595551;
  margin-top: 60px;
  font-size: 26px;
  font-weight: 400;
  line-height: 37px;
}

.richcoauto strong {
  color: var(--black);
  font-size: 19px;
}

.richcoauto img {
  border-radius: 20px;
  padding: 10px 20px;
}

.richcoauto h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 100px;
}

.container-34 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: contain;
  padding-left: 10px;
  padding-right: 10px;
}

.paragraph-8 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  font-weight: 400;
  display: flex;
}

.text-span-91 {
  color: #10b981;
}

.productx-horizontal-wrapper {
  margin-top: auto;
}

.productx-section {
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 220px;
  display: flex;
}

.producth2 {
  color: #000;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 50px;
  font-weight: 700;
}

.placeholder {
  width: 100%;
  height: 100px;
}

.heading-5 {
  font-size: 80px;
}

.heading-6 {
  font-size: 70px;
}

.productx-h1 {
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 64px;
}

.productx-h2 {
  color: #595551;
  font-size: 34px;
}

.productx-h3 {
  color: var(--logo-black);
  text-align: center;
  font-size: 27px;
  font-weight: 400;
  line-height: 44px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.bold-text-18 {
  font-size: 30px;
  font-weight: 400;
}

.productx-para {
  text-align: center;
  margin-bottom: 0;
}

.productx-para.left {
  text-align: left;
}

.quick-stack-2 {
  -webkit-text-stroke-color: black;
  object-fit: contain;
}

.productx-h3-copy {
  color: var(--logo-black);
  text-align: center;
  font-size: 31px;
  font-weight: 400;
  line-height: 44px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.container-35 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-57 {
  color: #999591;
  text-align: center;
  -webkit-text-stroke-color: #999591;
  margin-top: 0;
}

.image-50 {
  width: 100%;
  max-width: 680px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
}

.text-block-58 {
  text-align: left;
  margin-bottom: auto;
}

.quick-stack-3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  object-fit: fill;
}

.cell-11, .cell-12 {
  justify-content: center;
  align-items: center;
}

.textcell {
  -webkit-text-stroke-color: #292521;
  background-color: #f9f5f1;
  border: 1px solid #d9d5d1;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.image-51 {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.product-link {
  color: #595551;
  text-align: center;
  text-transform: none;
  margin: 0 60px 10px;
  font-size: 22px;
  font-weight: 400;
}

.imagecell {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}

.textcellleft {
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.quick-stack-4 {
  grid-row-gap: 40px;
}

.quick-stack-5 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.paraleft {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  font-weight: 400;
  display: flex;
}

.productx-bullets {
  color: #393531;
}

.text-span-92 {
  font-size: 20px;
  font-weight: 400;
}

.text-span-93 {
  font-size: 40px;
}

.text-block-59 {
  text-align: left;
}

.usecase-h2 {
  aspect-ratio: auto;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 100px;
}

.usecase-h2.bullets {
  font-size: 18px;
}

.quick-stack-6 {
  grid-column-gap: 20px;
  grid-row-gap: 103px;
}

.usecase-heading {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 24px;
}

.text-block-60 {
  text-align: left;
}

.use-case-text {
  text-align: left;
  -webkit-text-stroke-color: #393531;
}

.image-52 {
  padding-top: 30px;
}

.quick-stack-7 {
  grid-column-gap: 37px;
}

.text-block-61 {
  text-align: left;
}

.usecase-image {
  min-width: 200px;
  padding-top: 30px;
}

.strikethru {
  text-decoration: line-through;
}

.text-span-94, .kala {
  color: #393531;
}

.home-container-secret {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template: "."
  / 1fr minmax(60%, 600px);
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.flex-block-inappropriate {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: space-around center;
  align-items: flex-end;
  transition: opacity .2s;
  display: block;
}

.exp-embedded {
  background-color: #10b981;
  border: 1px solid #d9d5d1;
  border-radius: 20px;
  margin: 10px 20px 40px;
  padding: 10px 16px 0;
  font-size: 24px;
  transition: transform .7s cubic-bezier(.661, -1.184, .304, 2.254);
}

.text-block-5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 400;
}

.demo-html-iframe-wrapper-green {
  text-align: center;
  background-color: #10b981;
  border-radius: 25px;
  justify-content: center;
  align-items: flex-start;
  margin-left: 60px;
  margin-right: 60px;
  padding: 10px;
  line-height: 1.6;
}

.text-span-95 {
  font-size: 37px;
}

.bigh1black-copy {
  color: #393531;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 61px;
  line-height: 72px;
}

.bigh1black-sub-copy {
  color: #393531;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 36px;
  line-height: 133%;
}

.richagents {
  color: #191511;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.richagents p {
  color: #393531;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 2;
}

.richagents h2 {
  color: #000;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#0000, #0000);
  background-clip: border-box;
  margin-top: 60px;
  padding-top: 10px;
  font-size: 30px;
}

.richagents h3 {
  color: #595551;
  border-top: 1px solid #00a2ff;
  margin-top: 140px;
  font-size: 26px;
  font-weight: 400;
  line-height: 37px;
}

.richagents strong {
  color: var(--black);
  font-size: 19px;
}

.richagents img {
  border-radius: 20px;
  padding: 10px 20px;
}

.richagents h1 {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 100px;
}

.image-53 {
  margin-top: 100px;
  margin-bottom: 0;
}

.subtext1 {
  color: #595551;
  text-align: center;
  text-transform: none;
  margin: 20px 60px 0;
  font-size: 34px;
  font-weight: 400;
}

.text-span-96 {
  line-height: 2.4;
}

.list {
  text-align: left;
}

.rich-text-block-2 {
  text-align: left;
  font-size: 18px;
}

.bold-text-19 {
  font-size: 40px;
}

.div-block-27 {
  padding: 100px;
}

.codequote {
  color: #393531;
  background-color: #e3e8eb;
  border-radius: 9px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 1.3;
}

.block-quote-3 {
  line-height: 1.3;
}

.code-2 {
  font-weight: 400;
}

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

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

  .hero-section.hero {
    margin-left: 20px;
    margin-right: 20px;
  }

  .card-description {
    font-size: 16px;
  }

  .primary-button {
    display: inline-block;
  }

  .navbar {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .nav-link, .nav-link.w--current {
    text-align: center;
    display: inline-block;
  }

  .nav-link.mobileonly {
    width: 100%;
    display: inline-block;
  }

  .nav-menu {
    background-color: #fff;
    box-shadow: 1px 1px 3px 5px #ddd;
  }

  .menu-button {
    color: #fff;
    order: 1;
    padding: 10px;
    font-size: 17px;
    line-height: 1.3;
    transform: translate(18px);
  }

  .menu-button:hover {
    color: #00a2ff;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .container {
    margin-top: 20px;
  }

  .heading {
    font-size: 28px;
  }

  .case-study-series-heading {
    font-size: 20px;
  }

  .cardicon {
    height: 48px;
  }

  .testimonial.whitetext {
    font-size: 16px;
  }

  .arrow-down {
    margin-left: 0;
    padding-left: 0;
  }

  .arrow-down-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .finance-top-section, .footersection {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .notreadycontainer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-6 {
    height: 32px;
  }

  .link-block {
    text-align: left;
  }

  .menu-button-inner {
    color: #212121;
    border-bottom: 2px solid #fff0;
    order: 1;
    margin: 6px 20px 6px -90px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 0;
    font-size: 17px;
    line-height: 1.3;
    transform: translate(18px);
  }

  .menu-button-inner:hover {
    border-bottom-color: var(--royal-blue);
    color: var(--royal-blue);
  }

  .menu-button-inner.w--open {
    background-color: #0000;
  }

  .democontainer {
    transform: scale(.8);
  }

  .demo-section {
    margin-top: -25px;
    padding-top: 0;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .usecases {
    margin-top: -86px;
  }

  .use-case-container {
    padding-bottom: 30px;
    transform: scale(.8);
  }

  .use-case-logo {
    margin-bottom: 92px;
  }

  .whitetext {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .dropdown-toggle.nav-link.desktop-use-cases-menu-link {
    display: none;
  }

  .additional-use-cases-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .article-heading-in-list {
    font-size: 33px;
  }

  .html-embed-case-study {
    margin-bottom: -100px;
  }

  .subcopy {
    font-size: 16px;
  }

  .article-content-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-sales {
    font-size: 28px;
  }

  .product-card-title {
    font-size: 1.3rem;
  }

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

  .subcopy-copy {
    font-size: 18px;
  }

  .gradient-h2-heading-main {
    font-size: 40px;
  }

  .testimonial-landing {
    font-size: 22px;
  }

  .gradient-h2 {
    padding-top: 40px;
    font-size: 26px;
  }

  .author {
    font-size: 18px;
  }

  .testimonial-text {
    height: auto;
    font-size: 17px;
  }

  .testimonial-div {
    margin-left: 60px;
    margin-right: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonial-and-author-div {
    height: auto;
  }

  .blog-author {
    font-size: 40px;
  }

  .pab-listbox {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .top-lottie {
    padding-left: 200px;
    padding-right: 200px;
  }

  .gradient-h3-heading-main {
    font-size: 36px;
  }

  .top-tweet {
    padding-left: 140px;
    padding-right: 140px;
  }

  .black-h2 {
    font-size: 32px;
  }

  .text-block-13 {
    font-size: 15px;
  }

  .gradient-h2-blue {
    font-size: 40px;
  }

  .top-lottie-bigger {
    padding-left: 100px;
    padding-right: 100px;
  }

  .mobile-whitetext {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .homegridl, .homegridr {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .h2-main-grad {
    font-size: 62px;
  }

  .nav-login {
    text-align: center;
    display: block;
  }

  .nav-login.w--current {
    text-align: center;
    display: inline-block;
  }

  .body-3 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .heading-for-meeting, .subcopy5 {
    font-size: 18px;
  }

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

  .subcopy-about {
    font-size: 16px;
  }

  .gradient-h3-low-top-margin {
    font-size: 36px;
  }

  .pricingcontainer {
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .main-subcopy {
    font-size: 16px;
  }

  .h2-gradient {
    font-size: 31px;
  }

  .ndr-image-header {
    max-width: 90%;
  }

  .gradient-h2-ndr {
    font-size: 40px;
  }

  .image-header {
    max-width: 90%;
  }

  .container-25 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .testimonial-logo-narrow {
    height: 30px;
  }

  .h2-main-grad-copy {
    font-size: 62px;
  }

  .text-block-26 {
    font-size: 25px;
  }

  .h2-gradient-bold {
    font-size: 51px;
  }

  .gradient-h2-podcast {
    padding-top: 40px;
    font-size: 26px;
  }

  .product-section-scroll.hero {
    height: auto;
  }

  .client-brands-text {
    margin-left: 20px;
    margin-right: 20px;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .product-text-wrapper {
    display: block;
  }

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

  .home-container-100 {
    width: 90vw;
  }

  .html-embed-home-2.desktop {
    display: none;
  }

  .html-embed-home-2.mobile, .html-embed-home-2.mobile-on-home {
    display: flex;
  }

  .blog-container-grid {
    display: block;
  }

  .primary-nav-button {
    display: none;
  }

  .nav-login-2 {
    text-align: center;
    display: block;
  }

  .nav-login-2.w--current {
    text-align: center;
    display: inline-block;
  }

  .nav-menu-2 {
    background-color: #fff;
    box-shadow: 1px 1px 3px 5px #ddd;
  }

  .spacer {
    display: none;
  }

  .nav-logo-image {
    height: 32px;
  }

  .menu-button-2 {
    color: #fff;
    order: 1;
    padding: 10px;
    font-size: 17px;
    line-height: 1.3;
    transform: translate(18px);
  }

  .menu-button-2:hover {
    color: #00a2ff;
  }

  .menu-button-2.w--open {
    background-color: #0000;
  }

  .icon-2 {
    margin-right: 0;
    position: relative;
  }

  .link-block-2 {
    text-align: left;
    flex-direction: row;
    min-width: 90px;
    display: flex;
  }

  .menu-button-inner-3 {
    color: #212121;
    border-bottom: 2px solid #fff0;
    padding-right: 0;
    font-size: 17px;
    line-height: 1.3;
    position: relative;
    transform: translate(18px);
  }

  .menu-button-inner-3:hover {
    border-bottom-color: var(--royal-blue);
    color: var(--royal-blue);
  }

  .menu-button-inner-3.w--open {
    background-color: #0000;
  }

  .icon-2 {
    color: var(--logo-black);
    margin-right: 0;
    position: relative;
  }

  .h1-header-3 {
    font-size: 45px;
  }

  .container-26 {
    text-align: center;
    display: block;
  }

  .product-full-grid {
    grid-template-columns: 1fr;
  }

  .white-heading-main {
    font-size: 60px;
  }

  .nrr-container {
    grid-column-gap: 20px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .white-bullets {
    font-size: 16px;
  }

  .h1-main {
    font-size: 39px;
  }

  .h1-main.marginformenutop {
    margin-top: 6px;
    font-size: 24px;
  }

  .h1-main.marginformenutop.multicolor-gradient-span {
    font-size: 46px;
  }

  .customer-marquee-container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .menuicon {
    min-width: 60px;
    max-width: 60px;
  }

  .dcsm {
    font-size: 18px;
  }

  .centerh2.hideonmobile {
    display: none;
  }

  .h1blue-campaign {
    font-size: 32px;
  }

  .subhero {
    text-align: center;
    font-size: 18px;
  }

  .preheading, .postheading {
    font-size: 40px;
  }

  .heropreheading {
    font-size: 22px;
  }

  .tophero {
    padding-top: 120px;
    font-size: 60px;
  }

  .usecasetitle {
    font-size: 18px;
  }

  .mainheading.seagreen, .mainheading.darkheading {
    font-size: 35px;
  }

  .home-container {
    grid-template-columns: 1fr;
  }

  .subheading-main {
    font-size: 15px;
  }

  .subsubheading {
    font-size: 18px;
  }

  ._6bullets {
    grid-column-gap: 20px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .div-block-18-copy, .div-block-18-copy-copy {
    font-size: 16px;
  }

  .text-block-40 {
    font-size: 18px;
  }

  .dark-bullets {
    font-size: 16px;
  }

  .subtitle {
    font-size: 20px;
  }

  .bigh1black {
    font-size: 32px;
    line-height: 60px;
  }

  .roi-rich h2 {
    font-size: 23px;
  }

  .bold-text-7 {
    font-size: 30px;
    line-height: 40px;
  }

  .black-h2-copy {
    font-size: 36px;
  }

  .smallheading.seagreen, .smallheading.darkheading, .smallheading.white {
    font-size: 35px;
  }

  .text-span-45 {
    font-size: 21px;
  }

  .text-block-45 {
    font-size: 18px;
  }

  .castcatersto, .sub-castcatersto {
    font-size: 32px;
  }

  .want-vs-use-case, .usecase-heading, .miniheading, .white-h2 {
    font-size: 36px;
  }

  .inapp-h1 {
    font-size: 32px;
  }

  .subsubheadingtop {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 22px;
  }

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

  .exp-button {
    margin-left: 10px;
  }

  .link {
    font-size: 16px;
  }

  .bigh2black {
    font-size: 32px;
    line-height: 60px;
  }

  .richearlyind h2 {
    font-size: 23px;
  }

  .link-14 {
    font-size: 14px;
  }

  .examples-h1 {
    font-size: 32px;
    line-height: 60px;
  }

  .castcatersto-sub {
    font-size: 32px;
  }

  .seriestitle {
    font-size: 32px;
    line-height: 60px;
  }

  .rich h2 {
    font-size: 23px;
  }

  .rich img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .white-headingtop {
    font-size: 36px;
  }

  .testimonial-container-wide {
    grid-template-columns: 1fr;
  }

  .prod-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rhpe h2 {
    font-size: 23px;
  }

  .rhpe img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .herosub1 {
    font-size: 18px;
  }

  .heromain {
    font-size: 56px;
  }

  .figure {
    margin-left: 140px;
    margin-right: 140px;
  }

  .herosubsub {
    font-size: 19px;
  }

  .divide-work {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 15px;
  }

  .customer-first {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
  }

  .divide-work2 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 15px;
  }

  .herosub-copy {
    font-size: 18px;
  }

  .text-block-51 {
    font-size: 25px;
  }

  .herowhite {
    font-size: 18px;
  }

  .subsubheadingtop-left {
    font-size: 15px;
  }

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

  .rich-slides h2 {
    font-size: 23px;
  }

  .rich-slides img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rich-slides figure {
    margin-bottom: 60px;
  }

  .castcatersto-short {
    font-size: 32px;
  }

  .herosub1-copy {
    font-size: 29px;
  }

  .sub1 {
    font-size: 24px;
  }

  .head2 {
    font-size: 27px;
  }

  .bold-text-11 {
    font-size: 36px;
  }

  .herosub1-00 {
    font-size: 18px;
  }

  .sub2 {
    font-size: 24px;
  }

  .links {
    font-size: 14px;
  }

  .first-then {
    margin-left: 60px;
    margin-right: 60px;
  }

  .head3 {
    padding-left: 100px;
    padding-right: 100px;
    font-size: 16px;
  }

  .withaicsm {
    padding-left: 40px;
    padding-right: 40px;
  }

  .flags {
    margin-left: 60px;
    margin-right: 60px;
  }

  .sub-narrow {
    font-size: 18px;
  }

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

  .centerh2-copy.hideonmobile {
    display: none;
  }

  .with-ai-csms {
    font-size: 18px;
  }

  .subtext {
    font-size: 15px;
  }

  .richwithcode h2 {
    font-size: 23px;
  }

  .richwithcode img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .richaudiogram h2 {
    font-size: 23px;
  }

  .richaudiogram img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .richcoauto h2 {
    font-size: 23px;
  }

  .richcoauto img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-link {
    font-size: 18px;
  }

  .home-container-secret {
    grid-template-columns: 1fr;
  }

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

  .exp-embedded {
    margin-left: 10px;
  }

  .demo-html-iframe-wrapper-green {
    width: 90vw;
  }

  .bigh1black-copy, .bigh1black-sub-copy {
    font-size: 32px;
    line-height: 60px;
  }

  .richagents h2 {
    font-size: 23px;
  }

  .richagents img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subtext1 {
    font-size: 18px;
  }
}

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

  blockquote {
    font-size: 16px;
  }

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

  .hero-section.hero {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-3-columns {
    flex-direction: column;
  }

  .card-description {
    font-size: 16px;
  }

  .container-flex {
    padding-left: 24px;
    padding-right: 24px;
  }

  .featured-text {
    margin-bottom: 40px;
  }

  .footer-menu {
    flex-wrap: wrap;
  }

  .brand {
    padding-left: 0;
  }

  .footer-brand {
    flex-direction: column;
    flex: 0 100%;
    align-self: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }

  .cta.bg-dark {
    padding-bottom: 20px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .subfooter {
    text-align: left;
  }

  .heading {
    font-size: 26px;
  }

  .case-study-series-heading {
    text-align: center;
    font-size: 20px;
  }

  .testimonial.whitetext {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
  }

  .testimonialuser.contrain {
    margin-left: 0;
    display: inline-block;
  }

  .get-started-form {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .gradient-text {
    font-size: 18px;
  }

  .formwide {
    min-width: 350px;
  }

  .arrow-down {
    margin-left: 0;
    padding-bottom: 10px;
    font-size: 18px;
  }

  .arrow-down-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .finance-top-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .finance-top-section.bg-dark {
    display: block;
  }

  .footersection {
    padding-left: 20px;
    padding-right: 20px;
  }

  .notreadycontainer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .headng-cont {
    font-size: 32px;
  }

  .html-embed-home {
    margin-top: -160px;
    margin-bottom: -130px;
  }

  .formwide-honey-pot {
    min-width: 350px;
  }

  .democontainer {
    display: none;
    transform: scale(.6);
  }

  .demo-section {
    margin-top: -38px;
  }

  .footer {
    padding: 40px 20px;
  }

  .usecases {
    margin-top: -105px;
  }

  .use-case-logo {
    max-width: 50%;
    margin-bottom: 178px;
  }

  .testmonials-main {
    margin-top: 0;
    display: block;
  }

  .column {
    text-align: center;
  }

  .whitetext {
    margin-top: -10px;
    margin-bottom: 48px;
    font-size: 16px;
    display: none;
  }

  .techstars {
    margin-top: 40px;
  }

  .additional-use-cases-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .article-heading-in-list {
    font-size: 22px;
    line-height: 1.3;
  }

  .html-embed-case-study {
    margin-bottom: -223px;
  }

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

  .copy-container {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .heading-sales {
    font-size: 26px;
  }

  .imageinfooter {
    margin-top: 40px;
  }

  .letstalkemailsubmitform {
    min-width: 350px;
  }

  .contact-form-flex-letstalk {
    align-items: center;
  }

  .html-embed-home-xfinity {
    margin-bottom: auto;
    display: none;
  }

  .product-card-title {
    font-size: 1.3rem;
  }

  .gradient-heading.gradient-text {
    font-size: 20px;
  }

  .demo-button {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-radius: 10px;
    font-size: 20px;
    display: inline-block;
  }

  .product-list-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .customer-list {
    font-size: 15px;
  }

  .column-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-post-list-header {
    margin-top: 20px;
    margin-left: 0;
    font-size: 1.4em;
  }

  .blog-post-collection-item {
    display: block;
  }

  .blog-post-summary {
    margin-left: 0;
  }

  .image-13 {
    max-width: 200px;
  }

  .h1-gradient-centered {
    font-size: 23px;
  }

  .image-14 {
    width: 100px;
  }

  .subcopy-copy {
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 16px;
  }

  .gradient-h2-heading-main {
    font-size: 28px;
  }

  .primarycta {
    font-size: 18px;
  }

  .testmonials-landing {
    margin-top: 0;
    display: block;
  }

  .testimonial-landing {
    text-align: center;
    padding-top: 10px;
    font-size: 21px;
  }

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

  .columns {
    display: block;
  }

  .testimonial-logo {
    display: inline-block;
  }

  .testimonial-and-author-div {
    height: auto;
  }

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

  .pab-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pab-listbox {
    grid-template-columns: 1fr 1fr;
  }

  .top-lottie {
    padding-left: 60px;
    padding-right: 60px;
  }

  .gradient-h3-heading-main {
    font-size: 28px;
  }

  .top-tweet {
    padding-left: 60px;
    padding-right: 60px;
  }

  .black-h2 {
    font-size: 25px;
  }

  .gradient-h2-blue {
    font-size: 28px;
  }

  .top-lottie-bigger {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mobile-demo-container {
    display: block;
  }

  .mobile-whitetext {
    margin-top: -10px;
    margin-bottom: 48px;
    font-size: 16px;
    display: block;
  }

  .homegridl {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
  }

  .homegridr {
    flex-direction: column-reverse;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
  }

  .h2-main-grad {
    font-size: 42px;
  }

  .heading-for-meeting {
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 16px;
  }

  .subcopy5 {
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 15px;
  }

  .about-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-listbox {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: ".";
    grid-auto-columns: 1fr;
  }

  .subcopy-about {
    text-align: center;
    font-size: 15px;
  }

  .gradient-h3-low-top-margin {
    font-size: 28px;
  }

  .main-subcopy {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .h2-gradient {
    font-size: 23px;
  }

  .gradient-h2-ndr {
    font-size: 28px;
  }

  .rte-article-webinar h4 {
    margin-top: 60px;
  }

  .container-25 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .testimonial-logo-narrow {
    display: inline-block;
  }

  .video-section {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .h2-main-grad-copy {
    font-size: 42px;
  }

  .h2-gradient-bold {
    font-size: 38px;
  }

  .gradient-h2-podcast {
    font-size: 24px;
  }

  .bold-text-6, .bold-text-6-copy {
    font-size: 17px;
  }

  .hero-button-spacer {
    min-width: 100%;
    min-height: 30px;
  }

  .product-section-scroll.desktop {
    display: none;
  }

  .client-brands-text {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
  }

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

  .blog-card-text {
    font-size: 17px;
  }

  .button-wrapper, .blog-card-image.desktop {
    display: block;
  }

  .html-embed-home-2 {
    margin-top: -130px;
    margin-bottom: -100px;
    transform: scale(.65);
  }

  .html-embed-home-2.desktop {
    display: none;
  }

  .html-embed-home-2.mobile, .html-embed-home-2.mobile-on-home {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    transform: none;
  }

  .hero-button-wrappers {
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-paragraph-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  .client-brands-text-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .blog-card.desktop {
    display: none;
  }

  .brand-2 {
    padding-left: 0;
  }

  .hero-paragraph-2 {
    font-size: 16px;
  }

  .h1-header-3 {
    font-size: 35px;
  }

  .white-heading-main {
    font-size: 40px;
  }

  .rte-article-scale101 p, .rte-article-scale101 li {
    font-size: 16px;
  }

  .nrr-container {
    grid-column-gap: 20px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .white-bullets {
    font-size: 15px;
  }

  .h1-main {
    font-size: 23px;
  }

  .h1-main.marginformenutop {
    font-size: 27px;
  }

  .h1-main.marginformenutop.multicolor-gradient-span {
    font-size: 36px;
  }

  .customer-marquee-container {
    width: 100%;
  }

  .flex-horz.flip-svp {
    flex-direction: column;
  }

  .producth3 {
    font-size: 18px;
  }

  .productpara {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .dcsm, .button {
    font-size: 16px;
  }

  .homevideoembed {
    padding-left: 10px;
    padding-right: 10px;
  }

  .h1blue-campaign {
    font-size: 26px;
  }

  .subhero {
    font-size: 12px;
  }

  .presentation-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .transcripts-section {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-section, .toc-links {
    padding-left: 10px;
    padding-right: 10px;
  }

  .preheading, .postheading {
    font-size: 28px;
  }

  .label {
    padding-left: 0;
  }

  .heropreheading {
    font-size: 13px;
  }

  .prodpagetopcontainer {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .use-case-image {
    width: 100%;
  }

  .tophero {
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 38px;
  }

  .html-embed-9 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .usecase-acc-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .usecase-detail {
    padding-right: 10px;
    font-size: 14px;
  }

  .prodherosub {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
  }

  .subhead {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .mainheading.seagreen, .mainheading.darkheading {
    font-size: 26px;
  }

  .use-case-image-2-copy {
    width: 100%;
  }

  .use-case-image-3, .use-case-image-4 {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .subheading-main {
    font-size: 14px;
  }

  .subsubheading {
    font-size: 15px;
  }

  ._6bullets {
    grid-column-gap: 20px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .text-block-40, .hero-subheading-1 {
    font-size: 14px;
  }

  .dark-bullets {
    font-size: 15px;
  }

  .subtitle {
    font-size: 22px;
  }

  .quotes, .quotes-ps {
    grid-row-gap: 16px;
  }

  .bigh1black {
    font-size: 30px;
    line-height: 40px;
  }

  .black-h2-copy {
    font-size: 24px;
  }

  .productpara-copy {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .smallheading.seagreen, .smallheading.darkheading, .smallheading.white {
    font-size: 26px;
  }

  .text-span-45 {
    font-size: 15px;
    line-height: 1.3;
  }

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

  .castcatersto {
    font-size: 18px;
  }

  .want-vs-use-case, .usecase-heading, .miniheading, .white-h2, .inapp-h1 {
    font-size: 24px;
  }

  .subsubheadingtop {
    font-size: 17px;
  }

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

  .link {
    font-size: 24px;
  }

  .bigh2black {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-subheading-2 {
    font-size: 14px;
  }

  .examples-section {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .examples-h1 {
    font-size: 30px;
    line-height: 40px;
  }

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

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

  .castcatersto-sub {
    font-size: 25px;
  }

  .seriestitle {
    font-size: 30px;
    line-height: 40px;
  }

  .rich img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-post-list-header-top, .blog-post-list-header-top-top {
    margin-top: 20px;
    margin-left: 0;
    font-size: 1.4em;
  }

  .white-headingtop {
    font-size: 24px;
  }

  .testimonial-container-wide {
    grid-template-columns: 1fr;
  }

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

  .prod-grid {
    grid-row-gap: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .rhpe img {
    padding-left: 0;
    padding-right: 0;
  }

  .herosub1 {
    font-size: 14px;
  }

  .herosub1.bolder {
    font-size: 20px;
  }

  .heromain {
    font-size: 43px;
  }

  .herosubsub {
    font-size: 14px;
  }

  .divide-work {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .customer-first {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .divide-work2 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .herosub-copy {
    font-size: 14px;
  }

  .text-block-51 {
    font-size: 27px;
  }

  .herowhite {
    font-size: 14px;
  }

  .subsubheadingtop-left {
    font-size: 13px;
  }

  .cell-10 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .text-block-53 {
    font-size: 17px;
  }

  .herosub2 {
    font-size: 12px;
  }

  .herosub2.bolder {
    font-size: 20px;
  }

  .text-block-54 {
    font-size: 13px;
  }

  .rich-slides img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .rich-slides figure {
    margin-bottom: 40px;
  }

  .castcatersto-short {
    font-size: 22px;
  }

  .herosub1-copy {
    font-size: 13px;
  }

  .herosub1-copy.bolder {
    font-size: 20px;
  }

  .herosublink {
    font-size: 12px;
  }

  .herosublink.bolder {
    font-size: 20px;
  }

  .herosub100 {
    font-size: 15px;
  }

  .herosub100.bolder {
    font-size: 20px;
  }

  .sub1 {
    font-size: 18px;
  }

  .sub1.bolder, .head2 {
    font-size: 20px;
  }

  .bold-text-11 {
    line-height: 130%;
  }

  .herosub1-00 {
    font-size: 14px;
  }

  .herosub1-00.bolder {
    font-size: 20px;
  }

  .sub2 {
    font-size: 18px;
  }

  .sub2.bolder {
    font-size: 20px;
  }

  .links {
    font-size: 15px;
  }

  .div-block-25 {
    text-align: center;
  }

  .head3 {
    font-size: 15px;
  }

  .div-block-25-copy {
    text-align: center;
  }

  .withaicsm {
    padding-left: 60px;
    padding-right: 60px;
  }

  .sub {
    font-size: 15px;
  }

  .text-block-56 {
    font-size: 13px;
  }

  .flags {
    margin-left: 40px;
    margin-right: 40px;
  }

  .sub-narrow, .with-ai-csms {
    font-size: 14px;
  }

  .subtext {
    font-size: 15px;
  }

  .richwithcode img, .richaudiogram img, .richcoauto img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-link {
    font-size: 13px;
  }

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

  .text-block-5 {
    font-size: 13px;
  }

  .bigh1black-copy, .bigh1black-sub-copy {
    font-size: 30px;
    line-height: 40px;
  }

  .richagents img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .subtext1 {
    font-size: 13px;
  }
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .hero-section {
    padding: 40px 10px 80px;
  }

  .hero-section.hero {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .grid-3-columns {
    grid-column-gap: 20px;
  }

  .card-description {
    font-size: 16px;
  }

  .footer-menu {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .footer-link.primary-button-in-footer {
    width: 120px;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 20px;
    display: block;
  }

  .cta.bg-dark {
    padding-bottom: 10px;
  }

  .container {
    margin-top: 83px;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .heading {
    font-size: 22px;
  }

  .case-study-series-heading {
    font-size: 16px;
  }

  .cardicon {
    height: 42px;
  }

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

  .formwide {
    min-width: 270px;
  }

  .arrow-down {
    width: 33px;
    padding-bottom: 10px;
  }

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

  .finance-top-section, .footersection {
    padding: 80px 10px;
  }

  .notreadycontainer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .whiteboxheading, .formbigheading {
    font-size: 1.4em;
  }

  .headng-cont {
    font-size: 20px;
  }

  .html-embed-home {
    margin-top: -190px;
    margin-bottom: -160px;
  }

  .formwide-honey-pot {
    min-width: 270px;
  }

  .democontainer {
    padding-top: 0;
    transform: scale(.57);
  }

  .demo-section {
    margin-top: -10px;
    margin-bottom: 10px;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .usecases {
    margin-top: -184px;
  }

  .use-case-container {
    padding-bottom: 0;
    transform: scale(.65);
  }

  .use-case-logo {
    max-width: 70%;
    margin-top: 20px;
    margin-bottom: 200px;
  }

  .explain-bar-links {
    line-height: 1.6;
  }

  .use-case-links {
    font-size: 15px;
  }

  .use-case-link-heading {
    font-size: 1.4em;
  }

  .whitetext {
    margin-top: 6px;
    margin-bottom: 83px;
    font-size: 12px;
  }

  .techstars {
    margin-top: 40px;
  }

  .additional-use-cases-section {
    padding: 80px 10px;
  }

  .column-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .article-heading-in-list {
    font-size: 19px;
  }

  .html-embed-case-study {
    margin-top: 0;
    margin-bottom: -214px;
  }

  .subcopy {
    font-size: 14px;
  }

  .article-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .card-desc2 {
    font-size: 16px;
  }

  .heading-sales {
    font-size: 22px;
  }

  .letstalkemailsubmitform {
    min-width: 270px;
  }

  .xfinityimage {
    margin-bottom: 220px;
  }

  .xfinitydiv {
    margin-bottom: auto;
  }

  .html-embed-home-xfinity {
    margin-top: 0;
    margin-bottom: auto;
  }

  .product-card-title {
    font-size: 1.4rem;
  }

  .demo-para {
    font-size: 16px;
  }

  .testimonial-author {
    font-size: 15px;
  }

  .blog-post-list-header {
    font-size: 1em;
  }

  .blog-post-summary {
    font-size: 16px;
  }

  .image-13 {
    max-width: 120px;
  }

  .h1-gradient-centered {
    font-size: 18px;
    display: block;
  }

  .image-14 {
    width: 80px;
  }

  .subcopy-copy {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .bold-text-4 {
    font-size: 13px;
  }

  .gradient-h2-heading-main {
    font-size: 20px;
  }

  .primarycta {
    font-size: 16px;
  }

  .testimonial-landing {
    font-size: 15px;
  }

  .more-customer-stories {
    font-size: 23px;
  }

  .gradient-h2 {
    padding-top: 10px;
    font-size: 20px;
  }

  .rte-article p {
    font-size: 15px;
  }

  .rte-article h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-div {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-author {
    font-size: 30px;
  }

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

  .pab-listbox {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .pab-listitem {
    margin-left: 10px;
    margin-right: 10px;
  }

  .top-lottie {
    padding-left: 0;
    padding-right: 0;
  }

  .gradient-h3-heading-main {
    font-size: 20px;
  }

  .top-tweet {
    padding-left: 0;
    padding-right: 0;
  }

  .black-h2 {
    font-size: 19px;
  }

  .text-block-13 {
    font-size: 14px;
  }

  .gradient-h2-blue {
    font-size: 20px;
  }

  .top-lottie-bigger {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-whitetext {
    margin-top: 6px;
    margin-bottom: 83px;
    font-size: 12px;
  }

  .rte-about {
    padding-left: 10px;
    padding-right: 10px;
  }

  .rte-about p {
    font-size: 15px;
  }

  .rte-about h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-about blockquote {
    margin-left: 0;
  }

  .h2-main-grad {
    font-size: 24px;
  }

  .heading-for-meeting {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .text-span-21 {
    font-size: 14px;
  }

  .subcopy5 {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

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

  .about-li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .about-listbox {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         "."
                         "."
                         "Area";
    grid-auto-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-li-ins {
    margin-left: 10px;
    margin-right: 10px;
  }

  .subcopy-about {
    font-size: 13px;
  }

  .gradient-h3-low-top-margin {
    font-size: 20px;
  }

  .about-li-short {
    margin-left: 10px;
    margin-right: 10px;
  }

  .tier {
    font-size: 17px;
  }

  .main-subcopy {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .h2-gradient {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .bold-text-5 {
    font-size: 19px;
  }

  .rte-article-nrr p {
    font-size: 15px;
  }

  .rte-article-nrr h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-nrr blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .gradient-h2-ndr {
    font-size: 20px;
  }

  .rte-article-stren p {
    font-size: 15px;
  }

  .rte-article-stren h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-stren blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .rte-article-webinar p {
    font-size: 15px;
  }

  .rte-article-webinar h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-webinar blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .rte-article-patent p {
    font-size: 15px;
  }

  .rte-article-patent h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-patent blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .container-25 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .h2-main-grad-copy {
    font-size: 24px;
  }

  .text-block-26, .h2-gradient-bold {
    font-size: 22px;
  }

  .gradient-h2-podcast {
    padding-top: 10px;
    font-size: 18px;
  }

  .rte-article-podcast p {
    font-size: 15px;
  }

  .rte-article-podcast h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-podcast blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .bold-text-6, .rte-article-marie p {
    font-size: 15px;
  }

  .rte-article-marie h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-marie blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .rte-article-marie img {
    min-width: 200px;
  }

  .bold-text-6-copy {
    font-size: 15px;
  }

  .product-section-scroll.hero {
    height: auto;
    min-height: 0;
  }

  .client-brands-text {
    font-size: 13px;
  }

  .button-wrapper {
    display: block;
  }

  .html-embed-home-2 {
    transform: scale(.475);
  }

  .scroll-headline-container.landing-page {
    padding-left: 5px;
  }

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

  .hero-paragraph-wrapper {
    text-align: center;
  }

  .primary-nav-button.bottommargin {
    margin-bottom: 0;
  }

  .menu-button-2:hover {
    color: #10b981;
  }

  .cast-logo-white {
    max-width: 75px;
  }

  .rte-article-csmsecrets p {
    font-size: 15px;
  }

  .rte-article-csmsecrets h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-csmsecrets blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .rte-article-csmsecrets img {
    min-width: 200px;
  }

  .product-full-grid {
    grid-template-columns: 1fr;
  }

  .white-heading-main {
    font-size: 32px;
  }

  .rte-article-scale101 p {
    font-size: 16px;
  }

  .rte-article-scale101 h2 {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .rte-article-scale101 blockquote {
    margin-left: 10px;
    font-size: 16px;
  }

  .nrr-container {
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .white-bullets {
    font-size: 14px;
    line-height: 1.4;
  }

  .h1-main {
    font-size: 18px;
    display: block;
  }

  .h1-main.marginformenutop {
    margin-top: 3px;
    font-size: 18px;
  }

  .h1-main.marginformenutop.multicolor-gradient-span {
    font-size: 26px;
  }

  .icon-container-alt {
    width: 200px;
    height: 100px;
  }

  .marquee-horizontal-large {
    height: 130px;
  }

  .customer-marquee-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .producth3 {
    font-size: 16px;
  }

  .dcsm {
    font-size: 13px;
  }

  .button {
    color: var(--medium-sea-green);
    background-color: #10b98100;
    font-size: 14px;
    text-decoration: underline;
  }

  .h1blue-campaign {
    font-size: 24px;
  }

  .subhero {
    font-size: 13px;
  }

  .toc-links {
    flex-wrap: wrap;
    display: flex;
  }

  .preheading, .postheading {
    font-size: 20px;
  }

  .heropreheading {
    font-size: 15px;
  }

  .prodpagetopcontainer {
    max-width: 100%;
  }

  .tophero {
    padding-top: 80px;
    font-size: 23px;
  }

  .smallh1 {
    font-size: 21px;
  }

  .usecasetitle {
    padding-right: 15px;
  }

  .usecasetitle.big {
    font-size: 16px;
  }

  .item-content {
    padding-right: 10px;
  }

  .usecase-detail {
    margin-top: 10px;
    font-size: 12px;
  }

  .prodherosub {
    font-size: 16px;
  }

  .mainheading.seagreen, .mainheading.darkheading {
    font-size: 25px;
  }

  .subheading-main {
    font-size: 12px;
  }

  .subsubheading {
    font-size: 14px;
  }

  ._6bullets {
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .div-block-18-copy {
    line-height: 1.5;
  }

  .text-block-40 {
    font-size: 12px;
    line-height: 1.3;
  }

  .dark-bullets {
    font-size: 14px;
    line-height: 1.4;
  }

  .subtitle {
    font-size: 14px;
  }

  .bigh1black {
    font-size: 19px;
    line-height: 30px;
  }

  .roi-rich h2 {
    font-size: 17px;
  }

  .black-h2-copy {
    font-size: 18px;
  }

  .smallheading.seagreen, .smallheading.darkheading, .smallheading.white {
    font-size: 25px;
  }

  .text-span-45 {
    font-size: 12px;
    line-height: 1;
  }

  .text-block-45 {
    font-size: 14px;
  }

  .castcatersto {
    font-size: 15px;
  }

  .want-vs-use-case, .usecase-heading, .miniheading, .white-h2 {
    font-size: 18px;
  }

  .subsubheadingtop, .link {
    font-size: 14px;
  }

  .bigh2black {
    font-size: 19px;
    line-height: 30px;
  }

  .richearlyind h2 {
    font-size: 17px;
  }

  .examples-h1 {
    font-size: 19px;
    line-height: 30px;
  }

  .smaller-text {
    font-size: 13px;
  }

  .text-block-50 {
    font-size: 14px;
  }

  .castcatersto-sub {
    font-size: 19px;
  }

  .seriestitle {
    font-size: 19px;
    line-height: 30px;
  }

  .rich h2 {
    font-size: 17px;
  }

  .blog-post-list-header-top, .blog-post-list-header-top-top {
    font-size: 1em;
  }

  .white-headingtop {
    font-size: 18px;
  }

  .tier-copy {
    font-size: 17px;
  }

  .heading-3 {
    font-size: 21px;
  }

  .rhpe h2 {
    font-size: 17px;
  }

  .herosub1 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
  }

  .herosub1.bolder {
    font-size: 16px;
  }

  .heromain {
    font-size: 25px;
  }

  .herosubsub {
    font-size: 14px;
  }

  .divide-work {
    font-size: 11px;
  }

  .customer-first {
    font-size: 13px;
  }

  .divide-work2 {
    font-size: 11px;
  }

  .herosub-copy {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .text-block-51 {
    line-height: 1.2;
  }

  .herowhite {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .text-block-53 {
    font-size: 14px;
  }

  .herosub2 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
  }

  .herosub2.bolder {
    font-size: 16px;
  }

  .text-block-54 {
    font-size: 12px;
  }

  .rich-slides h2 {
    font-size: 17px;
  }

  .rich-slides figure {
    margin-bottom: 10px;
  }

  .castcatersto-short {
    font-size: 19px;
  }

  .herosub1-copy {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 11px;
  }

  .herosub1-copy.bolder {
    font-size: 16px;
  }

  .herosublink {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
  }

  .herosublink.bolder {
    font-size: 16px;
  }

  .herosub100 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .herosub100.bolder {
    font-size: 16px;
  }

  .sub1 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 18px;
  }

  .sub1.bolder {
    font-size: 16px;
  }

  .head2 {
    font-size: 15px;
  }

  .herosub1-00 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
  }

  .herosub1-00.bolder {
    font-size: 16px;
  }

  .sub2 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .sub2.bolder {
    font-size: 16px;
  }

  .first-then {
    max-width: 330px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .head3 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  .withaicsm {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sub {
    font-size: 12px;
  }

  .text-block-56 {
    font-size: 11px;
  }

  .code-embed {
    margin-left: 10px;
    margin-right: 10px;
  }

  .flags {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
  }

  .sub-narrow {
    font-size: 13px;
  }

  .bold-text-15 {
    font-size: 14px;
  }

  .with-ai-csms {
    font-size: 13px;
  }

  .subtext {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 11px;
  }

  .richwithcode h2, .richaudiogram h2, .richcoauto h2 {
    font-size: 17px;
  }

  .container-34 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-link {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
  }

  .text-block-5 {
    font-size: 11px;
  }

  .demo-html-iframe-wrapper-green.desktop {
    display: none;
  }

  .bigh1black-copy, .bigh1black-sub-copy {
    font-size: 19px;
    line-height: 30px;
  }

  .richagents h2 {
    font-size: 17px;
  }

  .subtext1 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
  }
}

#w-node-_0a48d633-48f7-326f-6bb8-0ec0265de5da-9308ff3b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-f246bd6d-5ec9-ffcd-fcc3-5e9d99da34b9-06247788 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d6b42c5f-177f-7c09-6003-131c01a08135-9308ff8d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-cc542841-6f8c-1cf8-409a-8607b4a713fc-9308fff6, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713fc-9309000f, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713fc-93090012 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2166b91b-2ede-0cfc-2225-49f5a6c8e645-93090023 {
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 1fr 1fr;
}

#w-node-d04cfb6d-76e1-7b7d-53fc-7a05b9439300-93090023 {
  grid-column: span 2 / span 2;
}

#w-node-_8ed379f8-f81a-0cd8-514a-d60c02c3edd9-93090023 {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 3fr;
}

#w-node-cc542841-6f8c-1cf8-409a-8607b4a713fc-9309007f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-fe8ff036 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-ca51d644-3822-a6f4-9a13-8ca69d77f8c3-75e4b816 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-_6330ffcc-8556-a42c-7a80-ac21e646e573-75e4b816 {
  grid-template-rows: auto auto auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-99adf5ea, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-5b820f89, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-51594d0c, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-bde2df13, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-239ff82e, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-eceb8636, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-79b8feea, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-9e6e398a, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-880814a1, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-2407ee68, #w-node-a1b61d1c-a330-bc42-78f8-b3c38b847523-ac16c0a8, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-ac16c0a8, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-b37de146, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-bcce22b5, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-2919abc2, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-7d2376ff, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-52a1bac4, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-99874ba9, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-0253bdf9, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-dcae767c, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-326f3ac3, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-e5f28eca, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-87efe4dd, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-425ccca2 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_0df077e3-4af0-1f6a-0936-4bbb49c8e926-9308ff3b, #w-node-_33911dad-de1a-5362-b3ba-0bd4d55353ef-9308ff3b, #w-node-ba9ae7ed-be97-25a9-5217-5b226bb22d51-9308ff3b, #w-node-_5ef5b77e-bb24-4b94-37d8-cb7f63c408d7-9308ff3b, #w-node-_37bde342-56b7-b431-3dc0-b062c7276dbc-9308ff3b, #w-node-_5d181b48-d5be-7e5e-6904-87719c445310-9c44530e, #w-node-bc24e404-81ee-6253-83df-d00fd9c90948-53fcf599 {
    order: -9999;
  }

  #w-node-d6b42c5f-177f-7c09-6003-131c01a08135-9308ff8d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4ab7c84a-af5c-4422-7f0d-114ea0d797e4-9308ffe7, #w-node-aa9ee138-5836-3b67-48b4-1e9903d0b2ce-93090050, #w-node-_2c6f361a-5a02-3fdf-fa46-5d268362291f-d28a9635, #w-node-ba9ae7ed-be97-25a9-5217-5b226bb22d51-00f12c08, #w-node-_37bde342-56b7-b431-3dc0-b062c7276dbc-00f12c08, #w-node-_5ef5b77e-bb24-4b94-37d8-cb7f63c408d7-00f12c08 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d6b42c5f-177f-7c09-6003-131c01a08135-9308ff8d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-fe8ff036, #w-node-ca51d644-3822-a6f4-9a13-8ca69d77f8c3-75e4b816, #w-node-_6330ffcc-8556-a42c-7a80-ac21e646e573-75e4b816, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-99adf5ea, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-5b820f89, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-51594d0c, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-bde2df13, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-239ff82e, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-eceb8636, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-79b8feea, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-9e6e398a, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-880814a1, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-2407ee68, #w-node-a1b61d1c-a330-bc42-78f8-b3c38b847523-ac16c0a8, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-ac16c0a8, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-b37de146, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-bcce22b5, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-2919abc2, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-7d2376ff, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-52a1bac4, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-99874ba9, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-0253bdf9, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-dcae767c, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-326f3ac3, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-e5f28eca, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-87efe4dd, #w-node-fd0ccd03-76e2-6013-c514-fabe79bfcb6b-425ccca2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0df077e3-4af0-1f6a-0936-4bbb49c8e926-9308ff3b, #w-node-_33911dad-de1a-5362-b3ba-0bd4d55353ef-9308ff3b, #w-node-ba9ae7ed-be97-25a9-5217-5b226bb22d51-9308ff3b, #w-node-_5ef5b77e-bb24-4b94-37d8-cb7f63c408d7-9308ff3b, #w-node-_37bde342-56b7-b431-3dc0-b062c7276dbc-9308ff3b, #w-node-_5d181b48-d5be-7e5e-6904-87719c445310-9c44530e, #w-node-bc24e404-81ee-6253-83df-d00fd9c90948-53fcf599 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d6b42c5f-177f-7c09-6003-131c01a08135-9308ff8d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4ab7c84a-af5c-4422-7f0d-114ea0d797e4-9308ffe7 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f4-9308fff6, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f8-9308fff6, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f4-9309000f, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f8-9309000f, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f4-93090012, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f8-93090012 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-aa9ee138-5836-3b67-48b4-1e9903d0b2ce-93090050 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f4-9309007f, #w-node-cc542841-6f8c-1cf8-409a-8607b4a713f8-9309007f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2c6f361a-5a02-3fdf-fa46-5d268362291f-d28a9635, #w-node-ba9ae7ed-be97-25a9-5217-5b226bb22d51-00f12c08, #w-node-_37bde342-56b7-b431-3dc0-b062c7276dbc-00f12c08, #w-node-_5ef5b77e-bb24-4b94-37d8-cb7f63c408d7-00f12c08 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


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