:root {
  --light-gray: #f8f8f8;
  --black: #0d0d0d;
  --dark-blue: #1bb3b0;
  --darker-blue: #179996;
  --white: white;
  --light-blue: #24ede9;
}

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

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

@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 {
  background-color: var(--light-gray);
  color: var(--black);
  padding-top: 80px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 135%;
}

.top-logo, .top-logo.w--current {
  height: 20px;
}

.logo-image {
  float: none;
  height: 100%;
  display: block;
}

.nav-link {
  padding: 5px 10px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: all .2s;
}

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

.nav-link.w--current {
  color: var(--darker-blue);
}

.navbar {
  z-index: 102;
  background-color: var(--white);
  transition: top .35s;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 8px #0000001a;
}

.navbar.hidden {
  top: -90px;
}

.navbar-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  display: flex;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer {
  background-color: var(--dark-blue);
}

.footer-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 40px 20px;
  display: flex;
}

.footer-logo-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.footer-logo {
  height: 20px;
}

.copyrights {
  color: var(--white);
  font-size: 12px;
  line-height: 135%;
}

.semibold {
  font-weight: 600;
}

.footer-nav-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-nav-menu-column {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.footer-nav-link {
  color: var(--white);
  margin-right: auto;
  font-family: Roboto Condensed, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-nav-link:hover {
  opacity: .85;
}

.footer-socials {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: flex-start;
  display: flex;
}

.social-link-icon {
  width: 30px;
  transition: all .2s;
  display: block;
}

.social-link-icon:hover {
  opacity: .85;
  transform: scale(1.1);
}

.social-icon-image {
  width: 100%;
}

.go-up-arrow {
  z-index: 101;
  color: var(--dark-blue);
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 0 20px #0003;
}

.button {
  z-index: 1;
  color: var(--white);
  text-align: center;
  background-color: #0000;
  padding: 17px 32px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  transition: all .2s;
  position: relative;
}

.button.secondary {
  color: var(--dark-blue);
}

.button.secondary:hover {
  color: var(--darker-blue);
}

.button.secondary.large {
  color: var(--black);
  font-family: Roboto, sans-serif;
  font-size: 22px;
  line-height: 115%;
}

.button.contact {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: url('../images/contact-button-icon.svg');
  background-position: 17px;
  background-repeat: no-repeat;
  background-size: auto;
  font-style: normal;
  text-decoration: none;
  display: flex;
  left: auto;
  right: auto;
}

.button.small {
  border-radius: 7px;
  padding: 10px 21px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.button.small.outline {
  color: var(--dark-blue);
  white-space: nowrap;
  background-color: #0000;
  padding: 10px 19px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.button.submit {
  margin-left: auto;
}

.button.submit-wrapper {
  margin-left: auto;
  padding: 0;
}

.nav-links {
  margin-right: 20px;
}

.components-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.section.hero {
  display: flex;
  position: relative;
}

.section.hero.hero-home {
  background-image: url('../images/hero-home-image_1hero-home-image.avif');
  background-position: 50%;
  background-size: cover;
}

.section.hero.hero-how-it-works {
  background-image: url('../images/hero-how-it-works-image_1hero-how-it-works-image.avif');
  background-position: 50%;
  background-size: cover;
}

.section.hero.hero-subsidies {
  background-image: url('../images/hero-subsidies-image_1hero-subsidies-image.avif');
  background-position: 50%;
  background-size: cover;
}

.section.hero.hero-packages {
  background-image: url('../images/hero-packages-image_1hero-packages-image.avif');
  background-position: 50%;
  background-size: cover;
}

.section.hero.hero-support {
  background-image: url('../images/hero-support-image_1hero-support-image.avif');
  background-position: 50%;
  background-size: cover;
}

.section.hero.hero-stories {
  background-image: url('../images/hero-stories-image_1hero-stories-image.avif');
  background-position: 50%;
  background-size: cover;
}

.section.hero.hero-contact {
  background-color: var(--dark-blue);
}

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

.section.features-section {
  position: relative;
}

.section.with-image {
  z-index: 1;
  position: relative;
}

.section.blue-background {
  background-color: var(--dark-blue);
  color: var(--white);
  position: relative;
}

.container {
  max-width: 1240px;
  padding: 120px 20px;
}

.container.contact-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
}

.container.hero-container {
  color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 60px;
  display: flex;
  position: relative;
}

.container.hero-container.white-background {
  color: var(--black);
}

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

.container.features-container {
  position: relative;
}

.container.blue-section-container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container.contact-container-low {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.container.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.container.with-image {
  position: relative;
}

.contact-section-heading {
  text-align: center;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  line-height: 125%;
}

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

.hero-overlay.left-top {
  opacity: .65;
  background-image: linear-gradient(115deg, #000, #0000);
  position: absolute;
  inset: 0%;
}

.hero-overlay.right-top {
  opacity: .65;
  background-image: linear-gradient(245deg, #000, #0000);
  position: absolute;
  inset: 0%;
}

.hero-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Condensed, sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 100%;
}

.hero-heading.primary {
  color: var(--dark-blue);
}

.hero-heading.light-blue {
  color: var(--light-blue);
}

.hero-heading.dark-blue {
  color: var(--dark-blue);
}

.hero-paragraph {
  max-width: 500px;
  margin-bottom: 0;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 135%;
}

.hero-paragraph.wide {
  max-width: 600px;
}

.hero-texts {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  display: flex;
}

.hero-texts.right {
  text-align: right;
  justify-content: center;
  align-self: flex-end;
  align-items: flex-end;
}

.hero-texts.right.half {
  width: 50%;
}

.hero-texts.centred {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

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

.hero-button-wrapper.right {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.hero-scroll-down-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.hero-scroll-down-wrapper.left-top {
  inset: 0 auto auto 0;
  transform: rotate(180deg);
}

.hero-scroll-down-shape {
  width: 90px;
  height: 465px;
}

.hero-scroll-down {
  border: 2px solid var(--dark-blue);
  border-radius: 15px;
  width: 15px;
  height: 30px;
  padding-top: 4px;
  padding-left: 4px;
  padding-right: 4px;
  position: absolute;
  inset: auto 20px 20px auto;
}

.hero-scroll-down-line {
  background-color: var(--black);
  border-radius: 2px;
  width: 3px;
  height: 10px;
}

.medium {
  font-weight: 500;
}

.heading-1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Condensed, sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 100%;
}

.heading-1.primary {
  color: var(--dark-blue);
}

.heading-1.light-blue {
  color: var(--light-blue);
}

.heading-1.dark-blue {
  color: var(--dark-blue);
}

.heading-1.dark-blue.text-center.table-heading {
  line-height: 135%;
}

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

.heading-1.semibold {
  font-weight: 600;
}

.heading-1.table-heading {
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 10px;
}

.features-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.features-list.no-margin {
  margin-top: 0;
}

.feature-list-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  display: flex;
}

.feature-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.feature-icon-wrapper:hover {
  color: var(--white);
  transform: scale(1.1);
}

.paragraph {
  margin-bottom: 0;
}

.paragraph.small {
  font-size: 14px;
  line-height: 135%;
}

.paragraph.large {
  font-size: 22px;
  line-height: 135%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  transition: all .2s;
  position: relative;
}

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

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

.features-dynamic-photo {
  z-index: 1;
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 35%);
}

.features-bionic-photo {
  z-index: 1;
  height: 500px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(10%, 20%);
}

.patient-stories {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}

.patient-story-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px #0000001a;
}

.image {
  aspect-ratio: 1;
  width: 100%;
}

.patient-story-card-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
  display: flex;
}

.patient-story-card-text {
  flex: 1;
  line-height: 115%;
}

.go-up-arrow-icon {
  width: 100%;
  height: 100%;
  transition: all .2s;
}

.overflow-hidden {
  overflow: hidden;
}

.text-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 640px;
  display: flex;
}

.text-wrapper.right {
  margin-left: auto;
  padding-right: 100px;
}

.text-wrapper.right.text-right {
  text-align: right;
  justify-content: flex-start;
  align-items: flex-end;
}

.text-wrapper.full-width {
  max-width: 100%;
  padding-left: 90px;
  padding-right: 90px;
}

.heading-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 115%;
}

