@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format("woff2"), url('../fonts/SpaceGrotesk-SemiBold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Bold.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Medium.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Regular.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

:root {
  --text-color-dark: #484d60;
  --brand-color-1: #004a4e;
  --brand-color-2: #61d286;
  --brand-color-3: #006fff;
  --text-color-light: #a6adc7;
  --white: white;
  --light-grey-1: #fafafa;
  --light-grey-2: #ccc;
  --dark-grey-1: #636363;
  --dark-grey-2: #333;
  --brand-color-4: #fccb50;
  --brand-color-4-2: #fd6d95;
  --black: 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;
}

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

.w-pagination-previous {
  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;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

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

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  color: var(--text-color-dark);
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.55em;
}

h1 {
  color: var(--brand-color-1);
  letter-spacing: -1px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1em;
}

h2 {
  color: var(--brand-color-1);
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1em;
}

h3 {
  color: var(--brand-color-1);
  letter-spacing: 0;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
}

h4 {
  color: var(--brand-color-1);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
}

h5 {
  color: var(--brand-color-1);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
}

h6 {
  color: var(--brand-color-1);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  margin-bottom: 1.6em;
  font-size: 18px;
  line-height: 1.55em;
}

a {
  color: var(--brand-color-2);
  line-height: 1.55em;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--brand-color-3);
}

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

ol {
  margin-top: 0;
  margin-bottom: 1.6em;
  padding-left: 20px;
}

li {
  padding-bottom: 10px;
}

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

blockquote {
  border-left: 3px solid var(--brand-color-3);
  color: var(--brand-color-1);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6em;
}

figure {
  margin-bottom: 10px;
}

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

