:root {
  --white: white;
  --black: #100f0d;
  --tertiary: #6ed5a6;
  --secondary: #210c6e;
  --primary: #562abd;
  --background: #f4f3f6;
}

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

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

body {
  background-color: var(--white);
  color: var(--black);
  cursor: none;
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: Poppins, sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  cursor: none;
  text-decoration: underline;
}

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

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

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 4rem;
}

figcaption {
  opacity: .56;
  text-align: center;
  margin-top: 5px;
  font-size: .875rem;
}

.text-big {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.text-small {
  font-size: .875rem;
  line-height: 1.15;
}

.bold-text {
  transition: opacity .2s ease-in-out;
}

.style-guide-sidebar {
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 240px;
  min-height: 100vh;
  padding: 2em;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.text-regular {
  font-size: 1.25rem;
  line-height: 1.6;
}

.style-guide-class {
  color: #fcff75;
  background-color: #131617;
  border-radius: 8px;
  margin-bottom: 16px;
  margin-right: 8px;
  padding: 4px 16px;
  display: inline-block;
}

.style-guide-section {
  padding: 2.5em;
}

.style-guide-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
  justify-items: start;
  padding-top: 40px;
  padding-bottom: 40px;
}

.style-guide-link {
  opacity: .6;
  color: #131617;
  margin-top: .5em;
  padding-bottom: .5em;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
}

.style-guide-link.w--current {
  opacity: 1;
}

.style-guide-color-swatch {
  border-radius: 16px;
  align-items: flex-end;
  width: 100%;
  height: 10em;
  padding: 2em;
  display: flex;
  box-shadow: 0 4px 16px #0000001a, 0 8px 24px #0000001a;
}

.style-guide-list {
  flex-direction: column;
  display: flex;
}

.button {
  background-color: var(--tertiary);
  color: var(--secondary);
  text-align: center;
  white-space: nowrap;
  cursor: none;
  border: 0 solid #000;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
  display: flex;
}

.button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
  background-image: none;
}

.button.ghost {
  grid-column-gap: 1rem;
  border-width: 1px;
  border-color: var(--primary);
  color: var(--primary);
  background-color: #0000;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.button.ghost:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.white {
  background-color: var(--white);
  color: var(--secondary);
  flex: none;
}

.button.white:hover {
  background-color: #f1ecff;
}

.button.submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.button.cta:hover {
  color: var(--secondary);
  background-color: #6ed5a6cc;
}

.button.with-icon {
  grid-column-gap: 1rem;
}

.button.with-icon.ghost {
  margin-left: 0;
  margin-right: 0;
}

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

.button.primary:hover {
  background-color: var(--secondary);
}

.style-guide-logo {
  filter: invert();
  width: 160px;
  margin-bottom: 24px;
}