.heading-2.extrabold {
  font-weight: 800;
}

.heading-2-text-highlight {
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  background-image: url('../images/skewed-square.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 64px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 700;
  line-height: 64px;
  display: inline-block;
  position: relative;
}

.section-how-it-works-image {
  z-index: 1;
  height: 600px;
  position: absolute;
  inset: 50% auto auto 700px;
  transform: translate(0, -50%);
}

.how-it-works-heading-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  display: flex;
}

.how-it-works-steps {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-flow: column;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.how-it-works-step {
  justify-content: center;
  align-items: center;
  display: flex;
}

.how-it-works-step-number {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  text-align: center;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  display: flex;
  transform: translate(0, -15px);
}

.how-it-works-step-line {
  border-bottom: 1px dashed #a6a6a6;
  width: 120px;
}

.how-it-works-step-info {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-left: 1px dashed #a6a6a6;
  flex-flow: column;
  flex: 1;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  display: flex;
}

.how-it-works-step-info-paragraphs {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.how-it-works-step-number-value {
  color: var(--white);
  background-image: url('../images/skewed-square.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 89px;
  height: 80px;
  font-size: 64px;
  font-style: italic;
  font-weight: 800;
  display: flex;
}

.how-it-works-step-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.text-wrapper-text-group {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.blue-section-image {
  z-index: 1;
  height: 120%;
  position: absolute;
  top: 50%;
  right: 640px;
  transform: translate(0, -50%);
}

.contact-button-icon {
  width: auto;
  height: 20px;
}

.text-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 30px;
  display: flex;
}

.text-list.no-margin {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

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

.italic {
  font-style: italic;
}

.packages-table {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-flow: column;
  margin-top: 60px;
  display: flex;
}

.packages-table-row-cards {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.packages-table-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 15px;
  display: flex;
  box-shadow: 0 2px #0000001a;
}

.package-table-heading {
  color: var(--dark-blue);
  font-family: Roboto Condensed, sans-serif;
  font-size: 24px;
  line-height: 135%;
}

.package-table-heading.small {
  margin-bottom: 5px;
  font-size: 18px;
}

.package-table-heading-semibold {
  font-size: 36px;
  font-weight: 600;
}

.packages-table-row-heading {
  margin-top: 15px;
}

.packages-table-group {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.notification {
  z-index: 0;
  text-align: center;
  padding: 60px;
  font-size: 14px;
  position: relative;
}

.service-support-image {
  height: 540px;
  position: absolute;
  top: 50%;
  bottom: 0%;
  left: 700px;
  transform: translate(0, -50%);
}

.packages-table-wrapper {
  margin-top: 60px;
}

.show-on-mobile {
  display: none;
}

.product-photo {
  position: absolute;
  bottom: 80px;
  right: 0;
}

.product-photo.dynamic {
  height: 386px;
}

.product-photo.active {
  height: 652px;
}

.product-photo.bionic {
  height: 867px;
}

.product-photo.lej {
  height: 758px;
  bottom: 0;
  right: 120px;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 115%;
}

.subsidies-photo {
  height: 100%;
  position: absolute;
  bottom: 80px;
  left: 700px;
}

.blue-section-wrapper {
  padding-top: 80px;
  overflow: hidden;
}

.blue-section-white-box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 10px;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.blue-section-white-box-row {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.number-value {
  color: var(--white);
  background-image: url('../images/skewed-square.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 50px;
  font-size: 34px;
  font-style: italic;
  font-weight: 800;
  display: flex;
}

.text-groups-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.text-groups-wrapper.vertical {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.text-groups-wrapper-group {
  flex: 1;
}

.text-groups-wrapper-group.text-right {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.text-groups-wrapper-group.secondary {
  width: 740px;
  margin-top: 30px;
  margin-left: auto;
}

.text-group-row {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-group-rows {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.products-photo {
  height: 900px;
  position: absolute;
  bottom: -120px;
  left: -60px;
}

.text-box {
  border: 2px solid var(--dark-blue);
  border-radius: 10px;
  padding: 30px;
}

.text-box.text-center {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.normal-link {
  color: var(--black);
}

.text-highlight {
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  width: auto;
  height: 64px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 700;
  line-height: 64px;
  display: inline-block;
  position: relative;
}

.form-wrapper {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  display: flex;
}

.form-data-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.form-data {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.heading-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 135%;
}

.form {
  flex: 1;
}

.form-row {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.form-field {
  flex: 1;
}

.label {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
}

.form-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.input {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--dark-blue);
  color: var(--black);
  background-color: #0000;
  height: 40px;
  margin-bottom: 0;
  padding: 0;
  font-size: 18px;
  line-height: 135%;
  transition: all .2s;
}

.input:focus {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--darker-blue);
}

.input.textarea {
  height: 100px;
}

.checkbox-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 135%;
  position: relative;
}

.text-link {
  color: var(--black);
}

.checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-left: -23px;
}

.checkbox-field {
  margin-bottom: 0;
  padding-left: 25px;
}

.success-message {
  background-color: var(--dark-blue);
  color: var(--white);
  border-radius: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.success-message-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.error-message {
  color: #b31b32;
  text-align: center;
  background-color: #b31b3226;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 20px;
}

.text-wrapper-inside {
  z-index: 3;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.blue-section-image-2 {
  z-index: 1;
  height: 120%;
  position: absolute;
  top: 50%;
  right: 700px;
  transform: translate(0, -50%);
}

.blue-section-image-3 {
  z-index: 2;
  transform-style: preserve-3d;
  height: 80%;
  position: absolute;
  top: 50%;
  right: 360px;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.home-photo {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-section-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .top-logo {
    height: 30px;
  }

  .nav-link {
    font-size: 16px;
  }

  .footer-logo {
    height: 30px;
  }

  .footer-nav-link {
    font-size: 16px;
  }

  .button.secondary.large {
    font-size: 24px;
  }

  .section.white-background.features-section {
    position: relative;
  }

  .contact-section-heading {
    font-size: 40px;
  }

  .hero-heading {
    font-size: 64px;
  }

  .hero-paragraph {
    max-width: 600px;
    font-size: 28px;
  }

  .hero-texts {
    width: 960px;
  }

  .hero-texts.centred {
    width: auto;
  }

  .heading-1 {
    font-size: 64px;
  }

  .paragraph.large {
    font-size: 24px;
  }

  .features-dynamic-photo {
    height: 421px;
  }

  .features-bionic-photo {
    height: 794px;
    transform: translate(0%, 20%);
  }

  .patient-stories {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .heading-2 {
    font-size: 48px;
  }

  .section-how-it-works-image {
    height: 780px;
  }

  .heading-3 {
    font-size: 32px;
  }

  .heading-4 {
    font-size: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .navbar {
    flex-flow: column;
    justify-content: flex-start;
  }

  .navbar-container {
    flex-flow: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .hero-overlay.left-top {
    flex-flow: column;
    justify-content: center;
  }

  .text-wrapper.right {
    padding-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-style: solid none none;
    border-width: 1px;
    border-color: var(--dark-blue) black black;
    background-color: var(--white);
    justify-content: flex-start;
    align-items: center;
    margin-top: 1px;
    padding: 15px;
  }

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

  .footer-logo-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    order: 1;
    justify-content: space-between;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
    align-items: center;
  }

  .button.secondary.large {
    font-size: 20px;
  }

  .button.small {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-links {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 5px;
    margin-right: 0;
    display: flex;
  }

  .section.blue-background {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container.contact-container, .container.contact-container-low {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nav-menu-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .menu-button {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    background-color: var(--dark-blue);
    border-radius: 5px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 11px;
    transition: all .2s;
    transform: skew(-7deg);
  }

  .menu-button.w--open {
    background-color: var(--darker-blue);
  }

  .menu-icon {
    width: 30px;
    height: 30px;
  }

  .menu-icon-line {
    background-color: var(--white);
    border-radius: 1px;
    width: 18px;
    height: 2px;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line.first {
    margin-left: 1px;
  }

  .menu-icon-line.last {
    margin-left: -1px;
  }

  .hero-heading {
    font-size: 44px;
  }

  .hero-paragraph {
    font-size: 20px;
  }

  .hero-paragraph.wide {
    max-width: 500px;
  }

  .heading-1 {
    font-size: 44px;
  }

  .features-list {
    flex-flow: wrap;
  }

  .feature-list-item {
    flex: 0 auto;
    max-width: 220px;
  }

  .paragraph.large {
    font-size: 20px;
  }

  .features-dynamic-photo {
    height: 280px;
  }

  .features-bionic-photo {
    height: 440px;
    top: 0;
    bottom: auto;
    transform: translate(5%, -70%);
  }

  .patient-stories {
    grid-template-columns: 1fr 1fr;
  }

  .text-wrapper {
    max-width: 55%;
  }

  .text-wrapper.right {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding-right: 0;
  }

  .heading-2 {
    font-size: 36px;
  }

  .section-how-it-works-image {
    margin-left: auto;
    margin-right: 0;
    display: block;
    position: absolute;
    left: 60%;
    right: auto;
    transform: translate(0%, -50%);
  }

  .how-it-works-heading-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .how-it-works-step-line {
    width: 40px;
  }

  .blue-section-image {
    width: 65%;
    height: auto;
    margin: 30px auto -160px;
    display: block;
    position: static;
    left: 50%;
    transform: none;
  }

  .packages-table {
    font-size: 16px;
  }

  .package-table-heading {
    font-size: 20px;
  }

  .package-table-heading-semibold {
    font-size: 30px;
  }

  .service-support-image {
    width: 65%;
    height: auto;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
    transform: none;
  }

  .product-photo {
    left: 60%;
  }

  .product-photo.dynamic {
    height: 193px;
  }

  .product-photo.active {
    height: 326px;
  }

  .product-photo.bionic {
    height: 433px;
  }

  .product-photo.lej {
    height: 379px;
    left: 70%;
    right: 0;
  }

  .heading-3 {
    font-size: 24px;
  }

  .subsidies-photo {
    height: 80%;
    left: 60%;
  }

  .blue-section-wrapper {
    padding-top: 0;
  }

  .text-groups-wrapper-group.secondary {
    width: 100%;
  }

  .text-groups-wrapper-group.secondary.text-right {
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }

  .products-photo {
    height: 700px;
    margin-bottom: -80px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
    left: -50px;
  }

  .form-wrapper {
    flex-flow: column;
  }

  .form-data {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-4 {
    font-size: 20px;
  }

  .blue-section-image-2 {
    width: 65%;
    height: auto;
    margin: 30px auto -30%;
    display: block;
    position: static;
    left: 50%;
    transform: none;
  }

  .blue-section-image-3 {
    width: 65%;
    height: auto;
    margin: 0 auto -160px;
    display: block;
    position: static;
    right: 50%;
  }

  .home-photo {
    max-width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .body {
    font-size: 16px;
    line-height: 135%;
  }

  .footer-nav-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    flex-flow: column;
  }

  .footer-nav-link {
    margin-left: auto;
  }

  .button.secondary.large {
    font-size: 20px;
  }

  .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container.hero-container {
    padding: 40px 20px;
  }

  .contact-section-heading {
    font-size: 24px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-paragraph {
    font-size: 18px;
  }

  .hero-texts {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-texts.right {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .hero-scroll-down-shape {
    width: 60px;
    height: 310px;
  }

  .hero-scroll-down {
    bottom: 10px;
    right: 10px;
  }

  .heading-1 {
    font-size: 40px;
  }

  .features-list {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .feature-icon-wrapper {
    width: 80px;
    height: 80px;
  }

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

  .paragraph.large {
    font-size: 18px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features-dynamic-photo {
    height: 200px;
  }

  .features-bionic-photo {
    height: 380px;
    transform: translate(5%, -80%);
  }

  .patient-stories {
    grid-template-columns: 1fr 1fr;
  }

  .text-wrapper {
    max-width: 100%;
  }

  .text-wrapper.full-width {
    padding-left: 45px;
    padding-right: 45px;
  }

  .heading-2 {
    font-size: 32px;
  }

  .heading-2-text-highlight {
    width: 64px;
    height: 52px;
    font-size: 44px;
    line-height: 52px;
  }

  .section-how-it-works-image {
    z-index: 1;
    height: 440px;
    margin-top: 30px;
    margin-right: auto;
    position: static;
    transform: none;
  }

  .how-it-works-step {
    flex-flow: column;
  }

  .how-it-works-step-number {
    padding-bottom: 20px;
    padding-right: 0;
    transform: none;
  }

  .how-it-works-step-line {
    border: 1px #000;
    border-left: 1px dashed #a6a6a6;
    width: 0;
    height: 40px;
  }

  .how-it-works-step-info {
    border-top: 1px dashed #a6a6a6;
    border-left-style: none;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 15px 0;
  }

  .how-it-works-step-buttons {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .blue-section-image {
    width: 75%;
    margin-bottom: -120px;
  }

  .packages-table {
    font-size: 14px;
  }

  .packages-table-row-cards {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .package-table-heading {
    font-size: 18px;
  }

  .package-table-heading-semibold {
    font-size: 24px;
  }

  .service-support-image {
    width: 75%;
  }

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

  .show-on-mobile {
    display: block;
  }

  .product-photo {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

  .product-photo.lej {
    margin-bottom: -80px;
  }

  .subsidies-photo {
    width: 80%;
    height: auto;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

  .blue-section-white-box-row {
    text-align: center;
    flex-flow: column;
  }

  .text-groups-wrapper {
    flex-flow: column;
  }

  .text-groups-wrapper-group.text-right {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-groups-wrapper-group.secondary.text-right {
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;
  }

  .text-group-row {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .text-group-rows {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    align-items: flex-start;
  }

  .products-photo {
    height: 400px;
  }

  .text-box.text-center {
    padding: 20px;
  }

  .text-highlight {
    width: auto;
    height: 60px;
    font-size: 48px;
    line-height: 60px;
  }

  .form-data {
    text-align: center;
    display: flex;
  }

  .form-row {
    flex-flow: column;
  }

  .blue-section-image-2 {
    width: 75%;
  }

  .blue-section-image-3 {
    width: 75%;
    margin-bottom: -120px;
  }

  .home-photo {
    max-width: 85%;
  }
}

@media screen and (max-width: 479px) {
  .hero-texts.right.half {
    width: 100%;
  }

  .features-bionic-photo {
    transform: translate(16%, -85%);
  }

  .patient-stories {
    grid-template-columns: 1fr;
  }

  .text-wrapper.full-width {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-how-it-works-image {
    max-width: 100%;
    height: auto;
    transform: none;
  }

  .packages-table-wrapper {
    display: flex;
  }
}


