:root {
  --sand: #eeedea;
  --blue: #06f;
  --black: #202020;
  --white: #fbfbfb;
  --green: #56ba61;
  --yellow: #ffc626;
  --pink: #edc9df;
  --tiffany: #aadad7;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--sand);
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

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

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

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

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

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

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

.navbar {
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  z-index: 3;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.container.hspread {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.container.hspread.less-margins {
  padding-left: 25px;
  padding-right: 25px;
}

.container.vcenter {
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.container.hcenter {
  flex-direction: row;
  align-items: center;
}

.container.htop {
  flex-direction: row;
}

.container.hstretch {
  flex-direction: row;
  align-items: stretch;
}

.container.vspread {
  justify-content: space-between;
}

.logo-link {
  cursor: pointer;
  transition: all .3s;
  position: relative;
}

.logo-link:hover {
  transform: translate(0, -3px);
}

.company-logo-white {
  width: 120px;
}

.page-wrapper {
  transform-origin: 50% 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.hero {
  background-color: var(--blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 180px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  position: relative;
}

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

.image-inner {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-inner.parallax {
  height: 115%;
  top: -15%;
}

.image-inner.is-liquid {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.image-inner.only-mobile {
  display: none;
}

.text-style-regular {
  color: var(--black);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Innovator Grotesk, Verdana, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

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

.text-style-regular.text-color-blue {
  color: var(--blue);
}

.text-style-regular.font-weight-domaine {
  font-family: Domaine Display Condensed, Verdana, sans-serif;
  font-weight: 500;
}

.heading-style-h1 {
  color: var(--white);
  text-align: center;
  letter-spacing: -1.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Innovator Grotesk, Verdana, sans-serif;
  font-size: 58px;
  line-height: 105%;
  text-decoration: none;
}

.heading-style-h1.mtop-2 {
  margin-top: 20px;
}

.heading-style-h1.mbot-2 {
  margin-bottom: 20px;
}

.heading-style-h1.mbot-1 {
  margin-bottom: 10px;
}

.heading-style-h1.text-align-left {
  text-align: left;
}

.heading-style-h1.split-type.bugfix-width {
  width: 100%;
}

.heading-style-h2 {
  color: var(--blue);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domaine Display Condensed, Verdana, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 95%;
  text-decoration: none;
}

.heading-style-h2.mtop-2 {
  margin-top: 20px;
}

.heading-style-h2.mbot-1 {
  margin-bottom: 10px;
}

.heading-style-h2.mtop-1 {
  margin-top: 10px;
}

.heading-style-h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 120%;
  text-decoration: none;
}

.heading-style-h3.mtop-2 {
  margin-top: 20px;
}

.heading-style-h3.mbot-2 {
  margin-bottom: 20px;
}

.heading-style-h3.mbot-1 {
  margin-bottom: 10px;
}

.heading-style-h3.mtop-1 {
  margin-top: 10px;
}

.heading-style-h4 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 120%;
  text-decoration: none;
}

.heading-style-h4.mtop-2 {
  margin-top: 20px;
}

.heading-style-h4.mbot-1 {
  margin-bottom: 10px;
}

.heading-style-h4.mtop-1 {
  margin-top: 10px;
}

.heading-style-h5 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 120%;
  text-decoration: none;
}

.heading-style-h5.mtop-2 {
  margin-top: 20px;
}

.heading-style-h5.mbot-2 {
  margin-bottom: 20px;
}

.heading-style-h5.mbot-1 {
  margin-bottom: 10px;
}

.heading-style-h5.mtop-1 {
  margin-top: 10px;
}

.heading-style-h6 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 120%;
  text-decoration: none;
}

.heading-style-h6.mtop-2 {
  margin-top: 20px;
}

.heading-style-h6.mbot-2 {
  margin-bottom: 20px;
}

.heading-style-h6.mbot-1 {
  margin-bottom: 10px;
}

.heading-style-h6.mtop-1 {
  margin-top: 10px;
}

.scroll-trigger {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 100vh 0% auto;
}

.rich-text {
  width: 100%;
}

.rich-text h1 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 120%;
}

.rich-text h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 120%;
}

.rich-text h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 120%;
}

.rich-text h4 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 120%;
}

.rich-text h5 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 120%;
}

.rich-text h6 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 120%;
}

.rich-text p {
  font-size: 16px;
  line-height: 160%;
}