.project-hero-copy {
  width: 50%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-headline {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1em;
}

.style-guide-content {
  padding-top: 40px;
}

.style-guide-label {
  color: var(--text-color-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 11px;
  line-height: 11px;
}

.style-guide-label.cc-box {
  justify-content: space-between;
  display: flex;
}

.style-guide-section {
  background-color: #fff;
  border-radius: 4px;
  margin: 20px;
  padding: 60px 30px;
  position: relative;
  box-shadow: 0 1px 1px #0003;
}

.button {
  background-color: var(--brand-color-2);
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  padding: 16px 30px 15px;
  font-family: Spacegrotesk, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .2s, box-shadow .2s;
  box-shadow: 0 1px 1px #0000;
}

.button:hover {
  background-color: var(--brand-color-3);
  color: var(--white);
  box-shadow: 0 10px 20px #0000001a;
}

.button.button-outline {
  border: 2px solid var(--brand-color-2);
  color: var(--brand-color-2);
  background-color: #0000;
  padding: 14px 28px 13px;
}

.button.button-outline:hover {
  background-color: var(--brand-color-2);
  color: var(--white);
}

.button.button-outline.button-arrow-simple {
  background-image: url('../images/arrow.svg');
  background-position: 88%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 39px;
}

.button.button-outline.button-arrow-simple:hover {
  background-image: url('../images/arrow-white.svg');
}

.button.button-outline.button-arrow-simple.button-small {
  background-position: 90%;
  background-size: 6px;
  padding-right: 29px;
}

.button.button-small {
  padding: 12px 20px 10px;
  font-size: 14px;
}

.project-content {
  display: block;
}

.project-content figure {
  margin-top: 10px;
  margin-bottom: 50px;
}

.project-content img {
  display: block;
}

.project-hero-section {
  padding-top: 60px;
}

.project-hero-container {
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.project-details-container {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.project-services {
  padding-left: 0;
}

.project-services ul {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}

.project-hero-logo {
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 60px;
  display: flex;
}

.navbar {
  background-color: #f5f5f5;
  justify-content: center;
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
}

.container-2 {
  justify-content: center;
  width: 80%;
  max-width: 1000px;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.back-button {
  float: left;
  align-items: center;
  height: 100%;
  display: flex;
}

.type-column-2 {
  padding-top: 30px;
  padding-left: 20px;
}

.type-column-1 {
  padding-right: 20px;
}

.style-guide-title {
  color: var(--text-color-dark);
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 5px;
  padding-left: 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 44px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.color-block {
  background-color: #ebebeb;
  border-radius: 4px;
  height: 70px;
  margin-top: 30px;
}

.color-block.cc-font-color-dark {
  background-color: var(--text-color-dark);
}

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

.style-guide-subhead {
  color: #ec3872;
  background-color: #ec38721a;
  border-radius: 4px;
  margin-bottom: 40px;
  padding: 20px;
}

.style-guide-wrap {
  background-color: var(--light-grey-1);
  padding-top: 1px;
  padding-bottom: 1px;
}

.style-guide-logo-box {
  border: 1px solid var(--text-color-light);
  background-image: url('../images/transparent_1transparent.gif');
  background-position: 0 0;
  background-size: 16px;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.style-guide-logo-box.cc-dark {
  background-image: linear-gradient(#00000080, #00000080), url('../images/transparent_1transparent.gif');
  background-position: 0 0, 0 0;
  background-size: auto, 16px;
}

.style-guide-logo-box.cc-light {
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/transparent_1transparent.gif');
  background-position: 0 0, 0 0;
  background-size: auto, 16px;
}

.style-guide-divider {
  background-color: var(--light-grey-1);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.style-guide-label-link {
  font-size: 11px;
  font-weight: 500;
  line-height: 11px;
  text-decoration: none;
  display: inline-block;
}

.style-guide-label-link:hover {
  text-decoration: underline;
}

.input {
  border: 1px solid var(--light-grey-2);
  background-color: #fff;
  border-radius: 4px;
  height: 50px;
  margin-bottom: 30px;
}

.input:hover {
  border-color: var(--dark-grey-1);
}

.input:focus {
  border-color: var(--brand-color-1);
}

.input.cc-long {
  height: auto;
  min-height: 150px;
  line-height: 24px;
}

.success-message {
  color: #20ce7b;
  background-color: #20ce7b1a;
  border-radius: 4px;
}

.error-message {
  color: #ec3872;
  text-align: center;
  background-color: #ec38721a;
  border-radius: 4px;
}

.card {
  background-color: #fff;
  border-radius: 4px;
  flex: 1;
  margin: 15px;
  padding: 40px;
  text-decoration: none;
  transition: all .15s;
  box-shadow: 0 0 #0003;
}

.card:hover {
  margin: 12px;
  padding: 43px;
  box-shadow: 0 10px 20px #0000001a;
}

.card-title {
  margin-top: 0;
}

.card-paragraph {
  margin-bottom: 0;
}

.card-container {
  background-color: var(--light-grey-1);
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
  display: flex;
}

.card-wrap {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab-pane {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 30px 40px 40px;
}

.tab-link {
  color: var(--text-color-light);
  background-color: #0000;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.tab-link:hover {
  color: var(--text-color-dark);
}

.tab-link.w--current {
  box-shadow: inset 0 -1px 0 0 var(--dark-grey-2);
  color: var(--text-color-dark);
  background-color: #0000;
}

.tab-menu {
  box-shadow: inset 0 -1px 0 0 var(--light-grey-2);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
}

.tabs {
  box-shadow: inset 0 0 0 1px var(--light-grey-2);
  border-radius: 4px;
}

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

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

.bg-green {
  background-color: var(--brand-color-1);
}

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

.bg-blue {
  background-color: var(--brand-color-3);
}

.bg-yellow {
  background-color: var(--brand-color-4);
}

.bg-pink {
  background-color: var(--brand-color-4-2);
}

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

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

.text-green {
  color: var(--brand-color-1);
}

.text-light-green {
  color: var(--brand-color-2);
}

.text-blue {
  color: var(--brand-color-3);
}

.text-yellow {
  color: var(--brand-color-4);
}

.text-pink {
  color: var(--brand-color-4-2);
}

.color-block-border {
  border: 2px solid var(--light-grey-2);
  border-radius: 4px;
  height: 70px;
  margin-top: 30px;
}

.section {
  padding: 100px 50px;
}

.section.section-shadow.section-quotes-stats {
  padding-top: 100px;
  padding-bottom: 150px;
}

.section.section-shadow.section-cta {
  padding-top: 100px;
}

.section.section-home-header {
  padding-top: 30px;
  padding-bottom: 70px;
}

.section.section-footer {
  background-color: var(--brand-color-1);
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.bg-blog {
  background-image: url('../images/bg-circle-dots.svg'), url('../images/bg-grid-squiggle.svg');
  background-position: 100% 100%, 4% 27%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

.section.bg-blog-post {
  background-image: url('../images/bg-circle-dots.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.section.pricing-header {
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrapper.wrapper-nav {
  justify-content: space-around;
  display: flex;
}

.wrapper.wrapper-blog {
  padding-left: 7vw;
  padding-right: 7vw;
}

.grid-stats-quote {
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr;
  align-items: center;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

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

.stat-number {
  color: var(--brand-color-1);
  font-family: Spacegrotesk, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1em;
  display: inline;
}

.stat-text {
  color: var(--brand-color-1);
  padding-left: .25em;
  padding-right: .25em;
  font-family: Spacegrotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1em;
  display: inline;
}

.p-small {
  font-size: 15px;
}

.p-small.text-dark.margin-bottom-0.margin-top-20 {
  margin-top: 20px;
}

.stat-icon-box {
  background-color: var(--brand-color-4);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  inset: auto 18% -20% auto;
  box-shadow: 5px 0 20px #00000024;
}

.stat-icon-box.bg-pink {
  background-color: var(--brand-color-4-2);
}

.stat-icon-box.bg-blue {
  background-color: var(--brand-color-3);
}

.stat-person {
  width: 88px;
}

.stat-person.person-01 {
  width: 97px;
}

.stat-person.person-02 {
  width: 92px;
}

.stat-person.person-03 {
  width: 60px;
}

.stat-wrapper {
  background-image: url('../images/stat-bg-yellow.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 0;
  margin-bottom: -20px;
  position: relative;
}

.stat-wrapper.stat-blue {
  background-image: url('../images/stat-circle-blue.svg');
}

.stat-wrapper.stat-pink {
  background-image: url('../images/stat-circle-pink.svg');
}

.margin-top-50 {
  margin-top: 50px;
}

.stat-card {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 30px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

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

.grid-stats {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  align-items: center;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.quote {
  color: var(--brand-color-1);
  font-family: Spacegrotesk, sans-serif;
}

.display-none {
  display: none;
}

.slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 50px;
}

.h2-large {
  letter-spacing: 0;
  font-size: 60px;
}

.h2-large.margin-bottom-50.max-width-650.align-center.margin-bottom-30-xs.margin-top-0.text-green {
  color: var(--brand-color-2);
}

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

.margin-bottom-30 {
  margin-bottom: 30px;
}

.display-inline {
  display: inline;
}

.number-box {
  background-color: #006fff33;
  border-radius: 6px;
  padding: 2px 10px;
  display: inline-block;
}

.grid-feature-text-left {
  grid-column-gap: 9vw;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: center;
}

.max-width-550 {
  width: 100%;
  max-width: 550px;
}

.max-width-650 {
  width: 100%;
  max-width: 650px;
}

.section-shadow {
  background-image: url('../images/shadow-top-section.png'), url('../images/shadow-bottom-section.png'), linear-gradient(to bottom, var(--light-grey-1), var(--light-grey-1));
  background-position: 50% 0, 50% 100%, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: contain, contain, auto;
}

.grid-home {
  grid-column-gap: 3vw;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 420px) 1fr;
  align-items: center;
}

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

.brush-divider-desktop {
  margin-left: auto;
  margin-right: auto;
}

.brush-divider-mobile {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.grid-feature-text-right {
  grid-column-gap: 9vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  align-items: center;
}

.max-width-1020 {
  width: 100%;
  max-width: 1020px;
}

.max-width-500 {
  width: 100%;
  max-width: 500px;
}

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

.download-now-img {
  width: 100%;
  max-width: 600px;
  margin-top: -150px;
  margin-bottom: 50px;
}

.unlisted-u-nav {
  width: 100%;
  max-width: 29px;
}

.brand {
  cursor: pointer;
  align-items: center;
  padding-top: 29px;
  padding-bottom: 28px;
  padding-right: 30px;
  display: flex;
}

.logo-text-desktop {
  color: var(--brand-color-1);
  letter-spacing: 0;
  text-transform: none;
  padding-left: 8px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.navbar-2 {
  background-color: #0000;
  padding-left: 50px;
  padding-right: 50px;
}

.nav-link {
  color: var(--brand-color-1);
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 16px;
}

.nav-menu {
  float: left;
  flex: 1;
}

.logo-text-footer {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
  padding-left: 0;
  font-family: Spacegrotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.p-x-small {
  font-size: 14px;
}

.p-x-small.margin-bottom-10.margin-top-20 {
  margin-top: 20px;
}

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

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

.footer-link {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  display: block;
}

.footer-link:hover {
  color: var(--brand-color-2);
}

.footer-wrapper {
  display: flex;
}

.footer-column {
  margin-right: 70px;
}

.mask {
  height: auto;
}

.unlisted-u-footer {
  width: 100%;
  max-width: 29px;
}

.button-wrapper {
  background-color: var(--brand-color-2);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 16px 30px 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button-wrapper:hover {
  color: var(--white);
}

.button-wrapper.nav-button {
  float: right;
  margin-top: 21px;
  padding: 10px 20px;
}

.button-wrapper.pricing {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1vw;
  padding-right: 1vw;
}

.button-text {
  z-index: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Spacegrotesk, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  position: relative;
}

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

.button-text.nav-button, .button-text.pricing {
  font-size: 16px;
}

.button-filler {
  background-color: var(--brand-color-3);
  width: 101%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.button-filler.dark-green {
  background-color: var(--brand-color-1);
}

.button-wrapper-2 {
  color: #ff003d;
  align-items: center;
  max-width: 128px;
  min-height: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: relative;
}

.button-background {
  border-style: none none solid;
  border-width: 2px;
  border-color: var(--brand-color-2);
  border-radius: 0;
  width: 50px;
  height: 40px;
  position: absolute;
}

.button-text-simple {
  z-index: 1;
  color: var(--brand-color-2);
  letter-spacing: 1px;
  margin-left: 0;
  margin-right: 10px;
  font-family: Spacegrotesk, sans-serif;
  font-weight: 600;
  position: relative;
}

.button-arrow {
  width: 7px;
  margin-right: 0;
}

.collection-list {
  grid-column-gap: 50px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-image {
  opacity: 1;
  background-image: url('../images/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 175px;
}

.link-block {
  cursor: pointer;
  transition: opacity .2s, color .2s;
  display: block;
}

.link-block:hover {
  opacity: .7;
}

.blog-card-title {
  letter-spacing: 0;
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
}

.blog-image-color {
  opacity: 1;
  border-top: 4px #000;
  border-bottom: 4px solid #000;
  border-radius: 5px;
  overflow: hidden;
}

.next, .previous {
  border-style: none;
}

.blog-image-post {
  z-index: 1;
  opacity: 1;
  background-image: url('../images/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  height: 400px;
  position: relative;
}

.author-image {
  background-image: url('../images/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.blog-details-wrapper {
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.bullet-divider {
  color: var(--brand-color-2);
  margin-left: 10px;
  margin-right: 10px;
}

.left-arrow {
  cursor: pointer;
  background-image: url('../images/arrow-left.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 6px;
  padding-left: 30px;
  transition: opacity .2s, color .2s;
}

.left-arrow:hover {
  background-image: url('../images/arrow-blue-left.svg');
}

.left-arrow.p-x-small {
  padding-left: 13px;
}

.blog-decoration {
  width: 300px;
  position: absolute;
  inset: 90px auto auto -130px;
}

.terms h2 {
  font-size: 35px;
}

.terms h3 {
  font-size: 30px;
}

.terms h4 {
  margin-top: 20px;
}

.form02_success {
  background-color: #fff;
}

.form_alert {
  background-color: #68c38a;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  padding: 8px 15px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 17px #00000012;
}

.form_error_wrap {
  align-items: center;
  max-width: 92%;
  height: 100%;
  display: flex;
}

.form_alert_line {
  background-color: #352d2d12;
  width: 1px;
  min-height: 23px;
  margin-left: 8px;
  margin-right: 8px;
}

.form02_field_wrap {
  justify-content: space-between;
  display: flex;
}

.form_error {
  background-color: #fe3e3e;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  padding: 8px 15px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 17px #00000012;
}

.form_error_paragraph {
  color: #353357;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}

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

.form_alert_wrap {
  align-items: center;
  max-width: 92%;
  height: 100%;
  display: flex;
}

.form02_error {
  background-color: #fff;
}

.form_error_line {
  background-color: #352d2d12;
  width: 1px;
  min-height: 23px;
  margin-left: 8px;
  margin-right: 8px;
}

.form_alert_text {
  color: #353357;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}

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

.max-width-600 {
  width: 100%;
  max-width: 600px;
}

.grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
}

.temp01_container_block {
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.temp01_title_centre {
  color: #8a94a6;
  text-align: center;
  letter-spacing: 1px;
  max-width: 500px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
}

.temp01_logo_wrap {
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.temp01_logo_image {
  object-fit: fill;
  width: auto;
  max-width: 500px;
  height: 82px;
  overflow: visible;
}

.download-button {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.download-button.margin-bottom-0 {
  margin-bottom: 10px;
}

.brush-divider-download {
  width: 3.75px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.grid-download {
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr;
  align-items: center;
}

.max-width-400 {
  width: 100%;
  max-width: 400px;
}

.form02_paragraph {
  text-align: center;
}

.form02_input {
  background-color: #fff;
  border: 1.5px solid #ebecf0;
  border-radius: 4px;
  width: 100%;
  min-height: 48px;
  font-size: 16px;
  font-weight: 400;
}

.form02_input:focus {
  border-color: #5d3eff;
}

.form02_titles {
  margin-bottom: 25px;
}

.form02 {
  border-radius: 10px;
  width: 100%;
  max-width: 590px;
  height: 100%;
  padding: 15px 30px;
  position: relative;
  box-shadow: 14px 14px 40px #767ead14;
}

.form02_h5 {
  text-align: center;
}

.grid-about {
  grid-column-gap: 10vw;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  position: relative;
}

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

.about-iilustration {
  z-index: 0;
  width: 160%;
  max-width: none;
  position: absolute;
  bottom: 0%;
  left: -52%;
  right: 0;
}

.position-relative {
  position: relative;
}

.about-divider {
  margin-top: 50px;
  margin-bottom: 50px;
  transform: rotate(180deg);
}

.h1-large {
  font-size: 70px;
}

.about-fixed {
  text-align: left;
  width: 35%;
  height: 700px;
  position: sticky;
  top: 200px;
}

.about-content {
  float: right;
  text-align: left;
  width: 50%;
  margin-top: -700px;
  padding-bottom: 100px;
  position: relative;
}

.position-fixed {
  width: 100%;
  position: fixed;
}

.about-us-nav {
  z-index: 9999;
  background-color: var(--white);
  width: 100%;
  position: fixed;
}

.wrapper-about {
  width: 100%;
  max-width: 1140px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrapper-about.wrapper-nav {
  justify-content: space-around;
  display: flex;
}

.wrapper-about.wrapper-blog {
  padding-left: 7vw;
  padding-right: 7vw;
}

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

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

.header-slider {
  background-image: url('../images/slider-bg-mini.svg');
  background-position: 50% 45%;
  background-repeat: no-repeat;
  background-size: 65%;
}

.faq04_title {
  color: #7540ee;
  letter-spacing: 1px;
  max-width: 500px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
}

.faq04_h4 {
  color: #0a1f44;
  text-align: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
}

.faq04 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
  display: flex;
}

.faq04_line {
  background-color: #ebecf0;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.faq04_title_wrap {
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  display: flex;
}

.faq04_container {
  flex: 1;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.faq04_full_wrap {
  flex-wrap: wrap;
  display: flex;
}

.faq04_wrap {
  width: 33%;
  margin-bottom: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 35px;
}

.faq04_h6 {
  color: #0a1f44;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.price {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

.dollar-sign {
  color: var(--white);
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 5px;
  font-size: 30px;
  display: inline-block;
}

.term {
  color: var(--white);
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 24px;
  display: inline-block;
}

.pricing-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-pricing {
  grid-column-gap: 0px;
  background-color: var(--white);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .4fr .65fr .4fr;
  align-items: stretch;
  margin-bottom: -50px;
  position: relative;
  top: -100px;
  overflow: hidden;
  box-shadow: 0 4px 16px #05050712;
}

.grid-pricing-includes {
  grid-column-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  margin-bottom: 30px;
}

.pricing-check {
  width: 14px;
  height: auto;
  margin-top: 1px;
  margin-right: 7px;
}

.pricing-includes-wrapper {
  align-items: flex-start;
  margin-bottom: 16px;
  display: flex;
}

.pricing-includes-wrapper.last {
  margin-bottom: 0;
}

.asterisk {
  opacity: .5;
  padding-bottom: 0;
  font-size: 11px;
}

.pricing-card-02 {
  border-right: 3px solid var(--light-grey-1);
  background-color: var(--white);
  text-align: left;
  padding: 30px;
}

.pricing-features {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.25em;
}

.pricing-features.margin-bottom-30 {
  margin-bottom: 30px;
}

.pricing-features.margin-bottom-10 {
  margin-bottom: 10px;
}

.pricing-card-01 {
  background-color: var(--brand-color-3);
  color: var(--white);
  text-align: center;
  background-image: url('../images/price-lines-01.svg'), url('../images/price-lines-02.svg');
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 17%, 17%;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  display: flex;
}

.pricing-card-03 {
  border-right: 3px none var(--light-grey-1);
  background-color: var(--white);
  text-align: left;
  padding: 30px;
}

.h3-small {
  font-size: 23px;
}

.pricing-toggle {
  background-color: var(--white);
  color: var(--brand-color-3);
  border-radius: 50px;
  padding: 13px 1.5vw 10px;
  transition: opacity .5s;
  display: inline-block;
}

.pricing-toggle:hover {
  opacity: .7;
}

.pricing-toggle.yearly {
  color: var(--white);
  background-color: #fff0;
}

.pricing-toggle-text {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Spacegrotesk, sans-serif;
  font-size: 12px;
  line-height: 1em;
}

.pricing-toggle-wrapper {
  cursor: pointer;
  background-color: #ffffff4d;
  border-radius: 600px;
  display: inline-block;
}

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

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-bottom-200 {
  margin-bottom: 200px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.bg-shapes {
  width: 160px;
  height: auto;
  position: absolute;
  bottom: -3px;
  left: auto;
  right: 0;
}

@media screen and (min-width: 1440px) {
  .section {
    padding-top: 150px;
    padding-bottom: 150px;
  }

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

  .section.bg-blog, .section.bg-blog-post {
    background-size: 180px, 290px;
  }

  .wrapper {
    max-width: 1440px;
  }

  .slider {
    height: auto;
  }

  .brand {
    transition: opacity .2s;
  }

  .brand:hover {
    opacity: .7;
  }

  .logo-text-desktop, .logo-text-footer {
    line-height: 1em;
  }

  .mask {
    height: auto;
    padding-bottom: 50px;
  }

  .unlisted-u-footer {
    margin-bottom: 4px;
  }

  .about-fixed {
    top: 250px;
  }

  .about-content {
    padding-bottom: 150px;
  }

  .pricing-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 991px) {
  h1, h2 {
    font-size: 40px;
  }

  .section.bg-blog, .section.bg-blog-post {
    background-size: 100px, 180px;
  }

  .wrapper.wrapper-nav {
    display: block;
  }

  .grid-stats-quote {
    grid-row-gap: 50px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .h2-large {
    font-size: 50px;
  }

  .grid-feature-text-left {
    grid-column-gap: 30px;
  }

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

  .brush-divider-desktop {
    display: none;
  }

  .brush-divider-mobile {
    display: block;
  }

  .grid-feature-text-right {
    grid-column-gap: 30px;
  }

  .brand {
    padding-left: 50px;
  }

  .navbar-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    color: var(--white);
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .nav-link:hover, .nav-link.w--current {
    color: var(--brand-color-4);
  }

  .nav-menu {
    background-color: #00439bed;
    width: 100%;
    margin-top: 0;
    padding-top: 30vh;
    box-shadow: 1px 16px 20px 8px #46538561;
  }

  .menu-button {
    padding: 30px;
    transition: color .6s;
  }

  .menu-button.w--open {
    z-index: 3;
    color: var(--white);
    background-color: #0000;
  }

  .button-wrapper.nav-button {
    float: none;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .collection-list {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .next, .previous {
    margin-top: 30px;
  }

  .blog-decoration {
    width: 240px;
    left: -70px;
  }

  .download-button {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .brush-divider-download {
    display: none;
  }

  .grid-download {
    grid-row-gap: 50px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .about-iilustration {
    bottom: 0%;
    left: auto;
    right: 0;
  }

  .h1-large {
    font-size: 60px;
  }

  .about-fixed {
    width: 28%;
    height: 700px;
  }

  .about-content {
    width: 60%;
  }

  .wrapper-about.wrapper-nav {
    display: block;
  }

  .faq04_wrap {
    padding: 10px;
  }

  .grid-pricing {
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-02 {
    border-bottom: 3px solid var(--light-grey-1);
    border-right-style: none;
  }

  .pricing-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bg-shapes {
    width: 130px;
  }
}

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

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  p, .button {
    font-size: 16px;
  }

  .input {
    margin-bottom: 20px;
  }

  .card-wrap {
    flex: 1;
  }

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

  .section.section-shadow.section-quotes-stats {
    padding-bottom: 300px;
  }

  .section.section-home-header {
    padding-bottom: 37px;
  }

  .section.section-footer {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section.bg-blog, .section.bg-blog-post {
    background-position: 100% 100%, 4% 18%;
  }

  .p-small {
    font-size: 14px;
  }

  .h2-large {
    font-size: 45px;
  }

  .grid-feature-text-left, .grid-home {
    grid-row-gap: 50px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .text-center-mobile-land {
    text-align: center;
  }

  .align-center-mob-tablet {
    margin-left: auto;
    margin-right: auto;
  }

  .grid-feature-text-right {
    grid-row-gap: 50px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .download-now-img {
    margin-top: -280px;
  }

  .navbar-2 {
    padding-left: 0;
  }

  .grid-footer {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-link.margin-bottom-0 {
    margin-bottom: 0;
  }

  .footer-wrapper {
    display: block;
  }

  .footer-column {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }

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

  .collection-list {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .blog-card-title {
    font-size: 22px;
  }

  .h1-small-mobile, .terms h2 {
    font-size: 30px;
  }

  .terms h3 {
    font-size: 25px;
  }

  .temp01_logo_wrap {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .temp01_logo_image {
    width: auto;
    max-width: 100%;
    height: 82px;
    margin-left: auto;
    margin-right: auto;
  }

  .download-button {
    width: auto;
    max-width: 185px;
    height: 62px;
  }

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

  .about-iilustration {
    width: 100%;
    margin-top: 50px;
    margin-left: -30px;
    position: relative;
  }

  .h1-large {
    font-size: 60px;
  }

  .about-fixed {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    position: static;
  }

  .about-content {
    width: 100%;
    margin-top: auto;
  }

  .about-us-nav {
    position: relative;
  }

  .wrapper-about {
    margin-top: 0;
  }

  .faq04_wrap {
    width: 50%;
  }

  .grid-pricing {
    max-width: 300px;
  }

  .grid-pricing-includes {
    grid-column-gap: 10px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .max-width-300sm {
    max-width: 300px;
  }

  .margin-bottom-75-md {
    margin-bottom: 75px;
  }
}

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

  h1 {
    font-size: 30px;
  }

  h4 {
    font-size: 15px;
  }

  p {
    font-size: 14px;
  }

  .button {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .input {
    height: 45px;
  }

  .text-light-green {
    font-weight: 600;
  }

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

  .section {
    padding: 75px 30px;
  }

  .section.section-shadow.section-quotes-stats {
    padding-bottom: 120px;
  }

  .section.section-shadow.section-cta {
    padding-top: 50px;
  }

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

  .section.section-home-header {
    padding-bottom: 67px;
  }

  .section.bg-blog, .section.bg-blog-post {
    background-position: 100% 100%, -50px 20%;
    background-size: 100px, 140px;
  }

  .wrapper.wrapper-blog {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .p-small {
    font-size: 12px;
  }

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

  .h2-large {
    font-size: 34px;
  }

  .grid-feature-text-left, .grid-home {
    grid-row-gap: 30px;
  }

  .margin-top-0.margin-bottom-30 {
    font-size: 24px;
    font-weight: 500;
  }

  .margin-bottom-20-xs {
    margin-bottom: 20px;
  }

  .grid-feature-text-right {
    grid-row-gap: 30px;
  }

  .download-now-img {
    margin-top: -150px;
    margin-bottom: 20px;
  }

  .unlisted-u-nav {
    max-width: 25px;
  }

  .brand {
    padding-left: 30px;
    padding-right: 0;
  }

  .logo-text-desktop {
    padding-left: 6px;
    font-size: 18px;
    line-height: 1em;
  }

  .navbar-2 {
    padding-left: 0;
  }

  .menu-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-text-footer {
    padding-left: 6px;
    font-size: 18px;
    line-height: 1em;
  }

  .margin-bottom-30-xs {
    margin-bottom: 30px;
  }

  .unlisted-u-footer {
    max-width: 25px;
  }

  .button-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-wrapper:active {
    background-color: var(--brand-color-3);
  }

  .button-text {
    font-size: 14px;
  }

  .author-image {
    width: 30px;
    height: 30px;
  }

  .blog-details-wrapper {
    display: block;
  }

  .bullet-divider {
    margin-left: 0;
    display: none;
  }

  .div-block {
    margin-bottom: 5px;
  }

  .terms h2 {
    font-size: 25px;
  }

  .terms h3 {
    font-size: 20px;
  }

  .form02_field_wrap {
    flex-direction: column;
  }

  .temp01_logo_wrap {
    flex-direction: column;
    align-items: center;
  }

  .temp01_logo_image {
    width: auto;
    min-width: auto;
    max-width: 100%;
    height: 82px;
    overflow: visible;
  }

  .link-block-2 {
    flex: 0 auto;
  }

  .download-button {
    width: auto;
    min-width: auto;
    max-width: 185px;
    height: 62px;
  }

  .form02_input {
    width: 100%;
  }

  .form02 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-iilustration {
    margin-top: 30px;
  }

  .about-divider {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .h1-large {
    font-size: 50px;
  }

  .about-fixed {
    margin-bottom: 50px;
  }

  .about-content {
    margin-top: 0;
  }

  .wrapper-about.wrapper-blog {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .faq04_wrap {
    width: 100%;
  }

  .heading, .heading-2 {
    text-align: center;
  }

  .price {
    font-size: 32px;
  }

  .dollar-sign {
    margin-right: 3px;
    font-size: 24px;
  }

  .term {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .pricing-card-01 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .pricing-toggle {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
}

#w-node-_7c4545be-b4a7-f24a-c440-3f465167bcb1-5167bca3 {
  justify-self: end;
}

#w-node-e31b3825-2a2c-85dc-ef69-aef0f37ec3ce-24a0d9cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-e1954ba9-ff20-9857-6a03-e823a6c04d5d-cc750454, #w-node-ed0eb0c2-7bde-e538-733b-77c80fd54b2a-cc750454 {
    order: 9999;
  }

  #w-node-_7c4545be-b4a7-f24a-c440-3f465167bca6-5167bca3, #w-node-_7c4545be-b4a7-f24a-c440-3f465167bcb1-5167bca3 {
    justify-self: center;
  }
}


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