:root {
  --ink: #00002e;
  --chalk-white: #fbfbfb;
  --deep-blue: #0a0a5b;
  --grey: #4f5a6c;
  --zw-blue: #4040db;
  --chalk-blue: #c6d7f0;
}

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

p {
  margin-bottom: 10px;
}

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

.body {
  color: var(--ink);
  background-color: #0000;
  height: 900px;
  font-family: Neurialgrotesk, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.home-landing {
  background-color: var(--chalk-white);
  color: var(--deep-blue);
  height: 800px;
  margin-top: 66px;
  margin-bottom: 0;
  padding: 40px 4% 0;
}

.container {
  background-color: #333;
  width: 100vw;
}

.navbar {
  z-index: 1001;
  box-shadow: 0 0 4px 0 var(--grey);
  color: #e0e0e0;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  height: 66px;
  font-size: 16px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-container {
  padding-left: 4%;
  padding-right: 4%;
}

.nav-link {
  color: var(--grey);
  margin-top: 2px;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link.w--current {
  color: var(--zw-blue);
  border-bottom: 0 solid #326ed7;
  font-weight: 400;
}

.nav-link.nav-cta {
  border: 2px solid var(--zw-blue);
  color: var(--zw-blue);
  background-color: #fff;
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 24px;
  transition: background-color .2s, color .2s, box-shadow .2s;
}

.nav-link.nav-cta:hover {
  border-color: var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  font-weight: 400;
  box-shadow: 0 0 4px #0000003d, 3px 3px 4px #0000003d;
}

.nav-link.nav-cta:active {
  background-color: #3939c2;
}

.nav-link.nav-cta-copy {
  border: 2px solid var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  border-radius: 8px;
  height: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 24px;
  transition: background-color .2s, color .2s, box-shadow .2s;
}

.nav-link.nav-cta-copy:hover {
  border-color: var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  font-weight: 400;
  box-shadow: 0 0 4px #0000003d, 3px 3px 4px #0000003d;
}

.nav-link.nav-cta-copy:active {
  background-color: #3939c2;
}

.home-landing-column {
  height: auto;
  padding-top: 60px;
  padding-right: 40px;
}

.home-landing-column.left {
  padding-top: 0;
  padding-left: 0;
}

.home-landing-column.right {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-clip: content-box;
  justify-content: flex-end;
  align-items: center;
  height: 75%;
  padding: 57px 0 50px;
  display: flex;
  overflow: hidden;
}

.h1 {
  color: var(--deep-blue);
  letter-spacing: -.01em;
  width: auto;
  margin-top: 0;
  margin-bottom: 57px;
  padding-top: 57px;
  font-size: 70px;
  font-weight: 300;
  line-height: 80px;
}

.form {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.form.bottom-form {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.submit-button {
  border: 2px solid var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  letter-spacing: .01em;
  border-radius: 10px;
  width: 300px;
  height: 64px;
  margin-left: 0;
  font-size: 16px;
  font-weight: 400;
}

.submit-button:hover {
  background-color: var(--zw-blue);
  color: var(--chalk-white);
}

.submit-button:active {
  background-color: #3434b3;
}

.submit-button.bottom-form {
  border-color: var(--chalk-white);
  color: var(--chalk-white);
  background-color: #0000;
  margin-left: 0;
}

.submit-button.bottom-form:hover {
  background-color: var(--chalk-white);
  color: var(--zw-blue);
}

.submit-button.bottom-form:active {
  background-color: #e6e6e6;
}

.text-field {
  border: 1px solid var(--ink);
  background-color: var(--chalk-white);
  color: var(--deep-blue);
  border-radius: 8px;
  width: 300px;
  height: 48px;
  margin-bottom: 0;
  margin-right: 0;
}

.text-field.bottom-form {
  border-color: var(--ink);
  background-color: var(--chalk-white);
  color: var(--ink);
  width: 100%;
}

.field-label {
  background-color: var(--chalk-white);
  color: var(--ink);
  letter-spacing: .03em;
  text-transform: uppercase;
  width: 88px;
  margin-top: -52px;
  margin-bottom: 40px;
  margin-left: 10px;
  padding-top: 0;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 10px;
  font-weight: 300;
  line-height: 10px;
  position: static;
  top: auto;
  bottom: 205px;
}

.field-label.top {
  background-color: var(--chalk-white);
  color: var(--ink);
  width: 88px;
  margin-top: -52px;
  margin-left: 12px;
  font-weight: 300;
  position: static;
}

.paragraph {
  color: var(--ink);
  width: auto;
  margin-bottom: 58px;
  font-weight: 300;
  line-height: 28px;
}

.email-input {
  flex: 1;
  width: auto;
  margin-bottom: 52px;
}

.email-input.bottom-form {
  width: 300px;
  margin-bottom: 20px;
  padding-top: 3px;
}

.success-message {
  background-color: #333;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-top: 40px;
}

.error-message {
  color: #eb5757;
  background-color: #0000;
}

.integrations {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 720px;
  margin-bottom: 160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: static;
  top: 30px;
}

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

.integration-logo-container {
  height: auto;
  margin-bottom: 20px;
}

.home-product-overview {
  background-color: var(--grey);
  height: 900px;
  padding-top: 200px;
  position: static;
}

.integration-logo, .integration-logo.qb-logo, .integration-logo.fb-logo {
  height: 46px;
}

.text-block {
  margin-top: 200px;
  margin-left: 150px;
  font-size: 32px;
  line-height: 40px;
}

.overview-p {
  color: var(--chalk-white);
  margin-top: 0;
  margin-bottom: 100px;
  margin-left: 155px;
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
}

.overview-breakdown {
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.p1 {
  opacity: .9;
  color: var(--chalk-white);
  width: 250px;
  font-weight: 300;
}

.overview-icon {
  color: var(--ink);
  margin-top: 30px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.how-it-works {
  background-color: var(--chalk-white);
  height: auto;
  padding-top: 200px;
  padding-bottom: 100px;
}

.h2 {
  color: var(--ink);
  text-align: center;
  margin-top: 0;
  margin-bottom: 80px;
  padding-top: 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
}

.h2.testimonial-heading {
  opacity: 1;
  color: var(--chalk-white);
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.h2.signup-h2 {
  color: var(--ink);
  text-align: left;
  margin-bottom: 60px;
  padding-top: 0;
}

.h2.pricing-h2 {
  color: var(--ink);
  margin-bottom: 60px;
}

.how-it-works-row {
  background-image: url('../images/Zeewise-Logo_Brand-Patterns_Connectivity_Squares-chalkblue.svg');
  background-position: 100% 0;
  background-repeat: repeat-y;
  background-size: auto;
  background-attachment: scroll;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.how-it-works-row.middle {
  background-position: 0 0;
}

.how-it-works-p {
  color: var(--ink);
  width: 320px;
  font-weight: 300;
  line-height: 26px;
}

.heading {
  color: var(--ink);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.heading.easy {
  color: var(--chalk-white);
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 0;
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.how-it-works-p-container {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.how-it-works-left {
  text-align: left;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 25px;
  display: flex;
}

.how-it-works-right {
  margin-bottom: 220px;
  padding-left: 20px;
}

.how-it-works-img {
  border: 0 solid #999;
  border-radius: 0;
  height: 260px;
  margin-bottom: 0;
  margin-right: 0;
  box-shadow: 0 0 10px #0000004d;
}

.reviews {
  background-color: var(--grey);
  color: var(--chalk-white);
  height: 810px;
  margin-top: 0;
  padding-top: 200px;
  transition: background-color .2s;
  display: none;
}

.image {
  filter: invert(80%);
  height: 33px;
  margin-top: 0;
  margin-right: 10px;
  display: block;
}

.integration-logos {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
  display: flex;
}

.author-name {
  border-right: 2px solid var(--grey);
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 20px;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.play-button {
  position: absolute;
}

.right-arrow {
  background-color: #007bfc;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  font-size: 14px;
  top: 17px;
  right: -17px;
}

.author-block {
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.left-arrow {
  background-color: #007bfc;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  font-size: 14px;
  display: flex;
  top: 17px;
  left: -17px;
}

.curve-rough {
  object-fit: cover;
  width: 110%;
  position: absolute;
  inset: auto 0% -2%;
}

.content-block {
  padding: 20px 35px 40px;
}

.testimonial-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.play-icon {
  width: 60px;
}

.quote-h4 {
  color: #151c34;
  font-size: 17px;
  font-weight: 500;
}

.image-wrapper {
  justify-content: center;
  align-items: center;
  height: 320px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide-nav {
  background-color: #fff;
  border-radius: 500px;
  max-width: 150px;
  display: none;
  top: 575.901px;
  box-shadow: 1px 1px 3px #0000000d;
}

.testimonial-card {
  height: 100%;
  box-shadow: 17px 88px 60px -100px #4f5e782e, 11px 0 20px -9px #4f5e781a;
}

.author-job {
  color: #151c3480;
}

.text-fixed-height {
  min-height: 100px;
}

.slider {
  background-color: #0000;
  width: 100%;
  max-width: 490px;
  height: 100%;
}

.author-image {
  border-radius: 100px;
  width: 50px;
  margin-right: 14px;
  box-shadow: 1px 1px 3px #00000024;
}

.mask {
  overflow: visible;
}

.slider-2 {
  background-color: #0000;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.quote-title {
  opacity: .95;
  padding-right: 40px;
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
}

.quote-img {
  width: 60px;
  margin-right: 24px;
}

.quote-img.altn-img {
  width: 160px;
}

.quote-title-block {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.author-info {
  display: flex;
}

.paragraph-2 {
  width: 90%;
  margin-bottom: 20px;
  padding-right: 40px;
  font-weight: 300;
}

.company-name {
  opacity: .9;
  color: var(--chalk-white);
  margin-left: 20px;
  font-weight: 300;
  line-height: 30px;
  text-decoration: none;
}

.company-name:hover {
  color: #326ed7;
}

.company-name:visited {
  font-size: 20px;
}

.left-arrow-2 {
  background-color: #333;
  height: 100%;
  margin-left: auto;
  font-size: 16px;
  display: none;
  inset: auto;
}

.slide-nav-2 {
  text-align: left;
  background-color: #0000;
  height: auto;
  margin-top: -60px;
  font-size: 16px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.right-arrow-2 {
  height: 100%;
  margin-left: 0;
  padding-left: 0;
  display: none;
  bottom: auto;
}

.pricing-container {
  height: 800px;
  margin-bottom: 0;
}

.section {
  background-color: var(--chalk-white);
  color: var(--ink);
  height: 840px;
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 0;
}

.signup-container {
  color: var(--ink);
  margin-bottom: 0;
}

.howitworkscolumns {
  margin-bottom: 0;
}

.footer {
  clear: none;
  background-color: var(--ink);
  color: #fff;
  text-align: center;
  object-fit: fill;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 0;
  display: block;
  position: static;
  inset: auto 0% 0%;
}

.footer-flex-container {
  clear: none;
  color: var(--chalk-white);
  text-align: left;
  object-fit: fill;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
  left: auto;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.footer-image {
  color: var(--chalk-white);
  object-fit: contain;
  object-position: 0% 50%;
  width: 200px;
  height: auto;
}

.footer-heading {
  color: #ddd;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.footer-link {
  color: var(--chalk-white);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  display: block;
}

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

.text-block-2 {
  color: var(--chalk-white);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.text-block-3 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
  text-decoration: none;
}

.div-block {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-call-out {
  background-color: var(--chalk-white);
  border-radius: 8px;
  width: 30%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  box-shadow: 0 10px 10px #0000003d, 0 0 10px #0000001f;
}

.pricing-call-out.unavailable {
  background-color: var(--chalk-white);
}

.section-2 {
  background-color: var(--chalk-blue);
  margin-bottom: 0;
  padding: 200px 10px;
}

.list-item {
  margin-top: 20px;
  margin-bottom: 20px;
}

.list {
  text-align: center;
  margin-top: 0;
  padding-top: 50px;
  padding-left: 0;
}

.text-block-4 {
  color: var(--zw-blue);
  text-align: center;
  padding-left: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  text-decoration: none;
}

.pricing-callout-heading {
  margin-bottom: 30px;
  padding-top: 40px;
  display: block;
}

.pricing-callout-heading.zee360 {
  background-color: var(--chalk-white);
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
}

.pricing-callout-heading.less-top-margin {
  padding-top: 20px;
}

.text-block-5 {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.text-block-5.zee360 {
  color: var(--ink);
  font-weight: 500;
}

.pricing-list-item {
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  margin-bottom: 10px;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.pricing-checkmark {
  height: 16px;
  margin-top: 2px;
  margin-right: 10px;
}

.image-2 {
  object-fit: contain;
  border: 8px solid #326ed7;
  border-radius: 0;
  flex: 0 auto;
  width: auto;
  max-width: none;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.columns {
  color: var(--chalk-white);
  height: 800px;
}

.div-block-2 {
  background-color: #ec7952;
  width: 110px;
  height: 4px;
  padding-left: 0;
  position: absolute;
  top: 1429px;
  left: 450px;
  right: 0;
}

.text-block-6 {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.text-block-7 {
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 30px;
  font-weight: 300;
}

.text-block-8 {
  color: var(--ink);
  text-align: left;
  justify-content: center;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 300;
  display: flex;
}

.text-span {
  text-decoration: none;
}

.image-3 {
  border-radius: 0;
  width: 100%;
  height: auto;
}

.pricing-callouts-container {
  justify-content: space-around;
  margin-bottom: 50px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.tier-title {
  text-align: center;
  height: auto;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
}

.coming-soon {
  color: var(--grey);
  text-align: center;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
}

.div-block-3 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.div-block-3.zee-360 {
  width: auto;
  position: static;
}

.about-zeewise {
  background-color: #fff;
  height: auto;
  padding-top: 200px;
  padding-bottom: 140px;
  display: block;
}

.text-block-9 {
  display: block;
}

.about-p {
  white-space: normal;
  width: 500px;
  margin-bottom: 20px;
  margin-left: auto;
  font-weight: 300;
  line-height: 28px;
}

.zee360-card {
  text-align: left;
  background-color: #fff;
  border: 0 solid #000;
  border-radius: 8px;
  width: auto;
  height: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 10px #0000003d, 0 0 10px #0000001f;
}

.column {
  height: auto;
}

.zeewise-partner-logos {
  flex-flow: column;
  place-content: flex-start space-around;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.zeewise-partner-logo {
  flex: 0 auto;
  align-self: auto;
  width: auto;
  height: 60px;
  margin-bottom: 40px;
}

.zeewise-partner-logo.fast-signs, .zeewise-partner-logo.altn {
  height: 40px;
}

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

.about-logo-slider {
  background-color: #fff;
  width: 500px;
}

.right-arrow-3, .left-arrow-3 {
  display: none;
}

.slide-nav-3 {
  font-size: 10px;
  line-height: 10px;
  top: 320px;
}

.columns-3 {
  margin-top: 20px;
}

.list-2 {
  justify-content: space-around;
  width: 600px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.list-item-2 {
  color: var(--chalk-white);
  margin-left: 0;
  margin-right: 0;
}

.footer-nav-link {
  color: var(--chalk-white);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
}

.footer-nav-link.w--current {
  color: var(--chalk-white);
}

.privacy-policy {
  padding: 20px 40px 100px;
}

.terms {
  margin-top: 80px;
  padding: 20px 140px 100px;
}

.brand {
  align-items: center;
  height: 66px;
  display: flex;
}

.brand-p {
  color: var(--deep-blue);
  letter-spacing: -1px;
  text-transform: none;
  font-family: Neurialgrotesk, sans-serif;
  font-size: 30px;
  font-weight: 300;
}

.text-span-2 {
  color: var(--ink);
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.product-img-container {
  background-image: url('../images/cropped-dashboard.png');
  background-position: 50%;
  background-size: cover;
  width: 500px;
  height: 300px;
  margin-top: 40px;
}

.submit-button-2 {
  background-color: #333;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}

.text-span-3 {
  text-decoration: underline;
}

.h2-2 {
  color: #4f4f4f;
  width: 420px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 30px;
}

.progress-circle {
  background-color: #333;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.progress-circle.unfilled {
  opacity: .4;
}

.subheading {
  width: 420px;
  margin-bottom: 20px;
  font-size: 16px;
}

.h1-2 {
  color: #4f4f4f;
  width: 420px;
  margin-top: 40px;
  margin-bottom: 80px;
  font-size: 36px;
  line-height: 40px;
}

.field-label-2 {
  letter-spacing: .03em;
  text-transform: uppercase;
  background-color: #fff;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 10px;
  font-weight: 700;
}

.field-label-2.concept-id {
  width: 71px;
  position: relative;
  top: 16px;
  left: 12px;
}

.field-label-2.email {
  width: 125px;
  position: relative;
  top: 15px;
  left: 12px;
}

.sales-copy {
  color: #fff;
  width: 500px;
  font-size: 16px;
}

.mvp-right {
  background-color: #333;
  flex-direction: column;
  align-items: center;
  width: 50%;
  display: flex;
}

.sales-copy-heading {
  color: #fff;
  width: 500px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 700;
  line-height: 46px;
}

.mvp {
  height: 100vh;
  display: flex;
}

.progress-indicator {
  justify-content: space-between;
  width: 128px;
  display: flex;
}

.mvp-left {
  flex-direction: column;
  align-items: center;
  width: 50%;
  display: flex;
}

.form-block-2 {
  width: 420px;
  margin-bottom: 140px;
}

.text-field-2 {
  text-align: right;
  border: 1px solid #333;
  border-radius: 4px;
  margin-bottom: 0;
}

.concept-id-container {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.body-2 {
  font-family: Lato, sans-serif;
}

.text-block-12 {
  font-size: 16px;
}

.list-item-3 {
  color: var(--chalk-white);
}

.image-4 {
  float: right;
  clear: none;
  text-align: right;
  position: relative;
}

.section-3 {
  background-color: var(--chalk-white);
  margin-bottom: 0;
  padding-top: 0;
}

.section-4 {
  background-color: var(--chalk-white);
}

.emphasis-underline {
  border-bottom: 4px solid #ec7952;
  height: auto;
}

.container-2 {
  background-color: #0000;
}

.column-2 {
  background-image: url('../images/slashes-bg.svg');
  background-position: 0 0;
  background-size: cover;
  align-items: center;
  height: 650px;
  display: flex;
}

.circles-squares-bg {
  background-image: url('../images/Circles--Squares-bg.svg');
  background-position: 0 0;
  background-size: contain;
  width: 100vw;
  height: 120px;
  position: absolute;
  top: 1990px;
}

.brand-dot-patters {
  z-index: 1000;
  color: var(--zw-blue);
  background-image: url('../images/Zeewise-Logo_Brand-Patterns_Connectivity_Dots.svg');
  background-position: 0 0;
  background-size: auto;
  width: 200px;
  height: 200px;
  display: block;
  position: absolute;
  top: 3330px;
  right: 0;
}

.image-5 {
  width: 90%;
}

.column-3 {
  justify-content: center;
  display: flex;
}

.column-4 {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.image-6 {
  width: 200px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.powered-by {
  justify-content: center;
  margin-bottom: 0;
  display: block;
}

.image-7 {
  height: 600px;
}

.column-6 {
  padding-top: 20px;
}

.product-overview-right {
  padding-top: 100px;
}

.link {
  color: var(--ink);
  text-decoration: none;
}

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

.paragraph-3 {
  color: var(--ink);
  text-align: left;
  justify-content: center;
  align-items: flex-end;
  margin-top: 160px;
  font-family: Neurialgrotesk, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 40px;
  display: flex;
  position: static;
}

.body-3 {
  background-color: #0000;
  margin-bottom: -100px;
  overflow: auto;
}

.cta-button {
  background-color: var(--zw-blue);
  text-align: center;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 64px;
  font-size: 16px;
  display: flex;
}

.text-block-7-copy {
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 500;
}

.link-2 {
  font-weight: 500;
}

.logo {
  object-fit: fill;
  width: auto;
  max-width: none;
  height: 54px;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 2px;
  display: block;
  position: relative;
  top: 8px;
}

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

.div-block-4 {
  margin-top: 100px;
}

.footer-copy {
  clear: none;
  background-color: var(--ink);
  color: #fff;
  text-align: center;
  object-fit: fill;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 0;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
}

.how-it-works-img-dashboard {
  border: 0 solid #999;
  border-radius: 0;
  height: 300px;
  margin-bottom: 0;
  margin-right: 0;
  box-shadow: 0 0 10px #0000004d;
}

.utility-page-wrap-2 {
  background-color: #fbfbfb;
  background-image: url('../images/uf-404-bg-smaller.jpg');
  background-position: 50% 20%;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 80px;
  display: flex;
}

._404-content-container {
  background-color: #4f5a6ce6;
  width: 524px;
  height: 467px;
  padding-top: 37px;
  padding-left: 40px;
  padding-right: 40px;
}

._404-img {
  margin-top: 0;
  margin-bottom: 69px;
}

.subheading-2 {
  color: #00002e;
  width: auto;
  max-width: 540px;
  margin-bottom: 60px;
  font-size: 24px;
  font-weight: 300;
  line-height: 35px;
}

.subheading-2._404-subhead {
  color: #fff;
  text-align: left;
  width: 440px;
  margin-bottom: 40px;
  font-family: Neurialgrotesk, sans-serif;
}

.zeewise-btn {
  color: #4040db;
  background-color: #fbfbfb;
  border: 1px solid #4040db;
  border-radius: 8px;
  padding: 20px 40px;
  font-size: 16px;
}

.zeewise-btn._404-btn {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
  font-family: Neurialgrotesk, sans-serif;
  font-weight: 400;
}

.logo-link {
  color: var(--grey);
  margin-top: 3px;
}

.logo-link:hover {
  color: var(--ink);
}

.logo-link.w--current {
  color: var(--zw-blue);
  border-bottom: 0 solid #326ed7;
  margin-top: 0;
  font-weight: 400;
}

.logo-link.nav-cta {
  border: 2px solid var(--zw-blue);
  color: var(--zw-blue);
  background-color: #fff;
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 24px;
  transition: background-color .2s, color .2s, box-shadow .2s;
}

.logo-link.nav-cta:hover {
  border-color: var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  font-weight: 400;
  box-shadow: 0 0 4px #0000003d, 3px 3px 4px #0000003d;
}

.logo-link.nav-cta:active {
  background-color: #3939c2;
}

.logo-link.nav-cta-copy {
  border: 2px solid var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  border-radius: 8px;
  height: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 24px;
  transition: background-color .2s, color .2s, box-shadow .2s;
}

.logo-link.nav-cta-copy:hover {
  border-color: var(--zw-blue);
  background-color: var(--zw-blue);
  color: var(--chalk-white);
  font-weight: 400;
  box-shadow: 0 0 4px #0000003d, 3px 3px 4px #0000003d;
}

.logo-link.nav-cta-copy:active {
  background-color: #3939c2;
}

.body-4 {
  background-color: var(--chalk-white);
  color: var(--ink);
  font-family: Neurialgrotesk, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 40px;
}

.body-5 {
  color: var(--ink);
  font-family: Neurialgrotesk, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 40px;
}

@media screen and (max-width: 991px) {
  .home-landing {
    height: 640px;
    padding-top: 0;
  }

  .navbar {
    height: 60px;
  }

  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-link, .nav-link.w--current {
    text-align: center;
  }

  .nav-link.nav-cta, .nav-link.nav-cta-copy {
    margin-left: 16px;
    margin-right: 16px;
  }

  .home-landing-column.left {
    padding-right: 20px;
  }

  .h1 {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 50px;
  }

  .paragraph {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 20px;
  }

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

  .home-product-overview {
    height: 1040px;
    padding-top: 100px;
  }

  .overview-p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
    margin-left: 0;
  }

  .overview-breakdown {
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .overview-div {
    background-position: 0 -30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
    display: flex;
  }

  .p1 {
    text-align: center;
    width: 320px;
  }

  .overview-icon {
    margin-top: 0;
    padding-right: 0;
  }

  .how-it-works {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

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

  .reviews {
    height: 660px;
    padding-top: 100px;
  }

  .image {
    height: 30px;
  }

  .integration-logos {
    margin-top: 20px;
  }

  .paragraph-2 {
    width: 100%;
    padding-right: 0;
  }

  .section {
    height: 600px;
    padding-top: 100px;
  }

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

  .pricing-call-out {
    width: 80%;
    margin-bottom: 100px;
  }

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

  .pricing-callout-heading.zee360 {
    max-width: 680px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-2 {
    width: 90%;
  }

  .columns {
    height: 750px;
  }

  .div-block-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
    top: 1107px;
    left: 426px;
    right: 0;
  }

  .text-block-6 {
    object-fit: fill;
  }

  .text-block-7 {
    max-width: 320px;
  }

  .image-3 {
    height: auto;
  }

  .pricing-callouts-container {
    flex-direction: column;
  }

  .div-block-3 {
    width: 50%;
  }

  .div-block-3.zee-360 {
    margin-right: auto;
    padding-right: 20px;
  }

  .nav-menu {
    background-color: #fff;
    box-shadow: 0 4px 4px #00000080;
  }

  .about-zeewise {
    height: 1000px;
    padding-top: 100px;
  }

  .about-p {
    margin-right: auto;
  }

  .zee360-card {
    width: auto;
    max-width: none;
    display: flex;
  }

  .column {
    margin-bottom: 40px;
  }

  .zeewise-partner-logos {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-left: auto;
  }

  .zeewise-partner-logo {
    align-self: auto;
  }

  .zeewise-partner-logo.waxing, .zeewise-partner-logo.friday {
    height: 50px;
  }

  .about-logo-slider {
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .slide-nav-3 {
    top: 100px;
    overflow: hidden;
  }

  .list-2 {
    width: 60%;
  }

  .brand-dot-patters {
    top: 3265px;
  }

  .column-3 {
    height: 450px;
  }

  .image-6 {
    width: 160px;
  }

  .text-block-7-copy {
    max-width: 320px;
  }

  .footer-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subheading-2 {
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 30px;
  }

  .zeewise-btn {
    padding: 12px 24px;
  }

  .logo-link, .logo-link.w--current {
    text-align: center;
  }

  .logo-link.nav-cta, .logo-link.nav-cta-copy {
    margin-left: 16px;
    margin-right: 16px;
  }
}

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

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  p, ul {
    font-size: 12px;
    line-height: 16px;
  }

  .home-landing {
    height: 1080px;
    margin-bottom: 80px;
  }

  .home-landing-column.right {
    justify-content: center;
    height: 80%;
  }

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

  .submit-button {
    width: 100%;
  }

  .submit-button.bottom-form {
    width: 90%;
    margin-left: 0;
  }

  .text-field {
    width: 100%;
  }

  .email-input.bottom-form {
    width: 90%;
  }

  .integrations {
    width: 420px;
    margin-top: 0;
    margin-bottom: 80px;
  }

  .home-product-overview {
    height: 950px;
    padding-top: 100px;
  }

  .integration-logo, .integration-logo.qb-logo, .integration-logo.fb-logo {
    height: 40px;
  }

  .overview-p {
    margin-top: 0;
    font-size: 24px;
  }

  .overview-breakdown {
    padding-left: 100px;
    padding-right: 100px;
  }

  .p1 {
    font-size: 16px;
    line-height: 20px;
  }

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

  .how-it-works {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .h2 {
    margin-top: 0;
    font-size: 32px;
    line-height: 36px;
  }

  .h2.testimonial-heading {
    text-align: left;
    width: 90%;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .how-it-works-row {
    background-position: 50% 100%;
    background-repeat: repeat-x;
    background-size: 75px;
    flex-direction: column;
    padding-left: 12px;
    padding-right: 12px;
  }

  .how-it-works-row.middle {
    background-position: 0 100%;
    flex-direction: column-reverse;
  }

  .how-it-works-p {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
  }

  .heading {
    text-align: center;
    font-size: 14px;
  }

  .how-it-works-p-container {
    margin-bottom: 40px;
  }

  .how-it-works-img {
    height: 150px;
  }

  .reviews {
    height: 520px;
    padding-top: 60px;
  }

  .integration-logos {
    justify-content: space-around;
    align-items: center;
  }

  .author-name {
    font-size: 16px;
    line-height: 24px;
  }

  .image-wrapper {
    height: 280px;
  }

  .slider-2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-title {
    font-size: 24px;
    line-height: 30px;
  }

  .paragraph-2 {
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .company-name {
    font-size: 16px;
    line-height: 24px;
  }

  .slide-nav-2 {
    margin-top: -80px;
    font-size: 16px;
  }

  .section {
    height: 1000px;
    padding-top: 40px;
  }

  .footer {
    padding: 40px 20px;
  }

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

  .footer-image {
    object-fit: contain;
    margin-bottom: 10px;
  }

  .text-block-3 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 20px;
  }

  .section-2 {
    background-color: var(--chalk-blue);
  }

  .pricing-callout-heading.zee360 {
    padding-top: 40px;
  }

  .text-block-5.zee360 {
    margin-bottom: 0;
  }

  .pricing-list-item {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-checkmark {
    height: 16px;
    font-size: 20px;
  }

  .image-2 {
    width: 60%;
  }

  .columns {
    display: block;
  }

  .text-block-6 {
    font-size: 14px;
    line-height: 20px;
  }

  .text-block-7 {
    width: 100%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 20px;
  }

  .image-3 {
    width: 100%;
  }

  .tier-title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 24px;
  }

  .coming-soon {
    font-size: 16px;
    line-height: 20px;
  }

  .div-block-3 {
    width: 250px;
  }

  .div-block-3.zee-360 {
    width: auto;
  }

  .about-zeewise {
    background-color: #fff;
    height: 950px;
    padding-top: 60px;
  }

  .about-p {
    width: 90%;
    font-size: 16px;
    line-height: 20px;
  }

  .zee360-card {
    width: 80%;
  }

  .zeewise-partner-logo {
    height: 40px;
  }

  .zeewise-partner-logo.fast-signs, .zeewise-partner-logo.altn, .zeewise-partner-logo.waxing, .zeewise-partner-logo.friday {
    height: 30px;
  }

  .about-logo-slider {
    width: 95%;
    height: 100px;
    overflow: visible;
  }

  .slide-nav-3 {
    overflow: visible;
  }

  .columns-3 {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav-link {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 0;
  }

  .terms {
    font-size: 14px;
  }

  .emphasis-underline {
    border-bottom-width: 2px;
  }

  .brand-dot-patters {
    width: 160px;
    height: 160px;
    top: 3718px;
  }

  .column-4 {
    justify-content: flex-start;
    padding-left: 0%;
    padding-right: 0;
  }

  .column-5 {
    margin-top: 12px;
  }

  .text-block-7-copy {
    width: 100%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 20px;
  }

  .footer-copy {
    padding: 40px 20px;
  }

  .how-it-works-img-dashboard {
    height: 150px;
  }

  .utility-page-wrap-2 {
    flex-direction: column;
    align-items: stretch;
    padding-top: 120px;
    padding-left: 0;
  }

  ._404-content-container {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .subheading-2 {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 20px;
  }

  .zeewise-btn._404-btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  .home-landing {
    height: 900px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .home-landing-column.left {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .home-landing-column.right {
    height: 100%;
    margin-top: 50px;
  }

  .h1 {
    font-size: 32px;
    line-height: 36px;
  }

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

  .error-message {
    padding-left: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .integrations {
    width: 310px;
  }

  .home-product-overview {
    height: 950px;
    padding-top: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .overview-p {
    margin-top: 0;
    margin-bottom: 60px;
    line-height: 30px;
  }

  .overview-breakdown {
    padding-left: 0;
    padding-right: 0;
  }

  .overview-div {
    margin-bottom: 60px;
  }

  .p1 {
    width: 90%;
  }

  .how-it-works {
    padding-top: 100px;
    padding-bottom: 0;
  }

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

  .h2.testimonial-heading, .h2.pricing-h2 {
    margin-bottom: 60px;
  }

  .how-it-works-row {
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 60px;
  }

  .how-it-works-row.middle {
    flex-direction: column-reverse;
  }

  .how-it-works-p {
    width: auto;
  }

  .how-it-works-p-container {
    width: 90%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-it-works-img {
    width: 90%;
    height: auto;
  }

  .reviews {
    height: 650px;
    padding-top: 100px;
  }

  .author-name {
    padding-right: 15px;
  }

  .right-arrow {
    width: 35px;
    height: 35px;
  }

  .author-block {
    margin-top: 15px;
  }

  .left-arrow {
    width: 35px;
    height: 35px;
  }

  .content-block {
    padding-bottom: 70px;
  }

  .image-wrapper {
    height: 260px;
  }

  .slider-2 {
    height: 340px;
  }

  .quote-title {
    padding-right: 0;
  }

  .author-info {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .paragraph-2 {
    padding-right: 0;
  }

  .company-name {
    margin-left: 15px;
  }

  .slide-nav-2 {
    margin-top: -50px;
    font-size: 12px;
    line-height: 16px;
    top: 331.8px;
  }

  .section {
    height: 960px;
    padding-top: 0;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .footer-logo-link {
    height: 60px;
    margin-bottom: 0;
  }

  .footer-image {
    width: 160px;
    margin-bottom: 0;
  }

  .footer-heading {
    margin-top: 20px;
  }

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

  .pricing-call-out {
    width: 95%;
    height: 400px;
    margin-bottom: 60px;
  }

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

  .text-block-4 {
    font-size: 60px;
  }

  .pricing-callout-heading {
    padding-top: 15px;
  }

  .text-block-5 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .pricing-list-item {
    width: auto;
  }

  .image-2 {
    width: 80%;
  }

  .columns {
    width: 90vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-8 {
    font-size: 16px;
    line-height: 20px;
  }

  .image-3 {
    border-radius: 0;
    width: 100%;
  }

  .pricing-callouts-container {
    margin-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

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

  .div-block-3 {
    width: 90%;
  }

  .about-zeewise {
    height: 1020px;
    padding-top: 100px;
  }

  .text-block-10, .text-block-11 {
    font-size: 16px;
    line-height: 20px;
  }

  .zee360-card {
    width: 95%;
    margin-bottom: 100px;
  }

  .zeewise-partner-logos {
    flex-direction: column;
  }

  .zeewise-partner-logo {
    height: 50px;
  }

  .zeewise-partner-logo.waxing, .zeewise-partner-logo.friday {
    height: 40px;
  }

  .about-logo-slider {
    height: auto;
  }

  .slide-nav-3 {
    top: 280px;
  }

  .list-2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .brand-dot-patters {
    z-index: 0;
    width: 120px;
    height: 120px;
    display: none;
    top: 3540px;
  }

  .image-5 {
    width: 100%;
  }

  .column-4 {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-copy {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .how-it-works-img-dashboard {
    width: 90%;
    height: auto;
  }

  .utility-page-wrap-2 {
    justify-content: center;
    padding-top: 40px;
  }

  .subheading-2._404-subhead {
    width: auto;
    max-width: none;
  }

  .zeewise-btn {
    font-size: 14px;
  }
}


@font-face {
  font-family: 'Neurialgrotesk';
  src: url('../fonts/NeurialGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurialgrotesk';
  src: url('../fonts/NeurialGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurialgrotesk';
  src: url('../fonts/NeurialGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}