.rich-text blockquote {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 18px;
  line-height: 120%;
}

.rich-text ol, .rich-text ul {
  margin-top: 2vw;
  margin-bottom: 2vw;
  padding-left: 25px;
}

.rich-text li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  line-height: 160%;
}

.rich-text a {
  font-size: 16px;
  line-height: 160%;
}

.button {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button-text {
  font-size: 16px;
  line-height: 120%;
}

.input-field {
  background-color: #0000;
  border: 0 #000;
  min-width: 100%;
  max-width: 100%;
  height: 55px;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  transition: all .3s;
}

.input-field.as-area {
  height: 150px;
  padding: 15px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.success {
  background-color: #0000;
  padding: 0;
}

.hidden-submit {
  z-index: 10;
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.tabs, .tabs-menu {
  width: 100%;
}

.tab-link {
  background-color: #0000;
  padding: 0;
  transition: opacity .3s;
}

.tab-link.w--current {
  background-color: #0000;
}

.tabs-content, .tab-pane, .faq-wrapper {
  width: 100%;
}

.faq-list, .faq-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.faq-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.faq-icon {
  flex: none;
  width: 15px;
  margin-left: 20px;
  display: block;
}

.faq-content {
  width: 100%;
  overflow: hidden;
}

.content-inner {
  width: 100%;
  padding-bottom: 20px;
}

.two-columns {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.two-columns.align-center {
  place-items: center;
}

.column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.column.vertical-paddings {
  padding-top: 100px;
  padding-bottom: 100px;
}

.column.spacing-double {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.column.spacing-double.padding-left {
  padding-left: 75px;
}

.column.spacing-double.padding-right {
  padding-right: 25%;
}

.three-columns {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.three-columns.align-center {
  place-items: center;
}

.pagination {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  display: flex;
}

.empty-state {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.link-overlay {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.form {
  width: 100%;
  margin: 0;
}

.form-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.success-inner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.checkbox-field {
  margin: 0;
  padding: 0;
}

.checkbox {
  border: 0 #000;
  margin: 0;
  transition: all .3s;
}

.radio-button-field {
  margin: 0;
  padding: 0;
}

.radio-button {
  border: 0 #000;
  margin: 0;
  transition: all .3s;
}

.text-style-small {
  color: var(--black);
  margin: 0;
  font-family: Innovator Grotesk, Verdana, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 130%;
}

.text-style-small.text-color-white {
  color: #fff;
}

.text-style-small.text-color-white.font-weight-semibold {
  font-weight: 600;
}

.text-style-small.xsmall {
  font-size: 13px;
  line-height: 140%;
}

.text-style-small.xsmall.no-break {
  white-space: nowrap;
}

.text-style-large {
  color: var(--black);
  text-align: left;
  letter-spacing: -.5px;
  margin: 0;
  font-family: Innovator Grotesk, Verdana, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  text-decoration: none;
}

.text-style-large.extrabold-mobile.size-24 {
  font-size: 24px;
}

.text-style-xlarge {
  text-align: left;
  margin: 0;
  font-size: 22px;
  text-decoration: none;
}

.text-align-left {
  margin: 0;
  text-decoration: none;
}

.text-align-right {
  text-align: right;
  margin: 0;
}

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

.illustration-back {
  background-color: var(--white);
  border: 2px solid #202020;
  width: 100%;
  padding: 50px;
  position: relative;
  box-shadow: -6px 6px #202020;
}

.illustration-back.is-green {
  background-color: var(--green);
}

.step {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 75%;
  display: flex;
}

.label {
  border: 2px solid var(--black);
  background-color: var(--yellow);
  box-shadow: -2px 2px 0 0 var(--black);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  display: flex;
  transform: rotate(-2deg);
}

.label.is-second {
  background-color: var(--pink);
  transform: rotate(2deg);
}

.label.is-third {
  background-color: var(--tiffany);
}

.label.is-blue {
  background-color: var(--blue);
  padding-left: 20px;
  padding-right: 20px;
}

.label.is-sand {
  background-color: var(--sand);
  transform: rotate(2deg);
}

.label.is-tiffany {
  background-color: var(--tiffany);
  padding-left: 20px;
  padding-right: 20px;
}

.label.is-tiffany.absolute-positioning {
  position: absolute;
  inset: -69px auto auto 50px;
}

.steps-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.shortener-60 {
  grid-column-gap: 25px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  display: flex;
  position: relative;
}

.shortener-60.spacing-50 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.font-family-domaine {
  font-family: Domaine Display Condensed, Verdana, sans-serif;
  font-size: 65px;
  font-weight: 500;
}

.button-yellow {
  border: 2px solid var(--black);
  background-color: var(--yellow);
  box-shadow: -3px 3px 0 0 var(--black);
  color: var(--black);
  border-radius: 6px;
  padding: 9px 20px;
  font-family: Innovator Grotesk, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all .3s;
}

.button-yellow:hover {
  box-shadow: 0 0 0 0 var(--black);
  color: #4e1138;
  background-color: #edc9df;
  transform: translate(-3px, 3px);
}

.grain {
  z-index: 10;
  opacity: .05;
  pointer-events: none;
  background-image: url('../images/65847300eaee898abba0ca89_grain-slow.gif');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-bottom {
  border-top: 8px solid var(--black);
  background-color: #0f2b63;
  width: 100%;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.hero-sub {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 125px;
  padding-bottom: 25px;
  display: flex;
}

.shortener-66 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 66%;
  display: flex;
}

.team-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 100px;
  padding-left: 52.5%;
  display: grid;
}

.team-member {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.team-portrait {
  border: 2px solid var(--black);
  box-shadow: -6px 6px 0 0 var(--black);
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 240px;
  padding: 10px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-info {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.social-link {
  z-index: 1;
  background-color: var(--pink);
  border: 2px solid #4e1138;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
  box-shadow: -2px 2px #4e1138;
}

.social-link:hover {
  background-color: #eeedea;
  transform: translate(-2px, 2px);
  box-shadow: 0 0 #4e1138;
}

.social-link.is-tiffany {
  background-color: var(--tiffany);
  border-color: #0f2b63;
  box-shadow: -2px 2px #0f2b63;
}

.social-link.is-tiffany:hover {
  background-color: #eeedea;
  box-shadow: 0 0 #0f2b63;
}

.social-link.is-yellow {
  background-color: var(--yellow);
  border-color: #52400e;
  box-shadow: -2px 2px #52400e;
}

.social-link.is-yellow:hover {
  background-color: #eeedea;
  box-shadow: 0 0 #52400e;
}

.social-link.is-blue {
  border-color: var(--blue);
  background-color: var(--white);
  box-shadow: -2px 2px 0 0 var(--tiffany);
  width: 43px;
  height: 43px;
}

.social-link.is-blue:hover {
  box-shadow: 0 0 0 0 var(--yellow);
}

.social-icon {
  width: 60%;
}

.social-icon.is-smaller {
  width: 50%;
}

.footer {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-cta {
  border: 2px solid var(--black);
  background-color: var(--blue);
  box-shadow: -6px 6px 0 0 var(--black);
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 125px 100px;
  display: flex;
  position: relative;
}

.button-group {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-white {
  border: 2px solid var(--blue);
  background-color: var(--white);
  box-shadow: -3px 3px 0 0 var(--tiffany);
  color: var(--blue);
  border-radius: 6px;
  padding: 9px 20px;
  font-family: Innovator Grotesk, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all .3s;
}

.button-white:hover {
  border-color: var(--blue);
  background-color: var(--white);
  box-shadow: 0 0 0 0 var(--yellow);
  color: var(--blue);
  transform: translate(-3px, 3px);
}

.footer-meta {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 35px 35px auto;
}

.sticker {
  width: 220px;
  position: absolute;
  inset: auto 100px -52px auto;
}

.brands {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.marquee {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 57px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clients-wrapper, .clients-list {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.client-item {
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 100px;
  display: flex;
  position: relative;
}

.client-image {
  max-width: 125px;
  min-height: 11px;
  max-height: 32px;
}

.label-positioner {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% -40px 11px;
}

.cover-left {
  background-image: linear-gradient(90deg, var(--sand), #eeedea00);
  width: 100px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.cover-right {
  background-image: linear-gradient(-90deg, var(--sand), #eeedea00);
  width: 100px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.company-logo-blue {
  z-index: 1;
  opacity: 0;
  width: 120px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.shortener-50 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 51%;
  display: flex;
  position: relative;
}

.shortener-50.spacing-50 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.lottie, .lottie-desktop {
  width: 100%;
}

.lottie-mobile {
  display: none;
}

.ripple {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

@media screen and (max-width: 991px) {
  .navbar {
    height: auto;
    padding-top: 35px;
  }

  .container {
    width: 90vw;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .container.hspread.less-margins {
    width: 95vw;
    padding-left: 0;
    padding-right: 0;
  }

  .container.full-mobile {
    width: 100vw;
  }

  .logo-link {
    z-index: 1;
    transition-property: none;
    position: relative;
  }

  .logo-link:hover {
    transform: none;
  }

  .company-logo-white {
    width: 76px;
  }

  .hero {
    padding-top: 125px;
  }

  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .section.paddings-half {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .image-inner.parallax {
    height: 100%;
    top: 0%;
  }

  .image-inner.is-liquid {
    display: none;
  }

  .image-inner.only-mobile {
    display: block;
  }

  .text-style-regular {
    font-size: 17px;
  }

  .heading-style-h1 {
    letter-spacing: -.7px;
    font-size: 36px;
  }

  .heading-style-h1.mtop-2 {
    margin-top: 20px;
  }

  .heading-style-h1.mbot-2 {
    margin-bottom: 20px;
  }

  .heading-style-h1.mbot-1 {
    margin-bottom: 10px;
  }

  .heading-style-h2 {
    font-size: 42px;
  }

  .heading-style-h2.mtop-2 {
    margin-top: 20px;
  }

  .heading-style-h2.mbot-1 {
    margin-bottom: 10px;
  }

  .heading-style-h2.mtop-1 {
    margin-top: 10px;
  }

  .heading-style-h3.mtop-2 {
    margin-top: 20px;
  }

  .heading-style-h3.mbot-2 {
    margin-bottom: 20px;
  }

  .heading-style-h3.mbot-1 {
    margin-bottom: 10px;
  }

  .heading-style-h3.mtop-1 {
    margin-top: 10px;
  }

  .heading-style-h4.mtop-2 {
    margin-top: 20px;
  }

  .heading-style-h4.mbot-1 {
    margin-bottom: 10px;
  }

  .heading-style-h4.mtop-1 {
    margin-top: 10px;
  }

  .heading-style-h5.mtop-2 {
    margin-top: 20px;
  }

  .heading-style-h5.mbot-2 {
    margin-bottom: 20px;
  }

  .heading-style-h5.mbot-1 {
    margin-bottom: 10px;
  }

  .heading-style-h5.mtop-1 {
    margin-top: 10px;
  }

  .heading-style-h6.mtop-2 {
    margin-top: 20px;
  }

  .heading-style-h6.mbot-2 {
    margin-bottom: 20px;
  }

  .heading-style-h6.mbot-1 {
    margin-bottom: 10px;
  }

  .heading-style-h6.mtop-1 {
    margin-top: 10px;
  }

  .scroll-trigger {
    display: none;
  }

  .rich-text h1 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 40px;
  }

  .rich-text h2 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 35px;
  }

  .rich-text h3 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 25px;
  }

  .rich-text h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .rich-text h5 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .rich-text h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .rich-text p {
    font-size: 16px;
  }

  .rich-text blockquote {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    font-size: 18px;
  }

  .rich-text ol, .rich-text ul {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .rich-text li {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 16px;
  }

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

  .faq-trigger {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .content-inner {
    padding-bottom: 15px;
  }

  .two-columns {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .column.vertical-paddings {
    padding-top: 0;
    padding-bottom: 0;
  }

  .column.spacing-double.padding-left {
    padding-left: 0;
  }

  .column.spacing-double.padding-right {
    padding-right: 0%;
  }

  .three-columns {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .pagination {
    margin-top: 20px;
  }

  .empty-state {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 20px;
  }

  .text-style-small.xsmall.no-break {
    font-size: 10px;
  }

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

  .illustration-back {
    order: -1;
  }

  .label.is-sand {
    padding-left: 7px;
    padding-right: 7px;
  }

  .label.is-tiffany.absolute-positioning {
    top: -46px;
  }

  .shortener-60 {
    width: 100%;
  }

  .shortener-60.spacing-50 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .font-family-domaine {
    font-size: 42px;
  }

  .button-yellow {
    padding: 7px 15px;
    font-size: 15px;
    line-height: 120%;
  }

  .hero-bottom {
    height: 50px;
  }

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

  .shortener-66 {
    width: 100%;
  }

  .team-list {
    margin-top: 50px;
    padding-left: 0%;
  }

  .footer {
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-cta {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    box-shadow: none;
    border-bottom-style: none;
    border-left-style: none;
    border-right-style: none;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw;
    padding: 75px 5vw 35px;
    transition-property: none;
    left: -5vw;
  }

  .footer-cta:hover {
    transform: none;
  }

  .footer-meta {
    justify-content: flex-start;
    align-items: center;
    position: static;
  }

  .sticker {
    width: 155px;
    bottom: 64px;
    right: 0;
  }

  .brands {
    padding-top: 25px;
  }

  .client-item {
    padding-right: 75px;
  }

  .client-image {
    max-width: 100px;
    max-height: 25px;
  }

  .label-positioner {
    bottom: -30px;
    left: 7px;
  }

  .cover-left, .cover-right {
    display: none;
  }

  .company-logo-blue {
    width: 76px;
  }

  .footer-pattern {
    width: 100vw;
    height: 130px;
    position: relative;
  }

  .shortener-50 {
    width: 100%;
  }

  .shortener-50.spacing-50 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .ripple.hideonmobile {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section.paddings-half {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .text-style-large {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text-style-small.text-color-white.font-weight-semibold {
    font-size: 13px;
  }

  .text-style-small.xsmall.no-break {
    font-size: 12px;
  }

  .text-style-large.extrabold-mobile {
    font-weight: 800;
  }

  .text-style-large.extrabold-mobile.size-24 {
    font-size: 17px;
  }

  .illustration-back {
    padding: 15px;
  }

  .step {
    width: 100%;
  }

  .label.is-sand {
    padding-left: 7px;
    padding-right: 7px;
  }

  .label.is-tiffany.absolute-positioning {
    left: 0;
  }

  .hero-bottom {
    height: 75px;
  }

  .hero-sub {
    padding-left: 15%;
    padding-right: 15%;
  }

  .team-list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
  }

  .team-member {
    flex-flow: row;
    width: 100%;
  }

  .team-portrait {
    flex: none;
    width: 110px;
    height: 136px;
    overflow: visible;
  }

  .team-portrait:hover {
    box-shadow: -6px 6px 0 0 var(--black);
    transform: none;
  }

  .social-link {
    position: absolute;
    inset: auto -50px 5px auto;
  }

  .social-link.is-blue {
    position: relative;
    bottom: 0;
    right: 0;
  }

  .footer-cta {
    grid-column-gap: 75px;
    grid-row-gap: 75px;
    padding-bottom: 25px;
  }

  .sticker {
    z-index: 4;
    bottom: 68px;
    right: 5vw;
  }

  .client-item {
    padding-right: 60px;
  }

  .cover-left, .cover-right {
    width: 50px;
  }

  .lottie-desktop {
    display: none;
  }

  .lottie-mobile {
    display: block;
  }
}

/*blog*/
.button-group {
  display: flex;
  gap: 10px; /* or whatever spacing looks good */
}

.blog-hero {
      background: #0a0a23;
      color: #fff;
      padding: 80px 0 40px 0;
      text-align: center;
    }
    .blog-list {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin: 40px 0;
    }
    .blog-card {
      background: #fff;
      color: #222;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      max-width: 350px;
      width: 100%;
      padding: 32px 24px 24px 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: box-shadow 0.2s;
      text-decoration: none;
    }
    .blog-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    }
    .blog-card-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: #0a0a23;
    }
    .blog-card-meta {
      font-size: 0.95rem;
      color: #888;
      margin-bottom: 16px;
    }
    .blog-card-desc {
      font-size: 1rem;
      color: #444;
      margin-bottom: 18px;
    }
    @media (max-width: 900px) {
      .blog-list { flex-direction: column; align-items: center; }
    }

/*blog*/


@font-face {
  font-family: 'Innovator Grotesk';
  src: url('../fonts/InnovatorGrotesk-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Innovator Grotesk';
  src: url('../fonts/InnovatorGrotesk-Bold.otf') format('opentype'), url('../fonts/InnovatorGrotesk-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Domaine Display Condensed';
  src: url('../fonts/DomaineDispCond-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Innovator Grotesk';
  src: url('../fonts/InnovatorGrotesk-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}