:root {
  --black: #0e0f10;
  --neutral-900: #141516;
  --neutral-400: #9c9c9c;
  --neutral-700: #212427;
  --primary-500: #e5bce6;
  --neutral-800: #18191b;
  --neutral-500: #666469;
  --neutral-600: #4c4b51;
  --r3: var(--black);
}

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

body {
  background-color: var(--black);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

h1 {
  color: #fff;
  letter-spacing: -.1rem;
  max-width: 1050px;
  margin-top: auto;
  margin-bottom: 2.5rem;
  font-family: Manrope, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 110%;
}

h2 {
  letter-spacing: -.05rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Manrope, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Maven Pro, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 110%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

h5 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Manrope, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

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

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

figcaption {
  text-align: center;
  margin-top: 5px;
}

.navbar-container {
  z-index: 0;
  border-bottom: 0px solid var(--neutral-900);
  background-color: var(--black);
  justify-content: space-between;
  align-items: center;
  margin-top: -1px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  position: static;
}

.navbar {
  background-color: #0000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link {
  color: var(--neutral-400);
  cursor: pointer;
  padding: 3rem 1rem;
  font-family: Maven Pro, sans-serif;
  transition: all .2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.w--current {
  color: #7866ff;
}

.button-group {
  grid-column-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 3rem;
  display: flex;
}

.button {
  color: var(--black);
  cursor: pointer;
  background-color: #00cbff;
  background-image: linear-gradient(45deg, #7866ffb3, #fff0);
  border: 1px solid #0e0f10;
  border-radius: .75rem;
  padding: 1rem 3rem;
  font-family: Maven Pro, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 6px 6px 20px 7px #0003;
}

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

.button.nav-button {
  padding: .75rem 1.5rem;
  font-size: .875rem;
}

.button.secondary-button {
  border: 1px solid var(--neutral-700);
  color: #fff;
  background-color: #0000;
}

.button.secondary-button:hover {
  border-color: var(--neutral-700);
  background-color: var(--neutral-700);
}

.button.secondary-button.dark-secondary-button {
  color: var(--black);
  border-style: none;
  border-color: #d0a9d1;
}

.button.secondary-button.dark-secondary-button:hover {
  background-color: #d0a9d1;
}

.button.dark-primary-button {
  background-color: var(--black);
  color: #fff;
  background-image: none;
  border-style: none;
  box-shadow: 4px 4px 20px 5px #0e0f104d;
}

.button.dark-primary-button:hover {
  outline-offset: 0px;
  color: var(--black);
  background-color: #fff;
  background-image: linear-gradient(285deg, #9c9c9c40, #fff);
  border-style: none;
  border-width: 0;
  border-radius: .7rem;
  outline: 3px #fff;
}

.button.pricing-button {
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}

.section {
  margin-bottom: 12.5rem;
}

.section.hero-section {
  border: 1px solid #0c0c0c;
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.footer {
  margin-top: 10rem;
  margin-bottom: 0;
}

.section.blogpost-hero-section {
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
  padding-top: 10rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.section.subpage-hero-section {
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.section.subpage-hero-section.shorterblock {
  margin-bottom: 2rem;
}

.section.subpage-hero-section.long {
  margin-bottom: 16rem;
}

.section.info-page-hero-section {
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
  padding-top: 7rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.section.info-page-section {
  border-bottom: 0px solid var(--neutral-700);
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.section.hide, .section.hide_mob {
  display: none;
}

.container {
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  min-height: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.container.hero-container {
  z-index: 4;
  text-align: center;
  margin-top: 5rem;
  padding-top: 0;
  position: static;
}

.container.hero-blog-container {
  z-index: 4;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  margin-top: 5rem;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.container.longer {
  padding-top: 10rem;
}

.container.longer.nosoolon.fjjdfjfd {
  padding-top: 4rem;
}

.container.forcards {
  display: block;
}

.container.highter {
  padding-top: 3rem;
}

.container.lololololololl {
  margin-top: -30px;
}

.chip {
  color: var(--primary-500);
  background-color: #2e2c33;
  border-radius: 100vw;
  margin-bottom: 1.6rem;
  padding: .25rem .75rem;
  display: flex;
}

.chip.pricing-chip {
  position: absolute;
  top: 7.5rem;
  right: auto;
}

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

.text-small.blogpost-date {
  color: var(--primary-500);
  margin-top: 1.5rem;
}

.text-small.blogpost-header-date {
  color: var(--primary-500);
  margin-top: 3rem;
}

.text-medium {
  font-size: 1.25rem;
  line-height: 150%;
}

.text-medium.hero-paragraph {
  color: var(--neutral-400);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-family: Meera Inimai, sans-serif;
  font-weight: 400;
}

.text-medium.subpage-hero-paragraph {
  color: var(--neutral-400);
  max-width: 680px;
  margin-bottom: 0;
  font-family: Meera Inimai, sans-serif;
}

.hero-content-container {
  z-index: 999;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-heading {
  max-width: 1000px;
  font-family: Maven Pro, sans-serif;
  line-height: 107%;
}

.hero-graphic {
  z-index: 0;
  width: 124%;
  max-width: none;
  margin-top: -3%;
  display: block;
  position: static;
}

.banner {
  background-color: var(--neutral-800);
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: .5rem 2rem;
  display: flex;
}

.banner-icon {
  margin-right: .5rem;
}

.hero-top-glow {
  z-index: -3;
  background-image: radial-gradient(circle at 50% -120%, #fc88ff, #0e0f1000 63%);
  height: 50%;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.section-heading-container {
  grid-column-gap: 6rem;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-bottom: .125rem;
  margin-left: 2rem;
  margin-right: 2rem;
  display: flex;
}

.section-heading-container.fade-in-bottom {
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
}

.section-heading-container.fade-in-bottom.left {
  align-items: flex-start;
}

.section-heading-container.fade-in-bottom.left.some-gap {
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-heading-container.fade-in-bottom._800 {
  max-width: 800px;
}

.section-heading-container.fade-in-bottom._800.lowerrr {
  padding-bottom: 30px;
}

.section-heading-container.fade-in-bottom.lowerrr {
  padding-bottom: 20px;
}

.section-heading-container.fade-in-bottom.addgap {
  margin-bottom: 2rem;
}

.label {
  border: 1px solid var(--neutral-700);
  color: #00cbff;
  text-align: left;
  border-radius: .75rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  line-height: 130%;
  display: inline-block;
}

.label.dark-label {
  color: var(--black);
  border-color: #d0a9d1;
}

.logo-grid {
  grid-column-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.logo-grid.fade-in-bottom {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo-grid.fade-in-bottom.grid3 {
  grid-column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 50px;
}

.logo-grid.fade-in-bottom.grid3.nogrid, .logo-grid.fade-in-bottom.grid3.additionalgritmob {
  display: none;
}

.logo-grid.fade-in-bottom.nogrid {
  grid-template-columns: 1fr 1fr 1fr;
}

.client-logo-container {
  background-color: var(--neutral-900);
  border: 0 solid #000;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  display: flex;
}

.client-logo-container.gradient {
  border-width: 1px;
  border-color: var(--neutral-700);
  background-image: linear-gradient(298deg, #11101080, #fff0);
  justify-content: center;
  align-items: flex-start;
  width: auto;
  min-width: 100px;
  min-height: 100%;
}

.client-logo {
  width: 70%;
  max-width: 70%;
}

.client-logo.papayaa {
  max-width: 50%;
}

.cta-banner {
  background-color: var(--neutral-800);
  text-align: center;
  border-radius: 2rem;
  flex-direction: column;
  align-items: stretch;
  padding: 4rem 5%;
  display: block;
}

.cta-banner.large-cta-banner {
  background-color: var(--neutral-900);
  background-image: url('../images/gather-graphic3.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding: 7rem;
  position: relative;
}

.cta-banner.large-cta-banner.fade-in-bottom {
  background-image: none;
}

.cta-banner.large-cta-banner.fade-in-bottom.gradient {
  border: 1px solid var(--neutral-700);
  background-image: linear-gradient(288deg, #13131380, #fff0);
}

.cta-banner.large-cta-banner-primary {
  background-color: var(--primary-500);
  color: var(--black);
  background-image: url('../images/gather-graphic-primary.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding: 7rem 12%;
  position: relative;
}

.cta-banner.large-cta-banner-primary.fade-in-bottom {
  background-color: #5088ff;
  background-image: none;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cta-banner.large-cta-banner-primary.fade-in-bottom.gradient {
  border: 1px solid var(--neutral-700);
  background-color: #00cbff;
  background-image: linear-gradient(63deg, #1e1e1e4d, #fff0);
  width: 100%;
}

.cta-banner.large-cta-banner-primary.fade-in-bottom.gradient.violet {
  background-color: #5088ff;
  width: 100%;
}

.cta-banner.intro-number-banner {
  border: 1px solid var(--neutral-900);
  background-color: var(--neutral-800);
}

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

.number-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.number-container.middle-container {
  border-right: 1px solid var(--neutral-700);
  border-left: 1px solid var(--neutral-700);
}

.number-container.middle-container.middle-test {
  border-left-width: 0;
  border-right-width: 0;
}

.large-number {
  margin-bottom: .5rem;
  font-family: Maven Pro, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.large-number.price {
  margin-bottom: -.2rem;
  margin-right: .5rem;
}

.large-number.gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(141deg, #716cff, #07ffc7);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-neutral-400 {
  color: var(--neutral-400);
  font-family: Meera Inimai, sans-serif;
}

.footer-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 0px;
  order: 0;
  grid-template: ". Area Area-2" 238px
                 ". Area Area-2"
                 / 3fr .9fr .9fr;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 70%;
  margin-bottom: 2rem;
  padding-top: 0;
}

.footer-text {
  color: var(--neutral-500);
  width: 200%;
  max-width: 100%;
}

.footer-links-container {
  display: block;
}

.footer-link {
  color: var(--neutral-500);
  padding-top: 0;
  padding-bottom: 1rem;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.footer-link:hover {
  color: var(--neutral-400);
}

.paragraph {
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-900);
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  display: flex;
}

.footer-text-container {
  flex-direction: column;
  justify-content: space-between;
  max-width: 320px;
  display: flex;
}

.footer-email-link {
  color: var(--neutral-400);
  cursor: pointer;
  margin-top: 3rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.footer-email-link:hover {
  color: var(--primary-500);
}

.left-grid {
  grid-column-gap: 7rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
}

.large-body-text {
  color: var(--neutral-400);
  font-family: Meera Inimai, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 150%;
}

.large-body-text.feature-grid-text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: Meera Inimai, sans-serif;
  font-weight: 400;
}

.large-body-text.feature-grid-text.fdfd.ffd2 {
  color: #fff;
}

.large-body-text.feature-grid-text.nobot {
  margin-bottom: 0;
}

.large-body-text.feature-grid-text.nobot.fbd {
  margin-top: 0;
}

.large-body-text.accordion-text {
  margin-top: 1.5rem;
}

.large-body-text.team-member-title {
  color: var(--primary-500);
  margin-bottom: 2rem;
}

.large-body-text.gap {
  padding-top: 10px;
}

.right-grid {
  grid-column-gap: 7rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.2fr;
}

.icon-list-item {
  color: #fff;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-family: Manrope, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
}

.icon {
  background-color: #14151600;
  border-radius: .75rem;
  width: 70px;
  max-width: 50%;
  margin-right: 1.5rem;
  padding: .75rem;
}

.newsletter-form {
  grid-column-gap: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-field {
  border: 1px solid var(--neutral-700);
  background-color: var(--neutral-700);
  border-radius: .75rem;
  height: 3.5rem;
  margin-bottom: 0;
  padding: 1rem;
}

.text-field:active, .text-field:focus {
  border-color: var(--neutral-600);
  color: #fff;
}

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

.form-block {
  flex-direction: column;
  max-width: 680px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-container {
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.card-right-bottom {
  border-radius: 2rem;
  width: 65%;
  position: static;
  inset: 0% auto auto 0%;
}

.card-right-top {
  border-radius: 2rem;
  width: 60%;
  position: absolute;
  inset: auto 0% -20% auto;
  box-shadow: -25px -13px 172px 20px #0000001a;
}

.card-left-bottom {
  border-radius: 0;
  width: 65%;
  display: inline-block;
  position: static;
  inset: 0% 0% auto auto;
}

.card-left-top {
  box-shadow: none;
  border-radius: 2rem;
  width: 60%;
  position: absolute;
  inset: auto auto -20% 0%;
}

.accordion-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.accordion-item {
  background-color: var(--neutral-900);
  cursor: pointer;
  border-radius: 2rem;
}

.accordion-item-trigger {
  padding: 2.5rem;
}

.accordion-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-item-content {
  display: block;
  overflow: hidden;
}

.accordion-icon {
  color: var(--neutral-400);
  width: 1.5rem;
  height: 1.5rem;
}

.testimonial-cards-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background-color: var(--neutral-800);
  text-align: left;
  border-radius: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
}

.rating {
  grid-column-gap: .5rem;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
}

.star {
  display: block;
}

.testimonial-text {
  text-align: left;
  font-family: Manrope, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
}

.testimonial-client-info {
  margin-top: 2.5rem;
}

.client-name {
  font-weight: 600;
}

.client-company {
  color: var(--neutral-400);
}

.tab {
  border-bottom: 2px solid var(--neutral-900);
  color: var(--neutral-500);
  background-color: #0000;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 20%;
  padding: 1.5rem 1rem;
  font-family: Manrope, sans-serif;
  font-size: 1.25rem;
  display: block;
}

.tab.w--current {
  color: #fff;
  background-color: #0000;
  border-bottom: 2px solid #7866ff;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 700;
}

.tabs-menu {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tabs-content {
  grid-column-gap: 5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.tab-pane-tab-1 {
  flex: 0 auto;
  width: 100%;
}

.tab-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 75%;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.tab-pane {
  width: 100%;
}

.features-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  max-width: 100%;
  display: grid;
}

.features-grid.grid3 {
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.features-grid.grid3.nogrid {
  display: none;
}

.features-grid.grid3.grid3_1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.features-grid.grid3.grid4 {
  grid-column-gap: 2.5rem;
}

.feature-icon-container {
  background-color: #141516;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
}

.feature-container {
  background-color: var(--neutral-900);
  border-radius: 2rem;
  padding: 3rem;
}

.feature-container.fade-in-bottom._2x2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.feature-container.fade-in-bottom._2x2.gradient {
  padding-bottom: 2rem;
}

.feature-container.fade-in-bottom._2x2.gradient.malleritem {
  height: 100%;
}

.feature-container.fade-in-bottom._2x2.gradient.smallerreee {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.feature-container.fade-in-bottom.gradient {
  border: 1px solid var(--neutral-700);
  background-image: linear-gradient(298deg, #0e0e0e80, #fff0);
}

.feature-container.fade-in-bottom.gradient.gradient1 {
  border: 1px solid var(--neutral-700);
}

.feature-stats-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-stats-grid.nogrit {
  display: block;
}

.split-text-container {
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  display: flex;
}

.split-cards-container {
  grid-column-gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.split-cards-inner-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.split-card {
  background-color: var(--neutral-900);
  background-image: url('../images/gather-graphic-2.svg');
  background-position: 50%;
  background-size: auto;
  border-radius: 2rem;
  padding: 2rem;
}

.split-card.fade-in-bottom {
  background-image: none;
  width: 100%;
}

.split-card.fade-in-bottom.gradient {
  border: 1px solid var(--neutral-700);
  background-image: linear-gradient(298deg, #0c0c0c80, #fff0);
}

.xl-body-text {
  color: var(--neutral-400);
  font-family: Meera Inimai, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%;
}

.xl-body-text.noxl {
  font-size: 1.1rem;
}

.xl-body-text.low {
  padding-bottom: 3rem;
}

.horizontal-numbers-container {
  grid-column-gap: 2rem;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin-top: 4.5rem;
  display: flex;
}

.horizontal-numbers-column {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.medium-number {
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.medium-number.stats-number {
  border-right: 1px solid var(--neutral-700);
  margin-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1.5rem;
  font-family: Maven Pro, sans-serif;
}

.medium-number.stats-number.noside {
  border-right-style: none;
}

.medium-number.stats-number.noside.gradient_text {
  font-size: 1.5rem;
}

.medium-number.stats-number.centr {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(129deg, #716cff, #5594f0 44%, #26d4d7 100%, #07ffc7);
  -webkit-background-clip: text;
  background-clip: text;
  border-right-style: none;
  margin-right: 0;
  padding-right: 0;
  font-family: Maven Pro, sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

.medium-number.stats-number.centr.smalltitle {
  color: var(--neutral-600);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 2rem;
}

.medium-number.stats-number.gradient_text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(212deg, #07ffc7, #716cff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
}

.feature-number {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.feature-number-icon-container {
  background-color: #fff0;
  border-radius: 1rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 0;
  margin-right: 1.5rem;
  display: flex;
}

.feature-number-icon-container.extraloh {
  align-self: flex-start;
  align-items: flex-start;
}

.xl-left-grid {
  grid-column-gap: 7rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
}

.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
  font-family: Maven Pro, sans-serif;
}

.margin-bottom-1-5.biggertext {
  font-size: 5rem;
}

.vertical-numbers-container {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 4.5rem;
  display: flex;
}

.feature-stats {
  align-items: center;
  display: flex;
}

.grey-text {
  color: var(--neutral-400);
  font-family: Meera Inimai, sans-serif;
}

.feature-stats-team-member-image-container {
  background-color: var(--primary-500);
  background-image: url('../images/bg-graphic.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 2rem;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  max-width: 85%;
  padding-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.feature-stats-content-container {
  max-width: 500px;
}

.feature-stats-content-container.fade-in-bottom {
  max-width: 1200px;
}

.feature-stats-reverse-grid {
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.overlapping-card-left {
  border-radius: 2rem;
  width: 60%;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: auto;
}

.grey-feature-stats-team-member-image-container {
  background-color: var(--neutral-700);
  background-image: url('../images/grey-graphic.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 85%;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.overlapping-card-right {
  border-radius: 2rem;
  width: 60%;
  position: absolute;
  bottom: 2rem;
  left: auto;
  right: 0;
}

.feature-stats-image-container-right {
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.feature-stats-image-container-right.fade-in-bottom {
  justify-content: flex-start;
  width: 90%;
}

.feature-stats-image-container-right.fade-in-bottom.extrabig {
  width: 120%;
  margin-right: 0;
}

.feature-stats-image-container-right.fade-in-bottom.extrabig.extramargin {
  margin-right: 48px;
  padding-right: 76px;
}

.feature-stats-image-container-right.fade-in-bottom.fiillll {
  justify-content: flex-start;
}

.feature-stats-image-container-left {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.block-quote {
  border-left-width: 3px;
  border-left-color: #00cbff;
  margin-top: 4.5rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 140%;
}

.pricing-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-card {
  background-color: var(--neutral-900);
  border-radius: 2rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  position: relative;
}

.pricing-card.recommended {
  background-color: var(--neutral-900);
}

.pricing-label {
  border: 1px solid var(--neutral-700);
  color: var(--primary-500);
  border-radius: .75rem;
  margin-bottom: 6rem;
  margin-left: 0;
  margin-right: auto;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  line-height: 130%;
  display: block;
}

.price-container {
  align-items: flex-end;
  margin-bottom: 1rem;
  display: flex;
}

.pricing-feature-list {
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin-top: 2.5rem;
  display: flex;
}

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

.team-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-member-container {
  background-color: #0000;
}

.team-member-image-container {
  background-color: var(--primary-500);
  background-image: url('../images/bg-graphic.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding: 2rem 1rem 0;
  display: flex;
}

.team-member-name {
  margin-bottom: .5rem;
}

.news-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post {
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.blog-post:hover {
  color: var(--primary-500);
}

.image {
  border-radius: 1.5rem;
}

.category-chip {
  color: var(--primary-500);
  background-color: #2e2c33;
  border-radius: 100vw;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  display: block;
}

.contact-form {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.textarea {
  min-height: 8rem;
}

.success-message {
  background-color: var(--neutral-400);
  color: var(--neutral-700);
}

.text-block {
  color: var(--neutral-900);
}

.accordion-heading {
  margin-bottom: 0;
}

.fullwidth-image {
  border-radius: 2rem;
  width: 100%;
  margin-bottom: 0;
}

.centered-text-block {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.team-member-image {
  margin-bottom: -1px;
}

.card {
  border-radius: 2rem;
  min-height: 100%;
}

.blogpost-heading {
  margin-top: 1.5rem;
  font-size: 4rem;
}

.rich-text-block {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text-block p {
  color: var(--neutral-400);
}

.rich-text-block h4 {
  margin-top: 3rem;
}

.rich-text-block h2 {
  margin-top: 3rem;
  font-size: 3rem;
}

.rich-text-block blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.rich-text-block h3, .rich-text-block h5 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.rich-text-block h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: Manrope, sans-serif;
  font-size: 1rem;
}

.rich-text-block figcaption {
  color: var(--neutral-400);
  margin-bottom: 2rem;
  font-size: .875rem;
}

.rich-text-block img {
  margin-top: 2rem;
}

.team-member-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  text-align: left;
  grid-template-rows: auto;
}

.team-member-page-image-container {
  background-color: var(--primary-500);
  background-image: url('../images/bg-graphic.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
  padding: 2rem 1rem 0;
  display: flex;
}

.large-testimonial-client-info {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}

.avatar {
  border-radius: 100vw;
  width: 3rem;
  margin-right: 1rem;
}

.divider {
  background-color: var(--neutral-700);
  width: 100%;
  height: 1px;
  margin-top: 7rem;
}

.text-link {
  color: #fff;
  margin-top: .5rem;
  font-size: 1rem;
  text-decoration: none;
  display: block;
}

.link-list {
  margin-top: 2.5rem;
}

.info-wrapper {
  margin-top: 5rem;
}

.text-label {
  color: var(--neutral-400);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 500;
}

.color-block {
  width: 100%;
  height: 7rem;
  margin-bottom: .75rem;
}

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

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

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

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

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

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

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

.inner-block-wrapper, .typography-block-wrapper {
  margin-top: 2rem;
}

.field-label {
  text-align: left;
  margin-bottom: .5rem;
  font-weight: 400;
}

.heading {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading.biiiig {
  font-size: 5.5rem;
}

.heading-2 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.bold-text {
  color: #7866ff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(55deg, #716cff, #07ffc7);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}

.bold-text.lol {
  color: #28a9ff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.heading-3, .heading-4, .heading-5 {
  font-family: Maven Pro, sans-serif;
}

.image-2 {
  width: 2.5rem;
  height: 2.5rem;
}

.heading-6 {
  text-align: left;
  margin-bottom: 0;
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.text-block-2 {
  max-width: 100%;
  font-family: Meera Inimai, sans-serif;
}

.heading-7 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading-7.whote_text {
  color: #fff;
  border: 1px #000;
  text-decoration: none;
}

.heading-7.whote_text._1rem {
  font-size: 1.2rem;
}

.heading-8 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading-8._1rem {
  font-size: 1.2rem;
}

.heading-8._3 {
  font-size: 3rem;
}

.heading-9, .heading-10 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading-10._1rem {
  font-size: 1.2rem;
}

.heading-11 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading-11._1rem {
  font-size: 1.2rem;
}

.heading-12 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading-12._1rem {
  font-size: 1.2rem;
}

.heading-13 {
  font-family: Maven Pro, sans-serif;
  font-weight: 600;
}

.heading-13._1rem {
  font-size: 1.2rem;
}

.heading-14, .heading-15, .heading-16, .heading-17, .heading-18, .heading-19, .heading-20 {
  font-family: Maven Pro, sans-serif;
}

.heading-21 {
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-start;
  max-width: 800px;
  font-family: Maven Pro, sans-serif;
  display: block;
}

.text-block-3, .text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8 {
  font-family: Meera Inimai, sans-serif;
}

.text-block-9 {
  color: #00cbff;
  font-family: Meera Inimai, sans-serif;
}

.heading-22, .heading-23 {
  font-family: Maven Pro, sans-serif;
}

.heading-24 {
  font-family: Maven Pro, sans-serif;
  font-size: 4rem;
}

.heading-24._20 {
  padding-bottom: 20px;
}

.paragraph-2, .paragraph-3, .paragraph-4 {
  font-family: Maven Pro, sans-serif;
}

.card-img {
  background-color: #8f00ff;
  border-radius: 1rem;
  flex: 1;
  justify-content: center;
  padding-top: 1.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.card_component {
  perspective: 1000px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.content-type {
  font-size: .875rem;
}

.display-block {
  display: block;
}

.card_hole {
  background-color: #080808;
  border-radius: 100rem;
  flex: none;
  width: 6rem;
  height: .75rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 1rem 0% auto;
}

.card_traits-icon-wrapper {
  width: 1.5rem;
  height: 1.5rem;
}

.heading-25 {
  font-family: Maven Pro, sans-serif;
  line-height: 1.2;
}

.card_side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #141314;
  border: 1px solid #191819;
  border-radius: 2rem;
  padding: 4rem 1.75rem 1.75rem;
  position: absolute;
  inset: 0%;
}

.card_side.is-back {
  border-color: var(--neutral-700);
  transform-style: preserve-3d;
  padding-top: 6rem;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.card_side.is-back.gradient {
  background-image: none;
}

.card_side.is-front {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  padding-top: 5rem;
  display: block;
}

.card_side.is-front.gradient {
  border-color: var(--neutral-700);
  background-image: linear-gradient(288deg, #0d0d0d80, #fff0);
  padding-left: 4rem;
  padding-right: 4rem;
}

.card_cta-wrapper {
  grid-row-gap: .25rem;
  flex-direction: column;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.card_cta-wrapper.is-back {
  bottom: 1.5rem;
  left: 1.5rem;
}

.card_traits-content {
  grid-row-gap: .125rem;
  flex-direction: column;
  display: flex;
}

.card_main-text {
  grid-row-gap: .5rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
  display: flex;
}

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

.card_stamp-wrapper {
  opacity: .5;
  width: 5.5rem;
  position: absolute;
  inset: 2rem 1rem auto auto;
  transform: rotate(29deg);
}

.heading-type {
  color: #fbf9fc80;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 200;
}

.card_cta {
  background-color: #080808;
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding-bottom: .25rem;
  display: flex;
}

.page-padding {
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.card_cta-icon {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
}

.card_traits {
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.card_traits-icon {
  height: 100%;
}

.card_wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 35rem;
  display: flex;
  position: relative;
}

.card_stamp-img {
  opacity: .79;
  width: 100%;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.card_traits-item {
  grid-column-gap: 1.125rem;
  align-items: center;
  display: flex;
}

.page-padding-2 {
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.card_wrapper-2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 35rem;
  display: flex;
  position: relative;
}

.page-padding-3 {
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.card_wrapper-3 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 35rem;
  display: flex;
  position: relative;
}

.page-padding-4 {
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.card_wrapper-4 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 35rem;
  display: flex;
  position: relative;
}

.heading-26 {
  font-family: Maven Pro, sans-serif;
  font-size: 2.5rem;
}

.heading-26.gap-below {
  padding-bottom: 30px;
}

.div-block {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 150%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
}

.heading-27 {
  font-family: Maven Pro, sans-serif;
}

.text-block-10, .text-block-11, .text-block-12 {
  font-family: Meera Inimai, sans-serif;
}

.bold-text-2, .bold-text-3 {
  font-weight: 400;
}

.text-block-13, .text-block-14, .text-block-15, .text-block-16, .text-block-17, .text-block-18, .text-block-19, .text-block-20, .text-block-21, .text-block-22, .text-block-23 {
  font-family: Meera Inimai, sans-serif;
}

.text-block-24 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  font-family: Meera Inimai, sans-serif;
  display: flex;
}

.bighead {
  font-family: Maven Pro, sans-serif;
  font-size: 5rem;
}

.bighead.biiiiig {
  font-size: 5.5rem;
}

.link-block {
  width: 6rem;
  display: flex;
}

.heading-28, .heading-29, .heading-30, .heading-31, .heading-32 {
  font-family: Maven Pro, sans-serif;
}

.text-block-25, .text-block-26 {
  font-family: Meera Inimai, sans-serif;
}

.div-block-2 {
  grid-column-gap: 20px;
  align-items: center;
  padding-bottom: 1rem;
  display: flex;
}

.image-4 {
  width: 35px;
  max-width: 25%;
}

.text-block-27 {
  color: var(--neutral-400);
  text-align: left;
  margin-bottom: 1rem;
  font-family: Meera Inimai, sans-serif;
  font-size: 16px;
}

.text-block-27.terms {
  padding-bottom: 1rem;
}

.text-block-27.topper {
  margin-top: 1rem;
  display: block;
}

.heading-33 {
  font-family: Maven Pro, sans-serif;
}

.link, .link-2, .link-3, .link-4, .link-5, .link-6 {
  color: #fff;
}

.heading-34 {
  font-family: Maven Pro, sans-serif;
}

.bold-text-4 {
  color: #fff;
}

.boldwhite {
  color: #fff;
  font-size: 18px;
}

.boldwhite.small {
  font-size: 16px;
}

.nowhite {
  outline-offset: 0px;
  color: #fff;
  border: 1px #000;
  outline: 3px #00e;
  text-decoration: none;
}

.heading-35 {
  font-family: Maven Pro, sans-serif;
}

.heading-35.jgjf {
  font-size: 5rem;
}

.heading-36 {
  font-family: Maven Pro, sans-serif;
}

.link-block-2 {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.iamgeabout {
  width: 5%;
  padding-bottom: 3rem;
}

.iamgeabout.smallimga {
  max-width: 20%;
}

.iamgeabout.smallimga.biiiiig {
  width: 15%;
}

.image-5 {
  border-radius: 20px;
  width: 500px;
  max-width: none;
  height: 500px;
}

.image-6 {
  margin-right: 0;
  padding-left: 0;
}

.image-6.marginimage {
  margin-right: 70px;
}

.image94945 {
  width: 150%;
}

.imagrkfkg {
  width: 100%;
}

.image-7 {
  align-self: flex-start;
}

.image-7.smallerimage {
  width: 70%;
  height: 70%;
}

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

.bigimagee {
  width: 100%;
}

.logo {
  width: 65%;
}

.smallerimage {
  width: 70%;
  height: 70%;
}

.tab-copy {
  border-bottom: 2px solid var(--neutral-900);
  color: var(--neutral-500);
  background-color: #0000;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 20%;
  padding: 1.5rem 1rem;
  font-family: Manrope, sans-serif;
  font-size: 1.25rem;
  display: block;
}

.tab-copy.w--current {
  color: #fff;
  background-color: #0000;
  border-bottom: 2px solid #7866ff;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 700;
}

.text-link {
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
}

.text-link:hover {
  color: #53c3ff;
}

.div-block-3 {
  object-fit: contain;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.fdfd {
  color: var(--neutral-400);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

.bold-text-6, .bold-text-7, .bold-text-8 {
  font-weight: 400;
}

.div-block-4 {
  max-height: 100px;
  padding-top: 20px;
  padding-bottom: 0;
}

.image-8 {
  object-fit: scale-down;
  width: auto;
  height: auto;
  max-height: 100%;
}

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

.whitelink {
  color: var(--neutral-600);
}

.link-block-4, .link-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-9 {
  max-height: 100px;
}

.div-block-5 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.faq-answer {
  z-index: 2;
  padding: 0 60px 60px;
  font-family: Droid Sans, sans-serif;
  position: relative;
  overflow: hidden;
}

.faq-question-text-content {
  color: #000;
  font-family: Vollkorn, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.faq-answer-text {
  color: #696969;
}

.faq-indicator-icon {
  align-self: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-question {
  z-index: 2;
  cursor: pointer;
  display: flex;
  position: relative;
}

.faq-question:active {
  background-color: #fff;
}

.faq-question:focus {
  background-color: #fff;
  border: 1px solid #0000000a;
}

.faq-indicator-icon-line {
  transform-origin: 50%;
  background-color: #0fc902;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translate(0, 6px)rotate(135deg);
}

.faq-indicator-icon-line._2 {
  background-color: #0fc902;
  top: 39%;
  transform: translate(0, -5px)rotate(45deg);
}

.faq-question-text {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 60px;
}

.faq-background {
  z-index: 1;
  opacity: 0;
  background-color: #fff0;
  position: absolute;
  inset: 0%;
  box-shadow: 0 3px 20px 1px #0000000f;
}

.faq-indicator {
  justify-content: center;
  align-items: center;
  width: 10%;
  display: flex;
  position: relative;
}

.faq-wrap {
  background-color: #fff0;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 4px 1px #0000;
}

.faq-wrap:hover {
  background-color: #ffffffa1;
  box-shadow: 0 0 4px 1px #0202020d;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: block;
  position: relative;
}

.container-2.faq-container {
  color: #fff;
  background-color: #fff0;
  border-radius: 5px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 2rem 80px;
  position: relative;
  box-shadow: 0 0 50px #2d3e500f;
}

.faq-plus {
  background-color: #00cbff;
  border-radius: 3px;
  width: 100%;
  height: 5px;
}

.faq-answer-2 {
  border-bottom: 1px solid #2d3e501f;
  padding-left: 45px;
  overflow: hidden;
}

.faq-answer-2.last-faq-answer {
  border-bottom-width: 0;
}

.faq-answer-text-2 {
  margin-bottom: 30px;
  font-size: 16px;
}

.faq-plus-wrap {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.link-7 {
  color: #2aa8ff;
  font-weight: 600;
}

.faq-q-text.margin-bottom-1-5.nofd {
  margin-bottom: 0;
}

.faq-plus-l {
  background-color: #00cbff;
  border-radius: 3px;
  width: 5px;
  height: 100%;
  position: absolute;
}

.faq-question-2 {
  cursor: pointer;
  align-items: center;
  height: 90px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.pricing-h1 {
  text-align: center;
}

.pricing-h1.faq-h2 {
  margin-bottom: 50px;
}

@media screen and (min-width: 1920px) {
  .section {
    display: block;
  }

  .section.hide_mob {
    display: none;
  }

  .section.nohidden {
    display: block;
  }

  .heading.biiiig {
    font-size: 6rem;
  }
}

@media screen and (max-width: 991px) {
  .navbar-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

  .button-group {
    padding-left: 0;
  }

  .button-group.navbar-button-group {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .nav-menu {
    background-color: var(--black);
    margin-left: 0;
  }

  .button.dark-primary-button {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .menu-button {
    padding: 2.5rem;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .section.hide_mob {
    display: none;
  }

  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .container.longer.nosoolon {
    padding-top: 2rem;
  }

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

  .section-heading-container {
    grid-column-gap: 3rem;
    margin-left: 0;
    margin-right: 0;
  }

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

  .logo-grid.fade-in-bottom {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .client-logo-container {
    width: 100%;
  }

  .cta-banner.large-cta-banner {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .cta-banner.large-cta-banner-primary.fade-in-bottom.gradient.violet {
    padding-left: 5%;
    padding-right: 5%;
  }

  .footer-text-container {
    text-align: left;
  }

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

  .right-grid {
    grid-template-columns: 1.2fr;
  }

  .card-right-bottom {
    margin-bottom: 100px;
    margin-right: auto;
  }

  .card-right-top {
    bottom: 0%;
  }

  .card-left-bottom {
    margin-bottom: 100px;
    margin-left: auto;
  }

  .card-left-top {
    bottom: 0%;
  }

  .accordion-wrapper {
    grid-row-gap: 2rem;
  }

  .testimonial-cards-grid {
    grid-template-columns: 1fr;
  }

  .tab {
    max-width: 20%;
  }

  .tab-grid {
    max-width: none;
  }

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

  .features-grid.grid3 {
    display: none;
  }

  .features-grid.grid3.nogrid, .features-grid.grid3.grid3_1, .features-grid.grid3.grid4 {
    flex-direction: column;
    display: flex;
  }

  .feature-container.fade-in-bottom.gradient {
    max-width: 100%;
  }

  .feature-stats-grid {
    grid-row-gap: 5rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .xl-left-grid {
    grid-template-columns: 1fr;
  }

  .feature-stats-reverse-grid {
    grid-row-gap: 5rem;
    grid-template-columns: 1fr;
  }

  .feature-stats-image-container-right, .feature-stats-image-container-left {
    width: 80%;
  }

  .pricing-grid, .team-grid, .news-grid {
    grid-row-gap: 5rem;
    grid-template-columns: 1fr;
  }

  .heading-6 {
    padding-right: 0;
    font-size: 2.5rem;
  }

  .card_side {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .card_traits-list {
    grid-row-gap: 2rem;
  }

  .image-5.nolonger {
    height: 100%;
  }

  .image-6.marginimage {
    margin-left: 100px;
    margin-right: 100px;
  }

  .tab-copy {
    max-width: 20%;
  }

  .faq-question-text-content {
    opacity: .7;
    color: #000;
  }
}

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

  .button-group {
    grid-row-gap: 1rem;
    flex-direction: column;
    padding-left: 0;
  }

  .section {
    flex-direction: column;
    display: block;
  }

  .section.hide_mob {
    display: none;
  }

  .section.nohidden {
    display: block;
  }

  .container {
    flex-direction: column;
    display: flex;
  }

  .container.hero-blog-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

  .hero-graphic {
    width: 130%;
    margin-top: -2%;
  }

  .section-heading-container {
    grid-row-gap: 2rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .logo-grid.fade-in-bottom {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .logo-grid.fade-in-bottom.grid3 {
    display: none;
  }

  .logo-grid.fade-in-bottom.grid3.nogrid {
    flex-direction: column;
    display: flex;
  }

  .logo-grid.fade-in-bottom.grid3.additionalgritmob {
    flex-flow: column;
    margin-bottom: 1rem;
    display: flex;
  }

  .logo-grid.fade-in-bottom.nogrid {
    flex-direction: column;
    display: flex;
  }

  .cta-banner.large-cta-banner-primary.fade-in-bottom.gradient {
    padding: 2rem 5%;
  }

  .cta-banner.large-cta-banner-primary.fade-in-bottom.gradient.violet {
    padding-left: 10%;
    padding-right: 10%;
  }

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

  .number-container.middle-container {
    border-width: 0;
    border-top-style: solid;
    border-top-color: var(--neutral-700);
    border-bottom-style: solid;
    border-bottom-color: var(--neutral-700);
  }

  .footer-grid {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: start;
    justify-items: start;
    display: flex;
  }

  .footer-text {
    text-align: left;
  }

  .footer-links-container {
    text-align: center;
  }

  .footer-links-container.ghdfs {
    margin-top: -40px;
  }

  .footer-link {
    text-align: left;
  }

  .footer-text-container {
    text-align: left;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

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

  .newsletter-form {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .accordion-wrapper {
    max-width: none;
  }

  .tab {
    max-width: 30%;
  }

  .tab-grid {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .features-grid.grid3.grid4 {
    flex-direction: column;
    display: flex;
  }

  .horizontal-numbers-container {
    grid-row-gap: 2.5rem;
    flex-direction: column;
  }

  .margin-bottom-1-5.biggertext {
    font-size: 4rem;
  }

  .feature-stats-content-container.fade-in-bottom {
    padding-left: 2rem;
  }

  .team-member-grid {
    grid-template-columns: 1fr;
  }

  .heading.biiiig {
    font-size: 3.5rem;
  }

  .heading-6 {
    text-align: center;
    font-size: 3rem;
  }

  .heading-8._3 {
    font-size: 2rem;
  }

  .page-padding, .page-padding-2, .page-padding-3, .page-padding-4 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .div-block {
    display: flex;
  }

  .bighead, .heading-35.jgjf {
    font-size: 3rem;
  }

  .heading-36 {
    font-family: Maven Pro, sans-serif;
  }

  .image-6.marginimage {
    margin-right: 0;
  }

  .tab-copy {
    max-width: 30%;
  }

  .faq-answer {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq-question-text-content {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
  }

  .faq-indicator-icon {
    width: 15px;
    height: 15px;
  }

  .faq-indicator-icon-line {
    top: 42%;
  }

  .faq-indicator-icon-line._2 {
    top: 47%;
  }

  .faq-question-text {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
  }

  .faq-indicator {
    width: 15%;
  }

  .pricing-h1 {
    font-size: 34px;
    line-height: 44px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  .navbar-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
  }

  .button-group {
    padding-left: 0;
  }

  .nav-menu {
    padding-bottom: 1.5rem;
  }

  .menu-button.w--open {
    padding: 2.5rem;
  }

  .section {
    margin-bottom: 7rem;
    display: flex;
  }

  .section.subpage-hero-section.long.nolooong {
    padding-top: 8rem;
  }

  .section.hide_mob, .section.nohidden {
    display: block;
  }

  .section.mobilehider {
    display: none;
  }

  .container {
    flex-direction: column;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
  }

  .container.hero-blog-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container.highter.noloooong {
    padding-top: 1rem;
  }

  .text-medium.hero-paragraph {
    font-size: 1rem;
  }

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

  .hero-graphic {
    width: 150%;
    margin-top: 0%;
  }

  .banner {
    display: none;
  }

  .section-heading-container {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 1rem;
  }

  .section-heading-container.fade-in-bottom.lowerrr {
    margin-left: 0;
  }

  .section-heading-container.fade-in-bottom.wtf {
    margin-left: 0;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .logo-grid.fade-in-bottom {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .logo-grid.fade-in-bottom.nogrid {
    flex-direction: column;
    display: flex;
  }

  .client-logo-container {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .client-logo-container.gradient {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .client-logo {
    width: 50%;
    max-width: 50%;
  }

  .cta-banner.large-cta-banner {
    padding: 4rem 1rem;
  }

  .cta-banner.large-cta-banner-primary.fade-in-bottom.gradient.violet {
    flex-direction: column;
    display: flex;
  }

  .large-number.gradient {
    background-image: linear-gradient(55deg, #716cff, #07ffc7);
  }

  .footer-grid {
    justify-items: start;
  }

  .footer-logo {
    text-align: left;
  }

  .footer-text {
    text-align: left;
    align-self: flex-start;
  }

  .footer-links-container.ghdfs {
    margin-top: -40px;
  }

  .footer-link {
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }

  .footer-text-container {
    order: -1;
    margin-left: 0;
  }

  .footer-text-container.conteirner2 {
    order: 1;
  }

  .large-body-text.feature-grid-text {
    margin-bottom: 2rem;
  }

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

  .accordion-item-trigger {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-cards-grid {
    width: 100%;
  }

  .testimonial-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .star {
    width: 10%;
    max-width: 20%;
  }

  .testimonial-text {
    font-size: 1.25rem;
  }

  .tabs-menu {
    flex-direction: column;
  }

  .features-grid.grid3.nogrid {
    display: none;
  }

  .features-grid.grid3.grid4 {
    flex-direction: column;
    display: flex;
  }

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

  .feature-container.fade-in-bottom._2x2.gradient {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .feature-container.fade-in-bottom.gradient {
    padding-left: 1.5rem;
  }

  .feature-container.fade-in-bottom.gradient.gradient1 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .split-cards-container {
    grid-row-gap: 2.5rem;
    flex-direction: column;
  }

  .xl-body-text {
    font-size: 1.2rem;
  }

  .horizontal-numbers-container {
    grid-row-gap: 2.5rem;
    flex-direction: column;
  }

  .medium-number.stats-number {
    border-right-width: 0;
  }

  .medium-number.stats-number.centr {
    font-size: 2rem;
  }

  .feature-number {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .margin-bottom-1-5 {
    font-size: 2.25rem;
  }

  .margin-bottom-1-5.biggertext {
    font-size: 3.3rem;
  }

  .feature-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-stats-content-container.fade-in-bottom {
    order: -1;
    max-width: 100%;
    padding-left: 0;
  }

  .feature-stats-reverse-grid {
    flex-flow: wrap;
    max-width: 100%;
    display: flex;
  }

  .feature-stats-reverse-grid.nolooonggg {
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
  }

  .feature-stats-image-container-right {
    width: 100%;
  }

  .feature-stats-image-container-right.fade-in-bottom.extrabig.extramargin {
    padding-right: 0;
  }

  .feature-stats-image-container-left {
    width: 100%;
  }

  .blogpost-heading {
    font-size: 3rem;
  }

  .heading.biiiig {
    font-size: 3.5rem;
  }

  .heading.biiiig.make-itreasonable {
    font-size: 3rem;
  }

  .heading-6 {
    text-align: left;
  }

  .heading-8._3 {
    font-size: 1.5rem;
  }

  .heading-24._20 {
    font-size: 2rem;
  }

  .card-img {
    position: relative;
  }

  .card_traits-icon-wrapper {
    display: none;
  }

  .card_side.is-back {
    padding: 4rem 1.5rem 1.5rem;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .card_side.is-back.gdvfsfd {
    padding-top: 2rem;
  }

  .card_side.is-front {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .card_side.is-front.gradient {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .card_cta-wrapper {
    inset: auto auto .5rem .5rem;
  }

  .card_cta-wrapper.is-back {
    bottom: 2rem;
    left: 1.5rem;
  }

  .card_main-text {
    margin-bottom: 1.5rem;
  }

  .card_traits-list {
    grid-column-gap: .5rem;
    grid-row-gap: 1rem;
  }

  .card_stamp-wrapper {
    width: 4rem;
  }

  .heading-type {
    font-size: .75rem;
  }

  .page-padding {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .card_traits {
    grid-row-gap: 1rem;
  }

  .card_wrapper {
    width: 100%;
    height: 29.5rem;
  }

  .card_traits-item {
    grid-column-gap: .5rem;
  }

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

  .card_wrapper-2 {
    width: 100%;
    height: 29.5rem;
  }

  .page-padding-3 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card_wrapper-3 {
    width: 100%;
    height: 29.5rem;
  }

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

  .card_wrapper-4 {
    width: 100%;
    height: 29.5rem;
  }

  .div-block {
    order: 1;
    align-self: flex-start;
  }

  .bighead {
    font-size: 3rem;
  }

  .text-block-27 {
    padding-right: 19px;
  }

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

  .image-5.nolonger {
    height: 100%;
  }

  .image-6.marginimage.wxtragfd {
    margin-left: 0;
  }

  .link-block-3 {
    text-align: left;
    order: -1;
    align-self: flex-start;
  }

  .bold-text-5 {
    width: 100%;
    display: block;
  }

  .faq-answer {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-question-text-content {
    font-size: 18px;
    line-height: 24px;
  }

  .faq-indicator-icon {
    width: 12px;
    height: 12px;
  }

  .faq-indicator-icon-line {
    top: 30%;
  }

  .faq-indicator-icon-line._2 {
    top: 70%;
  }

  .faq-question-text {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .faq-indicator {
    width: 20%;
  }
}

#w-node-d4db715d-8814-7a18-4542-6a7fdf9a2290-97f2ceb2, #w-node-d4db715d-8814-7a18-4542-6a7fdf9a2297-97f2ceb2, #w-node-d4db715d-8814-7a18-4542-6a7fdf9a229e-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b5a32fca-b2d7-da97-ffab-867a01ce0f3e-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b5a32fca-b2d7-da97-ffab-867a01ce0f3d-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-b5a32fca-b2d7-da97-ffab-867a01ce0f46-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b5a32fca-b2d7-da97-ffab-867a01ce0f45-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c292b363-1b88-81d4-360f-ac9c1167cc7e-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c292b363-1b88-81d4-360f-ac9c1167cc7d-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_4b67993c-0903-774d-3553-0b0c8d67d48a-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4b67993c-0903-774d-3553-0b0c8d67d489-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-cce30e83-fe01-f058-6479-83dc1c06464a-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-cce30e83-fe01-f058-6479-83dc1c064649-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-aba2aba4-8b80-4945-c8fb-f98f4c17486e-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-aba2aba4-8b80-4945-c8fb-f98f4c17486d-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_66cfabc6-b6b5-85ed-308a-b25e1fb1b9b1-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_66cfabc6-b6b5-85ed-308a-b25e1fb1b9b0-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-edfe86df-ca01-4cc9-347e-e1f935ae20ff-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-edfe86df-ca01-4cc9-347e-e1f935ae2106-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_344fd0a9-78f8-d97c-8d91-d63f9156bea9-97f2ceb2, #w-node-f4dc2a73-fb2b-f568-f9aa-cad62adb7dff-97f2ceb2, #w-node-c4642db2-f5b0-5c26-90ff-e86d259b2dd0-97f2ceb2, #w-node-fe349e1b-d233-3b95-174a-8210057d7856-97f2ceb2, #w-node-af3a243d-8002-12e3-0154-78c53e6c89da-97f2ceb2, #w-node-_4f4cde7b-e05a-9ca8-7499-243cce334586-97f2ceb2, #w-node-a5b5794f-b0d8-3bdc-6b7c-6881bce25d7d-97f2ceb2, #w-node-_53340713-36f7-d590-162f-53c8e3205498-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d749be01-b714-40f7-558a-ae34840a6e45-97f2ceb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_8c9e424e-2ce9-268e-c95e-a6da1d243d67-97f2ceb2, #w-node-_53ef8f94-7b9e-4b0c-2271-ec1d6ef2fafd-6ef2fae7, #w-node-_53ef8f94-7b9e-4b0c-2271-ec1d6ef2faf0-6ef2fae7, #w-node-_53ef8f94-7b9e-4b0c-2271-ec1d6ef2faea-6ef2fae7, #w-node-f2cb1d89-78c2-7f1e-b11c-bb2277221d75-9ff2ceb6, #w-node-f2cb1d89-78c2-7f1e-b11c-bb2277221d79-9ff2ceb6, #w-node-f2cb1d89-78c2-7f1e-b11c-bb2277221d77-9ff2ceb6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7fe52cb8-f2f4-035d-605a-4a5b3b29a1a1-88f2ceb9 {
  place-self: center start;
}

#w-node-_7fe52cb8-f2f4-035d-605a-4a5b3b29a1a5-88f2ceb9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-f2385706-3c86-5af8-8132-be4d39214c4e-99f2cebb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_699c1530-52a5-f49f-e6ad-816617b77d49-99f2cebb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7524898f-f8c7-871b-8183-f9082ff9f124-01f2cebc, #w-node-_37a6949c-eaa4-293a-cbe9-c468f1cb3714-01f2cebc, #w-node-_7524898f-f8c7-871b-8183-f9082ff9f12b-01f2cebc, #w-node-e607d699-9d48-fa4a-ea3e-20fa5ccb18a7-01f2cebc, #w-node-_24575581-906a-e074-cbe6-e9497e13c740-01f2cebc, #w-node-ca12863a-09ec-037b-2cf0-3f5ba8a24ff5-01f2cebc, #w-node-_7524898f-f8c7-871b-8183-f9082ff9f139-01f2cebc, #w-node-fde17663-afba-294e-c52d-b776452ed79e-01f2cebc, #w-node-_7524898f-f8c7-871b-8183-f9082ff9f140-01f2cebc, #w-node-df594925-20d2-3620-80ce-8b8b82d52668-01f2cebc, #w-node-_7524898f-f8c7-871b-8183-f9082ff9f147-01f2cebc, #w-node-_2046e2c0-eaf8-9f6b-014b-9bbe04b708be-01f2cebc, #w-node-f2209722-e6a4-f2b5-3927-00fc53a7f600-01f2cebc, #w-node-_3c57b0ef-efd2-107b-4ee1-904bb1ab48bb-01f2cebc, #w-node-_3c57b0ef-efd2-107b-4ee1-904bb1ab48bc-01f2cebc, #w-node-d42a7bec-cd45-3ed1-a311-abf41afac0ce-e59da3d1, #w-node-d42a7bec-cd45-3ed1-a311-abf41afac0d3-e59da3d1, #w-node-d42a7bec-cd45-3ed1-a311-abf41afac0d8-e59da3d1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-e59da3d1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5be3dccb-998e-0eac-98e9-bff2fe6774de-e59da3d1, #w-node-ab8a5e1b-1018-557a-ac32-28ac3eee2ae0-e59da3d1, #w-node-_455a7f1d-b77a-0c0b-9827-d7c533a043c9-e59da3d1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad53-e59da3d1, #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad55-e59da3d1, #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad57-e59da3d1, #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad59-e59da3d1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-e59da3d1 {
  place-self: center start;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a73-e59da3d1, #w-node-_462db610-4907-dba8-2807-69d92cbb6be1-e59da3d1, #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-c45721ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5be3dccb-998e-0eac-98e9-bff2fe6774de-c45721ac, #w-node-ab8a5e1b-1018-557a-ac32-28ac3eee2ae0-c45721ac, #w-node-_455a7f1d-b77a-0c0b-9827-d7c533a043c9-c45721ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-c45721ac {
  place-self: center start;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a73-c45721ac, #w-node-_462db610-4907-dba8-2807-69d92cbb6be1-c45721ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_462db610-4907-dba8-2807-69d92cbb6bf4-c45721ac {
  place-self: center start;
}

#w-node-_7d220d38-8827-e20a-df9e-8c338ece5d67-c45721ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_7d220d38-8827-e20a-df9e-8c338ece5d8f-c45721ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-45fd8a13 {
  place-self: center start;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a73-45fd8a13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-ab8a5e1b-1018-557a-ac32-28ac3eee2ae0-45fd8a13, #w-node-_455a7f1d-b77a-0c0b-9827-d7c533a043c9-45fd8a13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-45fd8a13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5be3dccb-998e-0eac-98e9-bff2fe6774de-45fd8a13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_921ea4b0-5098-c80e-60a4-201f8d7d8f99-f3835a50, #w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a73-f3835a50 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-ab8a5e1b-1018-557a-ac32-28ac3eee2ae0-f3835a50, #w-node-_455a7f1d-b77a-0c0b-9827-d7c533a043c9-f3835a50 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd74-f3835a50, #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd77-f3835a50, #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd7a-f3835a50, #w-node-_302834b5-797c-20bf-acd4-7cb2015f61f9-f3835a50, #w-node-_302834b5-797c-20bf-acd4-7cb2015f61ff-f3835a50, #w-node-_302834b5-797c-20bf-acd4-7cb2015f6206-f3835a50 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-f3835a50 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5be3dccb-998e-0eac-98e9-bff2fe6774de-f3835a50 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_370effa1-9eb7-04a1-5bd7-b5b472aba828-f3835a50 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-b00762d4-e463-3f20-624e-e0fce7b4944c-f6bcd365, #w-node-b00762d4-e463-3f20-624e-e0fce7b4945b-f6bcd365, #w-node-b00762d4-e463-3f20-624e-e0fce7b49470-f6bcd365 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_94a4dab4-02ca-bc3e-7f22-d858f4446f5a-f6bcd365, #w-node-_94a4dab4-02ca-bc3e-7f22-d858f4446f64-f6bcd365 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7d18b72d-eb61-c701-09a6-04097cba6b19-f6bcd365 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_7d18b72d-eb61-c701-09a6-04097cba6b23-f6bcd365 {
  place-self: center start;
}

#w-node-b547505d-ad74-1060-5d40-ec8dff6b7717-e58130a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-b547505d-ad74-1060-5d40-ec8dff6b771e-e58130a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ab8a5e1b-1018-557a-ac32-28ac3eee2ae0-e58130a2, #w-node-_455a7f1d-b77a-0c0b-9827-d7c533a043c9-e58130a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-e58130a2 {
  place-self: center start;
}

#w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a73-e58130a2, #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-e58130a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5be3dccb-998e-0eac-98e9-bff2fe6774de-e58130a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c853c79b-6e2e-a7a3-91bf-2ed0059944a5-e6c9853f, #w-node-c853c79b-6e2e-a7a3-91bf-2ed0059944a8-e6c9853f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd74-e6c9853f, #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd77-e6c9853f, #w-node-a6006c5b-dfbb-cbc6-42b6-24be78dee557-e6c9853f, #w-node-_236d8f5e-f52c-bd7b-c63f-d8d8bfce8e6d-e6c9853f, #w-node-_236d8f5e-f52c-bd7b-c63f-d8d8bfce8e76-e6c9853f, #w-node-_236d8f5e-f52c-bd7b-c63f-d8d8bfce8e7f-e6c9853f, #w-node-b19c5d64-76e4-28b0-c864-cb03761316e9-e6c9853f, #w-node-b19c5d64-76e4-28b0-c864-cb0376131701-e6c9853f, #w-node-b19c5d64-76e4-28b0-c864-cb0376131715-e6c9853f, #w-node-_4c3f918e-26da-1bb8-395e-e97dc4abf795-e6c9853f, #w-node-_4c3f918e-26da-1bb8-395e-e97dc4abf7ad-e6c9853f, #w-node-_4c3f918e-26da-1bb8-395e-e97dc4abf7c5-e6c9853f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-ca093681-ccf6-2417-b2ee-9b9581d27903-6ef2fae7 {
    justify-self: start;
  }

  #w-node-f2cb1d89-78c2-7f1e-b11c-bb2277221d75-9ff2ceb6, #w-node-f2cb1d89-78c2-7f1e-b11c-bb2277221d79-9ff2ceb6, #w-node-f2cb1d89-78c2-7f1e-b11c-bb2277221d77-9ff2ceb6, #w-node-_7fe52cb8-f2f4-035d-605a-4a5b3b29a1a1-88f2ceb9 {
    justify-self: center;
  }

  #w-node-_7fe52cb8-f2f4-035d-605a-4a5b3b29a1a5-88f2ceb9 {
    order: -9999;
  }

  #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-e59da3d1 {
    justify-self: end;
  }

  #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad53-e59da3d1, #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad55-e59da3d1, #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad57-e59da3d1, #w-node-_4fac4df6-cebc-cad4-01ba-d070ac95ad59-e59da3d1, #w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-e59da3d1 {
    justify-self: center;
  }

  #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-c45721ac {
    justify-self: end;
  }

  #w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-c45721ac, #w-node-_462db610-4907-dba8-2807-69d92cbb6bf4-c45721ac, #w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-45fd8a13 {
    justify-self: center;
  }

  #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-45fd8a13, #w-node-_921ea4b0-5098-c80e-60a4-201f8d7d8f99-f3835a50 {
    justify-self: end;
  }

  #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd74-f3835a50, #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd77-f3835a50, #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd7a-f3835a50, #w-node-_302834b5-797c-20bf-acd4-7cb2015f61f9-f3835a50, #w-node-_302834b5-797c-20bf-acd4-7cb2015f61ff-f3835a50, #w-node-_302834b5-797c-20bf-acd4-7cb2015f6206-f3835a50 {
    justify-self: center;
  }

  #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-f3835a50 {
    justify-self: end;
  }

  #w-node-_7d18b72d-eb61-c701-09a6-04097cba6b23-f6bcd365, #w-node-_72a19e0f-e54a-3b5e-f71b-3222a87e2a86-e58130a2 {
    justify-self: center;
  }

  #w-node-_7176494d-c9d9-81e4-d5e6-c954010a6350-e58130a2, #w-node-c853c79b-6e2e-a7a3-91bf-2ed0059944a5-e6c9853f {
    justify-self: end;
  }

  #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd74-e6c9853f, #w-node-cdf6e507-e6dc-09a6-73e4-2b12ed71bd77-e6c9853f, #w-node-a6006c5b-dfbb-cbc6-42b6-24be78dee557-e6c9853f, #w-node-_236d8f5e-f52c-bd7b-c63f-d8d8bfce8e6d-e6c9853f, #w-node-_236d8f5e-f52c-bd7b-c63f-d8d8bfce8e76-e6c9853f, #w-node-_236d8f5e-f52c-bd7b-c63f-d8d8bfce8e7f-e6c9853f, #w-node-b19c5d64-76e4-28b0-c864-cb03761316e9-e6c9853f, #w-node-b19c5d64-76e4-28b0-c864-cb0376131701-e6c9853f, #w-node-b19c5d64-76e4-28b0-c864-cb0376131715-e6c9853f, #w-node-_4c3f918e-26da-1bb8-395e-e97dc4abf795-e6c9853f, #w-node-_4c3f918e-26da-1bb8-395e-e97dc4abf7ad-e6c9853f, #w-node-_4c3f918e-26da-1bb8-395e-e97dc4abf7c5-e6c9853f {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b5a32fca-b2d7-da97-ffab-867a01ce0f3e-97f2ceb2, #w-node-b5a32fca-b2d7-da97-ffab-867a01ce0f46-97f2ceb2, #w-node-c292b363-1b88-81d4-360f-ac9c1167cc7e-97f2ceb2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_53ef8f94-7b9e-4b0c-2271-ec1d6ef2faea-6ef2fae7 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_53ef8f94-7b9e-4b0c-2271-ec1d6ef2faea-6ef2fae7 {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Medium.woff2') format('woff2'), url('../fonts/EudoxusSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Regular.woff2') format('woff2'), url('../fonts/EudoxusSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-ExtraLight.woff2') format('woff2'), url('../fonts/EudoxusSans-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Light.woff2') format('woff2'), url('../fonts/EudoxusSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-ExtraBold.woff2') format('woff2'), url('../fonts/EudoxusSans-Bold.woff2') format('woff2'), url('../fonts/EudoxusSans-Bold.woff') format('woff'), url('../fonts/EudoxusSans-ExtraBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}