:root {
  --font: #121e3b;
  --blue: #4149d0;
  --green: #019e78;
  --white: #fff;
  --white-2: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--font);
  background-color: #ebeae6;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

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

p {
  margin-bottom: 10px;
  line-height: 28px;
}

.button {
  background-color: var(--blue);
  text-align: center;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all .2s;
}

.button:hover {
  opacity: .75;
}

.button.white {
  color: #4723d9;
  background-color: #fff;
}

.button.white.login {
  margin-right: 16px;
}

.button.white.hide-on-mobile {
  overflow: visible;
}

.button.hero-button {
  background-color: var(--green);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 55px;
  font-size: 16px;
  display: flex;
}

.button.round {
  border-radius: 100px;
  align-items: center;
  padding: 12px 32px;
  text-decoration: none;
  display: flex;
}

.button.round.green {
  background-color: var(--green);
}

.button.green {
  background-color: var(--green);
  margin-top: auto;
}

.button.cta {
  margin-top: 28px;
  padding: 16px 30px;
}

.button.secondary {
  color: var(--blue);
  background-color: #4149d030;
  display: none;
}

.hide-on-desktop {
  display: none;
}

.brand-link {
  align-items: center;
  display: flex;
}

.navbar {
  z-index: 99;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #ffffff59;
  border: 1px solid #a5b4e636;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin: 16px;
  padding: 0 12px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.display-flex {
  flex-wrap: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.display-flex.profile-container {
  align-self: flex-start;
  margin-left: 0;
  padding-right: 0;
}

.display-flex.testimonial-subcontainer {
  align-items: stretch;
  padding-left: 50px;
  padding-right: 50px;
}

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

.display-flex.customer-stories-container {
  justify-content: center;
}

.display-flex.align-left {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.display-flex.align-left.align-bottom {
  align-items: flex-end;
}

.display-flex.align-left.pricing-feature {
  margin-bottom: 8px;
}

.body {
  font-family: Plus Jakarta Sans, sans-serif;
}

.navbar-container {
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.navbar-subcontainer {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-link {
  opacity: .5;
  color: #333;
  font-weight: 600;
  transition: opacity .2s;
}

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

.nav-link.w--current {
  border-bottom: 2px solid var(--blue);
  opacity: 1;
  color: var(--blue);
}

.nav-link.display-hidden {
  display: none;
}

.font-logo {
  color: #313131;
  margin-left: 8px;
  font-size: 16px;
  font-weight: 600;
}

.brand {
  padding-left: 8px;
  display: flex;
}

.head-section {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.base-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.base-section.benefits {
  margin-top: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.base-section.benefits.testimonials {
  margin-top: 0;
}

.base-section.how-it-works {
  background-image: url('../images/shape-3.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 262px;
}

.base-section.final-section {
  background-image: url('../images/bottom-score.png'), url('../images/bottom-repeat-customers.png');
  background-position: 100% 100%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 291px, 370px;
  align-items: center;
  min-height: 85vh;
  display: flex;
}

.base-section.final-section.customer-success {
  background-image: url('../images/bottom-score.png'), url('../images/bottom-repeat-customers.png'), linear-gradient(#fcfcfc80, #fcfcfc80);
  background-position: 100% 100%, 0 24px, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: 291px, 370px, auto;
  margin-top: 0;
}

.base-section.final-section.testimonial {
  background-image: none;
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.base-section.navbar-offset {
  padding-top: 148px;
}

.base-section.navbar-offset.pricing-headsection {
  background-image: url('../images/bottom-score.png');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 220px;
  padding-bottom: 95px;
}

.base-section.pricing-main {
  background-color: #eae7df;
  background-image: url('../images/mobile-image.png'), url('../images/bottom-repeat-customers.png');
  background-position: 100% 100%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 109px, 220px;
  padding-top: 75px;
  padding-bottom: 75px;
}

.base-section.blog {
  padding-top: 77px;
}

.base-container {
  max-width: 1280px;
  padding: 0 24px;
}

.base-container.hero {
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.base-container.benefits {
  background-color: #00000012;
  border-radius: 35px;
  flex-direction: column;
  align-items: stretch;
  min-height: 75vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.base-container.benefits.success-story {
  max-width: 700px;
  min-height: 0;
  margin-top: 48px;
}

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

.text-align-center.hero-headline {
  font-size: 55px;
  line-height: 65px;
}

.font-color-blue {
  color: var(--blue);
}

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

.max-width-600px.display-flex.flex-direction-vertical {
  flex-direction: column;
  align-items: center;
  max-width: 650px;
}

.spacer50px {
  width: 50px;
  height: 50px;
}

.hero {
  font-size: 16px;
}

.hero.text-align-center {
  opacity: .75;
  font-size: 18px;
  line-height: 32px;
}

.spacer25px {
  width: 25px;
  height: 25px;
}

.text-link {
  color: var(--font);
  font-weight: 600;
  text-decoration: none;
}

.parallax-container {
  z-index: -1;
  background-image: url('../images/shape.svg'), url('../images/repeat-customers.png'), url('../images/improve-score-hero.png');
  background-position: 100% 0, 110% 100%, -35px 100px;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, 384px, 316px;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.benefits-background {
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.benefits-background.testimonial.detail {
  padding: 48px 24px 24px;
}

.benefit-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-image: linear-gradient(#052518b3, #052518b3);
  border-radius: 24px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  min-height: 300px;
  margin: 16px;
  padding: 32px 24px 24px;
  display: flex;
}

.benefit-container.testimonial {
  background-image: linear-gradient(#050f25b3, #050f25b3);
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  max-width: 500px;
  height: auto;
}

.benefit-container.testimonial.detail {
  min-height: auto;
}

.opaque70 {
  opacity: .7;
}

.black-overlay {
  z-index: -1;
  background-color: #0000004a;
  position: absolute;
  inset: 0%;
}

.heading {
  text-align: center;
}

.section-headline {
  margin-bottom: 100px;
}

.flex-grow {
  flex: 1;
}

.hiw-container {
  justify-content: space-between;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.hiw-subcontainer {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.hiw-subcontainer.right {
  justify-content: center;
  align-items: flex-end;
}

.hiw-subcontainer.right.text {
  align-items: flex-start;
  max-width: 550px;
  padding-left: 24px;
}

.hiw-subcontainer.left {
  justify-content: center;
  max-width: 600px;
}

.font-color-green {
  color: var(--green);
}

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

.button-font {
  color: var(--white);
  margin-right: 8px;
  font-weight: 500;
}

.profile-pic {
  background-image: url('../images/ben-parker-ym--mSBZ0ro-unsplash-2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  width: 45px;
  height: 45px;
  margin-right: 16px;
}

.profile-pic.koshari {
  background-image: url('../images/Frame-4162.png');
}

.profile-pic.noxy {
  background-image: url('../images/image-10.png');
}

.profile-pic.milchhalle {
  background-image: url('../images/Frame-4161-1.png');
  background-position: 50% 0;
}

.testimonial {
  font-size: 16px;
  font-weight: 500;
}

.email-form {
  background-color: #e2e0d9ba;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
  height: 47px;
  margin-bottom: 8px;
  padding: 5px 5px 5px 16px;
  display: flex;
}

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

.button-2 {
  background-color: #4723d9;
  border-radius: 8px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 600;
  transition: all .2s;
}

.button-2:hover {
  opacity: .75;
}

.button-2.nested {
  background-color: var(--green);
  border-radius: 100px;
  align-self: stretch;
}

.email-link {
  color: #8d8d8d;
  font-weight: 500;
  text-decoration: none;
}

.email-link:hover {
  color: #4723d9;
}

.error-message {
  color: #ff1631;
}

.input---nested {
  background-color: #fff0;
  border: 0 solid #000;
  min-width: 250px;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.opaque-50 {
  opacity: .5;
}

.opaque-50.no-margin.text-align-center.copyright {
  margin-bottom: 0;
}

.success-message {
  color: #4723d9;
  background-color: #4723d926;
  border-radius: 8px;
  font-weight: 600;
}

.learn-more {
  opacity: .5;
  color: var(--font);
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.learn-more:hover {
  opacity: 1;
}

.image {
  margin-left: 5px;
}

.image-2 {
  transform: translate(-52px);
}

.footer-seperator {
  background-color: var(--green);
  flex: 1;
  height: 1.5px;
}

.spacer-48px {
  width: 48px;
  height: 48px;
}

.text-link-2 {
  color: #161f3e;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}

.text-link-2:hover {
  opacity: .5;
}

.text-link-2.footer {
  opacity: .53;
  font-weight: 400;
}

.text-link-2.footer:hover {
  opacity: 1;
  color: var(--green);
  -webkit-text-stroke-color: #4723d9;
}

.footer-container {
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  padding: 24px;
  display: flex;
}

.spacer-16px {
  flex: none;
  width: 16px;
  height: 16px;
}

.display-flex-2 {
  display: flex;
}

.display-flex-2.align-center {
  align-items: center;
}

.display-flex-2.align-center.justify-space-between.allow-wrap.footer-subcontainer {
  justify-content: space-between;
  align-items: center;
}

.base-section-2 {
  background-image: linear-gradient(#eceaf500, #eceaf5);
  padding-top: 48px;
  padding-bottom: 48px;
}

.base-section-2.no-gradient {
  background-image: none;
}

.base-section-2.no-gradient.legal-page {
  min-height: 75vh;
  padding-top: 100px;
}

.base-section-2.no-gradient.contact {
  background-image: url('../images/mobile-image.png'), url('../images/Group-2532.png');
  background-position: 100% 100%, 0 75px;
  background-repeat: no-repeat, no-repeat;
  background-size: 109px, 200px;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  position: static;
}

.base-container-2 {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

.all-caps {
  text-transform: uppercase;
}

.image-4, .image-6 {
  display: none;
}

.body-2 {
  background-color: #f3f1eb;
}

.success-teaser-image {
  background-image: linear-gradient(to top, #000, #0000 55%);
  border-radius: 16px;
  height: 250px;
  position: relative;
}

.success-teaser-image.koshari {
  background-image: linear-gradient(to top, #000, #0000 55%), url('../images/image-9.png');
  background-position: 0 0, 50% 65%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.success-teaser-image.noxy {
  background-image: linear-gradient(to top, #000, #0000 55%), url('../images/image-10.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.success-teaser-image.milchhalle {
  background-image: linear-gradient(to top, #000, #0000 55%), url('../images/image-10-1.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.success-teaser-tile {
  color: var(--font);
  flex: 1;
  max-width: 400px;
  padding: 24px;
  text-decoration: none;
  transition: opacity .2s;
}

.success-teaser-tile:hover {
  opacity: .71;
}

.success-teaser-tile.noxy {
  display: none;
  overflow: visible;
}

.image-7 {
  position: absolute;
  inset: auto 0%;
}

.blue-text-button {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.blue-text-button:hover {
  opacity: .7;
}

.spacer-5px {
  width: 5px;
  height: 5px;
}

.succes-story-main-image {
  background-image: linear-gradient(to top, #000, #0000 52%), url('../images/Screenshot-2024-01-09-180555.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 16px;
  flex: none;
  align-self: center;
  width: 100%;
  max-width: 700px;
  height: 275px;
}

.succes-story-main-image.noxy {
  background-image: linear-gradient(to top, #000, #0000 52%), url('../images/page_about_c12d0772-f6bc-49c2-b157-2b495f08ca51-1.jpg');
  background-position: 0 0, 50% 15%;
}

.succes-story-main-image.milchhalle {
  background-image: linear-gradient(to top, #000, #0000 52%), url('../images/image-11.png');
  background-position: 0 0, 50%;
}

.web-link-container {
  padding: 8px;
  transition: opacity .2s;
}

.web-link-container:hover {
  opacity: .5;
}

.max-width-700px {
  max-width: 700px;
  line-height: 28px;
}

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

.success-stori-mood-image {
  width: 160px;
  height: 200px;
  margin: 8px;
}

.price {
  font-size: 38px;
}

.price.blue {
  color: var(--blue);
}

.price.blue.no-margin.green {
  color: var(--green);
}

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

.font-weight-500.no-margin.price-detail {
  overflow-wrap: break-word;
  line-height: 14px;
}

.price-card {
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 351px;
  max-width: 352px;
  margin: 23px;
  padding: 35px;
  display: flex;
  box-shadow: 0 8px 20px 8px #00000017;
}

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

.image-10 {
  width: 20px;
  margin-right: 8px;
}

.div-block {
  padding-top: 24px;
}

.div-block._2 {
  padding-top: 12px;
  padding-bottom: 24px;
}

.pricing-cards-container {
  justify-content: center;
  display: flex;
}

.image-11 {
  margin-left: auto;
  margin-right: auto;
}

.success-message-2 {
  color: var(--green);
  background-color: #019e7826;
  border-radius: 10px;
}

.text-block {
  font-weight: 700;
}

.text-field, .text-field-2 {
  border-radius: 4px;
}

.submit-button {
  background-color: #4149d0;
  border-radius: 100px;
  width: 100%;
  height: 50px;
  font-weight: 600;
}

.textarea {
  border-radius: 4px;
}

.contact-form {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.input {
  border-radius: 6px;
  min-height: 45px;
  margin-bottom: 16px;
}

.input:active, .input:focus {
  border: 1.5px solid var(--blue);
}

.input.large {
  min-height: 75px;
}

.label {
  opacity: 1;
}

.image-12 {
  margin-bottom: 8px;
}

.testimonial-card-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-13 {
  flex: none;
  margin-top: 0;
  margin-right: 0;
}

.base-container-3 {
  max-width: 1300px;
  padding-left: 24px;
  padding-right: 24px;
}

.blog-cms-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-cms-item {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 24px;
  display: flex;
}

.blog-image-container {
  color: #fff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  align-items: flex-end;
  width: 100%;
  height: 300px;
  min-height: 300px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all .35s;
  display: flex;
  overflow: hidden;
}

.blog-image-container:hover {
  transform: translate(0, -3px);
}

.blog-headline-container {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #100f1a6b;
  border: 1px #000;
  border-top: 1px solid #ffffff29;
  align-items: flex-end;
  width: 100%;
  padding: 16px 24px 24px;
  display: block;
}

.display-flex-3 {
  display: flex;
}

.display-flex-3.align-center {
  align-items: center;
}

.opaque50 {
  opacity: .5;
}

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

.no-bottom-margin.blog-teaser-headline {
  margin-top: 8px;
}

.spacer16px {
  width: 16px;
  height: 16px;
}

.button-3 {
  opacity: 1;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 4px 24px;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.button-3:hover {
  opacity: .75;
}

.button-3.blog {
  background-color: #1f78ff4a;
}

.button-3.blog:hover {
  opacity: 1;
  color: #fff;
  background-color: #1f78ff;
}

.button-3.copy-link {
  padding-left: 0;
  padding-right: 0;
}

.blue-text-button-2 {
  color: #4149d0;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.blue-text-button-2:hover {
  opacity: .7;
}

.base-container-4 {
  max-width: 1300px;
  padding-left: 24px;
  padding-right: 24px;
}

.base-container-4.blog-detail {
  max-width: 800px;
}

.blog-rte {
  opacity: .8;
  border-radius: 0;
  margin-bottom: 24px;
  line-height: 32px;
}

.dot-seperator {
  background-color: #959292;
  border-radius: 100px;
  width: 3px;
  height: 3px;
  margin-left: 8px;
  margin-right: 8px;
}

.blog-list {
  margin-bottom: 24px;
  display: flex;
}

.display-flex-4 {
  display: flex;
}

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

.display-flex-4.align-center {
  align-items: center;
}

.share-this {
  width: 10%;
  margin-top: 16px;
}

.blog-article-tag {
  color: #ffffff96;
  text-transform: uppercase;
  background-color: #ffffff1a;
  border-radius: 8px;
  margin-right: 8px;
  padding: 4px 8px;
  font-size: 12px;
}

.spacer5px {
  width: 5px;
  height: 5px;
}

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

.blog-detail-image-container {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .hide-on-mobile {
    display: none;
  }

  .hide-on-desktop {
    display: block;
  }

  .navbar {
    padding-right: 0;
  }

  .display-flex.customer-stories-container {
    flex-direction: row;
  }

  .navbar-subcontainer {
    z-index: 99;
    flex-direction: row;
    height: auto;
    position: relative;
    overflow: visible;
  }

  .nav-link {
    color: #fff;
  }

  .nav-link.w--current {
    color: var(--white);
    border-bottom-style: none;
    border-left: 4px solid #6e76ff;
  }

  .head-section {
    background-image: url('../images/mobile-image.png'), url('../images/mobile-image2.png');
    background-position: 100% 20%, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-size: 109px, 129px;
  }

  .base-section.how-it-works, .base-section.final-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .text-align-center.hero-headline {
    font-size: 44px;
    line-height: 50px;
  }

  .hero.text-align-center {
    font-size: 16px;
    line-height: 24px;
  }

  .spacer25px {
    height: 25px;
  }

  .parallax-container {
    display: none;
  }

  .benefits-background, .benefits-background.testimonial {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .benefit-container.testimonial {
    min-width: 300px;
  }

  .image-3 {
    display: none;
  }

  .image-4 {
    width: 24px;
    display: block;
  }

  .nav-menu {
    z-index: 98;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background-color: #142766db;
    border: 1px solid #a5b4e636;
    border-radius: 0 0 16px 16px;
    margin-top: 0;
    padding-top: 0;
  }

  .menu-button {
    background-color: #b6bbce00;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 0;
  }

  .menu-button.w--open {
    background-color: #142766db;
    border-top-right-radius: 16px;
  }

  .image-6 {
    display: block;
  }

  .pricing-cards-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .base-container-3, .base-container-4 {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar {
    margin: 8px;
  }

  .display-flex.testimonial-subcontainer {
    padding-left: 0;
    padding-right: 0;
  }

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

  .display-flex.justify-space-around.customer-story-images {
    justify-content: center;
  }

  .display-flex.customer-stories-container {
    flex-direction: column;
    align-items: stretch;
  }

  .base-section.navbar-offset.pricing-headsection, .base-section.pricing-main {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .base-container.benefits.success-story {
    align-items: center;
    margin-left: 24px;
    margin-right: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .benefits-background.testimonial.detail {
    align-self: stretch;
  }

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

  .hiw-container.reverse {
    flex-direction: column-reverse;
  }

  .hiw-subcontainer.left.greviews {
    align-items: flex-start;
  }

  .email-form {
    height: 50px;
  }

  .button-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-2.nested {
    font-size: 12px;
  }

  .input---nested {
    min-width: 150px;
  }

  .base-section-2.no-gradient.contact {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .image-5 {
    margin-top: 48px;
  }

  .success-teaser-tile {
    align-self: stretch;
    max-width: none;
  }

  .success-stori-mood-image {
    width: 84px;
    height: 107px;
    margin-top: 8px;
  }

  .price-card {
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }

  .testimonial-card-container {
    position: relative;
  }

  .image-13 {
    z-index: -1;
    width: 100px;
    margin-top: -31px;
    position: absolute;
    inset: 0% auto auto -17%;
  }

  .blog-cms-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .button {
    flex: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .button.secondary, .hide-on-desktop.navbar-favicon {
    display: none;
  }

  .navbar {
    margin: 8px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .display-flex.button-navbar-container {
    flex: 1;
    justify-content: space-between;
  }

  .display-flex.testimonial-subcontainer {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .display-flex.justify-space-around.customer-story-images {
    justify-content: flex-start;
  }

  .head-section {
    background-image: url('../images/mobile-image.png'), url('../images/mobile-image2.png');
    background-position: 100% 100%, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-size: 75px, 100px;
  }

  .base-section.benefits {
    margin-top: -15px;
    padding: 0;
  }

  .base-section.benefits.testimonials {
    padding-left: 0;
    padding-right: 0;
  }

  .base-section.final-section {
    background-image: url('../images/improve-score-hero.png'), url('../images/bottom-score.png');
    background-position: 0 0, 100% 90%;
    background-repeat: no-repeat, no-repeat;
    background-size: 158px, 145px;
    margin-top: -15px;
  }

  .base-section.navbar-offset {
    padding-top: 85px;
  }

  .base-section.navbar-offset.pricing-headsection {
    padding-bottom: 48px;
  }

  .base-section.pricing-main {
    padding-top: 50px;
  }

  .base-container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .base-container.hero {
    max-width: 100%;
  }

  .base-container.benefits, .base-container.benefits.success-story {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-align-center.hero-headline {
    margin-top: 0;
    font-size: 36px;
    line-height: 40px;
  }

  .max-width-600px.display-flex.flex-direction-vertical {
    padding-top: 48px;
  }

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

  .benefits-background.testimonial.detail {
    padding-bottom: 48px;
  }

  .benefit-container.testimonial {
    flex: none;
    min-width: 0;
  }

  .benefit-container.testimonial.detail {
    margin-left: 0;
    margin-right: 0;
  }

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

  .hiw-subcontainer.right.text {
    padding-left: 0;
  }

  .hiw-subcontainer.left.greviews {
    align-items: center;
    display: block;
  }

  .button-2 {
    flex: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-2.nested, .input---nested {
    font-size: 12px;
  }

  .opaque-50.no-margin.text-align-center.copyright {
    margin-bottom: 24px;
  }

  .image-2 {
    width: 100%;
    margin-left: 0;
  }

  .spacer-48px {
    height: 48px;
  }

  .display-flex-2.align-center.justify-space-between.allow-wrap {
    flex-wrap: wrap;
  }

  .display-flex-2.align-center.justify-space-between.allow-wrap.footer-subcontainer {
    flex-direction: column;
  }

  .image-4 {
    margin-right: 16px;
  }

  .success-teaser-image.noxy {
    height: 200px;
  }

  .success-teaser-tile {
    margin-bottom: 48px;
    padding: 0;
  }

  .image-8 {
    margin-top: 39px;
  }

  .image-9 {
    margin-top: 16px;
  }

  .benefits-headline {
    margin-bottom: 24px;
  }

  .price-card {
    flex: 0 auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }

  .div-block {
    padding-top: 0;
    padding-bottom: 17px;
  }

  .heading-2 {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 38px;
  }

  .testimonial-card-container {
    margin-top: 48px;
  }

  .image-13 {
    vertical-align: baseline;
    margin-top: -27px;
    margin-right: 0;
    display: none;
    position: absolute;
    top: -9%;
    left: -5%;
  }

  .base-container-3 {
    max-width: 100%;
  }

  .blog-cms-item {
    align-items: center;
  }

  .blog-image-container {
    padding-top: 100px;
  }

  .opaque50.no-margin, .no-bottom-margin.blog-teaser-headline {
    text-align: center;
  }

  .base-container-4 {
    max-width: 100%;
  }
}