.text-large {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

.text-large.testimonials-title {
  margin-bottom: 0;
}

.text-big-old {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.text-huge {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.container {
  z-index: 5;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.navigation {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container.capabilities {
  height: 400vh;
}

.style-guide {
  background-color: #0c203b0d;
  padding-left: 240px;
  display: flex;
  position: relative;
}

.grid-3-cols {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 1em;
  display: grid;
}

.grid-3-cols.margin-bottom {
  grid-template-rows: auto;
  margin-bottom: 2em;
}

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

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section.hero {
  background-color: var(--secondary);
  color: var(--background);
  padding-top: 13rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.section.capabilities {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section.blog {
  background-color: var(--background);
  overflow: hidden;
}

.section.about {
  overflow: hidden;
}

.section.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding-bottom: 0;
}

.section.blog-header {
  background-color: var(--secondary);
  color: var(--background);
  padding-top: 13rem;
  padding-bottom: 2rem;
}

.section.blog-top {
  padding-top: 4rem;
  position: relative;
}

.section.popular-posts {
  background-color: var(--primary);
  color: var(--white);
}

.section.article-header {
  padding-top: 13rem;
}

.section.article-img, .section.article-content-wrapper {
  padding-top: 0;
}

.page-padding {
  padding-left: 4rem;
  padding-right: 4rem;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

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

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

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

.header {
  z-index: 20;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
}

.logo {
  filter: invert();
  border-radius: 0;
  align-items: flex-start;
  width: 9.6875rem;
  height: 1.5rem;
  display: flex;
  overflow: hidden;
}

.logo.w--current {
  flex-direction: column;
  align-items: flex-start;
}

.logo-hidden {
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  align-items: flex-start;
  width: 8.625rem;
  height: 3rem;
  margin-left: 0%;
  display: flex;
  overflow: hidden;
}

.nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
  font-size: 1.125rem;
  display: flex;
}

.nav-link {
  grid-column-gap: .5rem;
  color: var(--background);
  background-image: url('../images/underline.jpg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link.w--current {
  background-size: auto .125rem;
}

.nav-link.with-icon.w--current {
  margin-right: 1.25rem;
}

.nav-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.hero-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 6fr 2fr 4fr;
  margin-bottom: 10rem;
}

.hero-marquee-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  place-items: center;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  display: grid;
}

.hero-marquee-wrapper.to-left {
  justify-content: end;
  margin-top: 4rem;
}

.hero-marquee {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  place-items: center;
  display: grid;
}

.hero-marquee-item {
  color: #8c69de;
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 1.3;
}

.hero-marquee-item.alt {
  opacity: .56;
}

.grid-capabilities {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4rem;
  display: grid;
  position: sticky;
  top: 8rem;
}

.capability-component {
  border-bottom: 1px solid var(--white);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.capability-number {
  margin-bottom: 2rem;
  font-weight: 500;
}

.capability-title, .capability-description {
  margin-bottom: 2rem;
}

.no-padding {
  margin-bottom: 0;
}

.grid-about {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 5fr 1fr 6fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-about.one-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr;
  grid-auto-columns: 3.25fr;
  display: flex;
}

.about-pics {
  width: 90%;
  position: relative;
  top: -5%;
}

.rich-text p {
  margin-bottom: 2rem;
}

.about-links {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: flex-start start;
  display: grid;
}

.about-link {
  color: var(--primary);
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.about-link:hover {
  color: var(--secondary);
}

.about-link-icon {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.footer-headline, .footer-headline.text-2xlarge {
  max-width: 800px;
}

.footer-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 3fr 2fr 2fr 5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: grid;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-title.text-regular {
  margin-bottom: .75rem;
}

.footer-link {
  opacity: .56;
  color: var(--white);
  text-decoration: none;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: 1;
}

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

.footer-text {
  opacity: .56;
}

.newsletter-form {
  margin-top: 0;
  margin-bottom: 0;
}

.input-field {
  border: 1px solid var(--primary);
  height: 3.5rem;
  color: var(--primary);
  background-color: #0000;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
  margin-bottom: 0;
  padding: .75rem 1rem;
  font-size: 1.25rem;
  line-height: 1;
}

.input-field::placeholder {
  color: #100f0d8f;
  font-size: 1.25rem;
  line-height: 1;
}

.input-field.white {
  border-color: var(--white);
  color: var(--white);
}

.input-field.white::placeholder {
  color: #ffffff8f;
}

.form-wrapper {
  width: 100%;
  display: flex;
}

.sub-footer {
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  display: flex;
}

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

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

.testimonial-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.testimonial-img-wrapper {
  border-radius: 1rem;
  flex: none;
  width: 100%;
  height: 20rem;
  position: relative;
  overflow: hidden;
}

.testimonial-img-wrapper.grid {
  height: 100%;
}

.testimonial-img-wrapper.mobile-only {
  display: none;
}

.testimonial-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.testimonial-content {
  flex: 1;
}

.testimonial-source {
  opacity: 1;
  margin-top: .75rem;
}

.text-metadata {
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.3;
}

.text-transparent {
  opacity: .56;
}

.testimonail-content {
  flex: 1;
}

.divider {
  border-top: 1px solid #c4c4c4;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.about-pic-wrapper {
  position: relative;
  overflow: hidden;
}

.about-pic-wrapper._01 {
  border-radius: 1rem;
  width: 100%;
  padding-bottom: 100%;
}

.about-pic-wrapper._02 {
  border-radius: 1rem;
  width: 40%;
  padding-bottom: 40%;
  position: absolute;
  bottom: -20%;
  right: -15%;
}

.about-pic {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 20px;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.splide.featured-posts-slider {
  margin-top: 4rem;
}

.splide__list {
  display: flex;
}

.splide__slide {
  flex: none;
  width: 60rem;
}

.post-img-wrapper {
  border-radius: 1rem;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.post-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog-categories-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  display: flex;
}

.blog-category-link {
  border: 1px solid var(--black);
  opacity: .56;
  color: var(--black);
  white-space: nowrap;
  border-radius: .25rem;
  padding: .25rem .5rem;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
}

.blog-category-link.color {
  border-color: var(--primary);
  opacity: 1;
  color: var(--primary);
}

.blog-category-link.color.w--current, .blog-category-link.color.active {
  background-color: var(--primary);
  color: var(--white);
}

.post-card-title {
  margin-bottom: 0;
  font-size: 2.25rem;
  line-height: 1.1;
}

.post-card-meta {
  opacity: .56;
  display: flex;
}

.post-card-meta.text-metadata {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.reading-time {
  display: flex;
}

.arrow-bubble {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  opacity: 0;
  border-radius: 9rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 9rem;
  margin-top: -4.5rem;
  margin-left: -4.5rem;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
}

.slider-wrapper {
  position: relative;
}

.slide-trigger {
  z-index: 9;
  width: 12rem;
  height: 42rem;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slide-trigger.left {
  margin-left: -4rem;
  inset: 0% auto 0% 0%;
}

.slide-trigger.right {
  margin-right: -4rem;
  inset: 0% 0% 0% auto;
}

.post-card-link {
  color: var(--black);
  margin-top: .75rem;
  margin-bottom: .75rem;
  text-decoration: none;
}

.post-card-link.reverse {
  color: var(--white);
}

.text-mark {
  background-image: url('../images/underline.jpg');
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% .5rem;
}

.text-mark.inactive {
  background-size: 0% .5rem;
}

.text-reveal {
  line-height: .4;
}

.text-reveal-wrapper {
  margin-bottom: -.25em;
  line-height: 1.4;
  display: inline-block;
  overflow: hidden;
}

.text-reveal-content {
  display: inline-block;
}

.wrapper-hidden {
  overflow: hidden;
}

.testimonial-img-reveal {
  background-color: var(--tertiary);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 100%);
}

.success-message {
  background-color: var(--tertiary);
  color: var(--secondary);
  text-align: center;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1rem;
}

.error-message {
  color: var(--secondary);
  text-align: center;
  background-color: #ecc7c8;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1rem;
}

.footer-cta {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.testimonials-slider {
  display: none;
}

.menu-trigger {
  cursor: none;
  background-color: #0000;
  border-radius: .5rem;
  width: 2rem;
  height: 2rem;
  display: block;
  position: relative;
}

.menu-trigger-bar {
  background-color: var(--tertiary);
  width: 2rem;
  height: .1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
}

.menu-trigger-bar.top {
  transform: translate(-50%, -150%);
}

.menu-trigger-bar.bottom {
  transform: translate(-50%, 150%);
}

.logo-symbol {
  width: 1rem;
  height: auto;
}

.slider-pagination {
  grid-column-gap: .75rem;
  margin-top: 2rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.slider-pagination-page {
  cursor: none;
  background-color: #562abd33;
  border-radius: 1rem;
  width: .75rem;
  height: .5rem;
  transition: all .2s ease-in-out;
}

.slider-pagination-page.is-active {
  background-color: var(--primary);
  width: 2rem;
}

.nav-link-icon {
  flex: none;
  width: .75rem;
  height: .75rem;
  margin-left: .5rem;
  position: absolute;
  left: 100%;
}

.nav-dropdown {
  background-color: var(--secondary);
  opacity: 0;
  border-radius: .5rem;
  flex-direction: column;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 8px 24px -16px #000;
}

.blog-top-bg {
  background-color: var(--secondary);
  height: 40%;
  position: absolute;
  inset: 0% 0% auto;
}

.blog-categories {
  grid-column-gap: .5rem;
  display: flex;
}

.text-medium {
  font-size: 1.5rem;
  line-height: 2rem;
}

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

.blog-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4rem;
  display: grid;
}

.blog-pagination {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 4rem;
  display: grid;
}

.button-icon {
  width: 1.5rem;
  height: 1.5rem;
}

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

.newsletter-block {
  grid-column-gap: 2rem;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 4rem;
  padding: 2em;
  display: grid;
}

.text-light {
  opacity: .56;
}

.article-header-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 10fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.article-back {
  width: 4.5rem;
  height: 4.5rem;
  color: var(--primary);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.article-back-icon {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.article-categories, .article-categories-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: inline-block;
}

.article-categories-item.text-metadata {
  margin-right: .25rem;
}

.article-img {
  border-radius: 1.5rem;
}

.article-content {
  flex-direction: column;
  align-items: flex-start;
}

.article-content h3 {
  font-size: 2.25rem;
  line-height: 1.1;
}

.article-content blockquote {
  border-left-width: 6px;
  border-left-color: var(--primary);
  margin-top: .5rem;
  margin-bottom: 1.5em;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  font-size: 1em;
  line-height: 1.6;
}

.article-content p {
  margin-bottom: 2rem;
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.article-content img {
  border-radius: 1.5rem;
}

.article-content a {
  color: var(--primary);
}

.article-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 2fr 8fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.article-title-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.article-back-bg {
  z-index: -1;
  background-color: var(--background);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.input-wrapper {
  width: 100%;
}

.newsletter-block-description {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.newsletter-footer {
  margin-top: 2em;
  margin-bottom: 0;
}

.element-hidden {
  padding-bottom: 1px;
  overflow: hidden;
}

.article-categories-text {
  display: inline-block;
}

.blog-main {
  transition: opacity .2s ease-in-out;
}

.blog-main.loading {
  opacity: 0;
}

.cursor-container {
  z-index: 30;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
}

.cursor {
  border-radius: 144px;
  justify-content: center;
  align-items: center;
  width: 144px;
  height: 144px;
  display: flex;
  transform: scale(.15);
}

.arrow-icon {
  z-index: 2;
  width: 24px;
  height: 24px;
  position: relative;
  transform: scale(0);
}

.body {
  cursor: none;
}

.cursor-dot {
  z-index: 1;
  background-color: var(--black);
  border-radius: 16px;
  width: 24px;
  height: 24px;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0);
}

.cursor-bg {
  z-index: 0;
  background-color: var(--primary);
  border-radius: 100%;
  position: absolute;
  inset: 0%;
}

.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: 260px;
  display: flex;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 1.125rem;
  }

  .button {
    padding: .666667em .888889rem .666667rem .888889em;
    font-size: 1rem;
  }

  .container {
    max-width: none;
  }

  .logo {
    filter: invert();
  }

  .nav {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 1em;
  }

  .nav-wrapper {
    font-size: 1rem;
  }

  .capability-title.text-big {
    font-size: 2rem;
  }

  .capability-description {
    font-size: 1rem;
  }

  .footer-links {
    grid-row-gap: .25em;
  }

  .footer-link {
    font-size: 1rem;
  }

  .footer-text {
    font-size: 1.1rem;
  }

  .input-field.white {
    font-size: 1em;
  }

  .post-img-wrapper {
    height: 60vh;
    max-height: 60vh;
  }

  .blog-category-link {
    font-size: .25em;
  }

  .post-card-title.text-xlarge {
    font-size: 2rem;
  }

  .arrow-bubble {
    width: 7rem;
    height: 7rem;
  }

  .slide-trigger {
    height: 60vh;
  }

  .text-mark {
    background-size: 100% .5rem;
  }

  .element-hidden {
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  .text-large.testimonials-title {
    margin-bottom: 2rem;
  }

  .page-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .footer-grid {
    grid-template-columns: 3fr 2fr 2fr;
  }

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

  .testimonial-img-wrapper.grid {
    padding-bottom: 100%;
  }

  .splide__slide {
    width: 500px;
  }

  .slide-trigger.left, .slide-trigger.right {
    display: none;
  }

  .newsletter-block {
    grid-template-columns: 1fr 1fr;
  }

  .article-wrapper {
    grid-template-columns: 1fr;
  }

  .cursor-container {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1rem;
  }

  p {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .text-big {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .style-guide-sidebar {
    display: none;
  }

  .text-regular {
    font-size: .875rem;
  }

  .button {
    margin-top: auto;
    padding: .5rem .75rem;
  }

  .button.submit {
    border-radius: .25rem;
    height: 3rem;
  }

  .button.cta {
    padding: .75rem 1rem;
  }

  .text-large {
    font-size: 1.75em;
    line-height: 1.15;
  }

  .text-huge {
    margin-bottom: .5em;
    font-size: 2.125rem;
    line-height: 1.25;
  }

  .container.capabilities {
    height: auto;
  }

  .style-guide {
    padding-left: 0;
  }

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

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

  .section.capabilities {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section.blog-header {
    padding-top: 6rem;
  }

  .section.blog-top {
    padding-top: 0;
  }

  .section.bg-light {
    overflow: hidden;
  }

  .section.article-header {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .page-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  .hero-marquee-wrapper.to-left {
    margin-top: 2rem;
  }

  .hero-marquee-item {
    font-size: 1.25rem;
  }

  .grid-capabilities {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    position: static;
  }

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

  .about-pics {
    width: 50%;
    margin-left: 20%;
  }

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

  .input-field {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    height: 3rem;
  }

  .input-field::placeholder {
    font-size: 1rem;
  }

  .form-wrapper {
    grid-row-gap: .5rem;
    flex-direction: column;
  }

  .sub-footer {
    grid-row-gap: .75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .text-metadata {
    font-size: .875rem;
    line-height: 1.5;
  }

  .divider {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .splide.featured-posts-slider {
    margin-top: 2rem;
  }

  .splide__slide {
    width: 85vw;
  }

  .post-img-wrapper.small {
    height: auto;
  }

  .post-card-title {
    font-size: 1.75rem;
  }

  .post-card-title.text-xlarge {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .text-mark {
    background-size: 100% 4px;
  }

  .footer-cta {
    flex-direction: column;
    display: flex;
  }

  .menu-trigger {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
  }

  .menu-trigger-bar {
    background-color: var(--tertiary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu-trigger-bar.top {
    transform: translate(-50%, -150%);
  }

  .menu-trigger-bar.bottom {
    transform: translate(-50%, 150%);
  }

  .nav-dropdown {
    padding: 1rem 1.5rem;
  }

  .blog-top-bg {
    height: auto;
    padding-bottom: 35%;
  }

  .blog-categories {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-bottom: .5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: auto;
  }

  .blog-grid {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .newsletter-block {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .article-header-grid {
    flex-direction: column;
    display: flex;
  }

  .article-back {
    display: none;
  }

  .article-content h3 {
    font-size: 1.5rem;
  }

  .article-content blockquote {
    font-size: 1.125rem;
  }

  .article-content h2 {
    font-size: 1.75rem;
    line-height: 1.14286;
  }

  .article-title-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .newsletter-block-description {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    margin-bottom: 1.5em;
  }
}

@media screen and (max-width: 479px) {
  .style-guide-sidebar {
    display: none;
  }

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

  .button {
    text-align: center;
  }

  .button.submit {
    height: 3rem;
  }

  .container.hero {
    flex: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .style-guide {
    padding-left: 0;
  }

  .section.hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .page-padding.hero {
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 2rem;
    display: flex;
  }

  .hero-grid {
    place-content: center;
    align-items: center;
    height: 100%;
  }

  .no-padding.text-regular.hero-description {
    max-width: 30ch;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .testimonials-grid {
    display: none;
  }

  .testimonial-img-wrapper.mobile-only {
    display: block;
  }

  .splide__list {
    flex-direction: row;
  }

  .splide__slide {
    width: 85vw;
  }

  .testimonials-slider {
    display: block;
  }

  .newsletter-block {
    grid-template-columns: 1fr;
  }
}

#w-node-_83306d7b-a8d6-f7a4-fd09-4118b042b8b8-2d5537e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64962917-e530-b865-24ff-259fdc1a2e0d-2d5537e3, #w-node-_1ace9385-396e-0099-ef16-bd36e08dcafb-2d5537e3 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: end;
}

#w-node-_51da5b13-01bb-5d27-2bfb-6678ae3f190e-2d5537e3, #w-node-_51da5b13-01bb-5d27-2bfb-6678ae3f1910-2d5537e3, #w-node-_51da5b13-01bb-5d27-2bfb-6678ae3f1912-2d5537e3, #w-node-_51da5b13-01bb-5d27-2bfb-6678ae3f1914-2d5537e3, #w-node-_51da5b13-01bb-5d27-2bfb-6678ae3f1916-2d5537e3, #w-node-_7ac9a340-004b-cf34-9c54-bb2337545e12-2d5537e3, #w-node-_7ac9a340-004b-cf34-9c54-bb2337545e14-2d5537e3, #w-node-_7ac9a340-004b-cf34-9c54-bb2337545e16-2d5537e3, #w-node-_7ac9a340-004b-cf34-9c54-bb2337545e18-2d5537e3, #w-node-_7ac9a340-004b-cf34-9c54-bb2337545e1a-2d5537e3, #w-node-_60c110c0-7be7-f37c-4558-7bc0143c51a0-2d5537e3, #w-node-_60c110c0-7be7-f37c-4558-7bc0143c51a2-2d5537e3, #w-node-_60c110c0-7be7-f37c-4558-7bc0143c51a4-2d5537e3, #w-node-_60c110c0-7be7-f37c-4558-7bc0143c51a6-2d5537e3, #w-node-_60c110c0-7be7-f37c-4558-7bc0143c51a8-2d5537e3, #w-node-_0fb2ee97-82c4-72db-62b0-3ed6b2ee5769-2d5537e3, #w-node-_0fb2ee97-82c4-72db-62b0-3ed6b2ee5767-2d5537e3, #w-node-_0fb2ee97-82c4-72db-62b0-3ed6b2ee576d-2d5537e3, #w-node-_0fb2ee97-82c4-72db-62b0-3ed6b2ee576f-2d5537e3, #w-node-_88d5ad6d-ffac-681e-6954-3d8ab36c7cb7-2d5537e3, #w-node-ca8b4299-7207-83a5-b427-3c7be2dfe9b5-2d5537e3, #w-node-c2b44d11-9595-d1d2-2472-4a059e85163f-2d5537e3, #w-node-c2b44d11-9595-d1d2-2472-4a059e851641-2d5537e3, #w-node-c2b44d11-9595-d1d2-2472-4a059e851643-2d5537e3, #w-node-c2b44d11-9595-d1d2-2472-4a059e851645-2d5537e3, #w-node-c2b44d11-9595-d1d2-2472-4a059e851647-2d5537e3, #w-node-c2b44d11-9595-d1d2-2472-4a059e851649-2d5537e3, #w-node-bce34e1c-f970-ae15-c754-6509a344208a-2d5537e3, #w-node-bce34e1c-f970-ae15-c754-6509a344208c-2d5537e3, #w-node-bce34e1c-f970-ae15-c754-6509a344208e-2d5537e3, #w-node-bce34e1c-f970-ae15-c754-6509a3442090-2d5537e3, #w-node-bce34e1c-f970-ae15-c754-6509a3442092-2d5537e3, #w-node-bce34e1c-f970-ae15-c754-6509a3442094-2d5537e3, #w-node-d9475c32-e53e-b18d-32e0-7643c03cfcfb-2d5537e3, #w-node-d9475c32-e53e-b18d-32e0-7643c03cfd02-2d5537e3, #w-node-d9475c32-e53e-b18d-32e0-7643c03cfd09-2d5537e3, #w-node-d9475c32-e53e-b18d-32e0-7643c03cfd10-2d5537e3, #w-node-c54c9bb4-8153-86f3-473e-2fa090b4dec9-2d5537e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4deca-2d5537e3 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee2-2d5537e3 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee4-2d5537e3 {
  grid-area: 3 / 1 / 5 / 2;
  align-self: start;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee6-2d5537e3 {
  grid-area: 5 / 1 / 6 / 2;
  align-self: end;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee7-2d5537e3 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: stretch;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee9-2d5537e3 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: stretch;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4def2-2d5537e3 {
  grid-area: 2 / 2 / 5 / 3;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4def4-2d5537e3 {
  grid-area: 5 / 2 / 6 / 3;
  align-self: end;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4def5-2d5537e3 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: stretch;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4def7-2d5537e3 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: stretch;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4df00-2d5537e3 {
  grid-area: 1 / 3 / 5 / 4;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4df02-2d5537e3 {
  grid-area: 5 / 3 / 6 / 4;
  align-self: end;
}

#w-node-c54c9bb4-8153-86f3-473e-2fa090b4df03-2d5537e3 {
  grid-area: 1 / 1 / 5 / 2;
  align-self: stretch;
}

#w-node-eda1fc4f-f972-a8e0-089a-b0e3dc131238-2d5537e3 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: stretch;
}

#w-node-eda1fc4f-f972-a8e0-089a-b0e3dc13123a-2d5537e3 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: stretch;
}

#w-node-_147682c5-7a53-f957-6636-57a5ad8073d5-2d5537e3 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: stretch;
}

#w-node-_147682c5-7a53-f957-6636-57a5ad8073d7-2d5537e3 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: stretch;
}

#w-node-_8fa64f98-560f-0120-7c2f-2e9182df6b84-2d5537e3 {
  grid-area: 1 / 1 / 5 / 2;
  align-self: stretch;
}

#w-node-be91bec1-e90f-2c45-06c6-8e3a96f4feb2-96f4fea9, #w-node-be91bec1-e90f-2c45-06c6-8e3a96f4febc-96f4fea9, #w-node-be91bec1-e90f-2c45-06c6-8e3a96f4fec8-96f4fea9, #w-node-be91bec1-e90f-2c45-06c6-8e3a96f4fed4-96f4fea9, #w-node-_45d63456-fe04-30fb-8be1-379e41fdb352-41fdb340 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e735409e-73e1-3aa5-788f-9b16cb1dc866-c15537e9 {
  justify-self: start;
}

#w-node-e735409e-73e1-3aa5-788f-9b16cb1dc86a-c15537e9 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

#w-node-b427e700-6733-0aea-a798-8a6dfbfe3b6f-c15537e9 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-bcb01360-3f13-7d1f-0c05-68991884e882-815537ea {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_6c2aa614-bb5e-68b1-775a-8e75e92af778-9f5537eb {
  justify-self: start;
}

#w-node-_6c2aa614-bb5e-68b1-775a-8e75e92af77c-9f5537eb {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

#w-node-_6c2aa614-bb5e-68b1-775a-8e75e92af786-9f5537eb {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_922fa674-34a1-9627-fd63-3482cfdd42c4-525537ec, #w-node-a18c2243-bf4d-487b-f6c4-0ec676b011c0-525537ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f5af0000-c5c9-337b-af48-e63d1ef11acd-525537ec {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f969e73d-76af-c710-bd0b-98ca7ad0a0c6-525537ec {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-b1c0dcdd-6ed9-d235-565b-cc7f4b985cce-525537ec {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_83306d7b-a8d6-f7a4-fd09-4118b042b8b8-2d5537e3 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_64962917-e530-b865-24ff-259fdc1a2e0d-2d5537e3 {
    grid-area: 2 / 1 / 3 / 2;
    align-self: auto;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4deca-2d5537e3 {
    grid-column-start: 2;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee4-2d5537e3 {
    grid-row: 2 / 3;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4dee6-2d5537e3 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4def2-2d5537e3 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4def4-2d5537e3 {
    grid-row: 3 / 4;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4df00-2d5537e3 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4df02-2d5537e3 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-be91bec1-e90f-2c45-06c6-8e3a96f4fed4-96f4fea9 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: auto;
  }

  #w-node-b427e700-6733-0aea-a798-8a6dfbfe3b6f-c15537e9 {
    grid-column: 2 / 3;
  }

  #w-node-bcb01360-3f13-7d1f-0c05-68991884e882-815537ea {
    grid-column-start: 2;
  }

  #w-node-f5af0000-c5c9-337b-af48-e63d1ef11acd-525537ec {
    grid-column: 1 / 2;
  }

  #w-node-f969e73d-76af-c710-bd0b-98ca7ad0a0c6-525537ec {
    grid-column-end: 2;
  }

  #w-node-b1c0dcdd-6ed9-d235-565b-cc7f4b985cce-525537ec {
    grid-column: 2 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_83306d7b-a8d6-f7a4-fd09-4118b042b8b8-2d5537e3 {
    grid-column-end: 2;
  }

  #w-node-c54c9bb4-8153-86f3-473e-2fa090b4deca-2d5537e3 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-be91bec1-e90f-2c45-06c6-8e3a96f4fed4-96f4fea9 {
    grid-row: 4 / 5;
    grid-column-end: 2;
  }

  #w-node-b427e700-6733-0aea-a798-8a6dfbfe3b6f-c15537e9, #w-node-bcb01360-3f13-7d1f-0c05-68991884e882-815537ea, #w-node-_6c2aa614-bb5e-68b1-775a-8e75e92af786-9f5537eb, #w-node-b1c0dcdd-6ed9-d235-565b-cc7f4b985cce-525537ec {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_07b2a951-ac0b-21f0-bcbc-212257fc6822-2d5537e3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6c2aa614-bb5e-68b1-775a-8e75e92af786-9f5537eb {
    grid-area: 2 / 1 / 3 / 2;
  }
}


