:root {
  --white: white;
  --black: black;
  --elements-webflow-library--neutral--300: #eff0f6;
  --elements-webflow-library--secondary--color-1: #281ca5;
  --elements-webflow-library--neutral--800: #211f54;
  --elements-webflow-library--general--shadow-02: rgba(20, 20, 43, .08);
  --elements-webflow-library--neutral--100: white;
  --elements-webflow-library--accent--primary-1: #4a3aff;
  --elements-webflow-library--neutral--600: #6e7191;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.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;
  }
}

.container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  position: fixed;
}

.nav-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  display: flex;
  position: static;
  overflow: visible;
}

.nav-link {
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  padding: 0 0 2px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  transition: border-color .3s;
}

.nav-link:hover {
  -webkit-text-stroke-width: 0px;
  border: 0 solid #000;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  text-decoration: none;
}

.nav-link-2, .nav-link-3 {
  color: #fff;
  padding: 0;
}

.body {
  background-color: #000;
}

.flex-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  position: static;
}

.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;
}

.brand {
  width: 150px;
  padding-bottom: 10px;
  position: static;
}

.section {
  background-color: #484848;
  justify-content: center;
  align-items: center;
  height: 400vh;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.section-2 {
  justify-content: center;
  align-items: stretch;
  padding: 200px 16px;
  display: flex;
}

.container-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: rgba(0, 0, 0, 0);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  display: flex;
}

.div-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  pointer-events: auto;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 30px 50px;
  transition: border-color .3s;
  display: flex;
  position: relative;
}

.div-block-2:hover {
  border-color: #00a69c;
}

.text-block {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.text-block-2 {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.button {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 12px;
  max-width: 180px;
  padding: 16px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: padding .3s, color .3s, border-color .3s;
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button:hover {
  color: #00a69c !important;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0);
  border-color: #000;
  padding-left: 20px;
  padding-right: 20px;
}

.button.button-white {
  border: 1px solid #fff;
  border-radius: 12px;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
}

.button.button-white:hover {
  border-color: #00a69c;
}

.button.button-primary {
  color: #00a69c;
  border: 1px solid #00a69c;
  border-radius: 12px;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
}

.button.button-primary:hover {
  color: #fff;
  border-color: #fff;
}

.div-block-3 {
  justify-content: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -10%;
  left: 0%;
  right: 0%;
}

.div-block-4 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  display: flex;
}

.background-video {
  height: 700px;
}

.background-video.video {
  height: 650px;
}

.search {
  flex-flow: column;
  display: flex;
}

.container-3 {
  background-image: url('https://krowne.com/movewell-adaptive-stations/images/hero.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.image {
  width: 550px;
  max-width: none;
  position: static;
}

.image-2 {
  padding-bottom: 0;
}

.container-4 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-block-3 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: auto;
  max-width: none;
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  display: none;
  position: absolute;
}

.image-3, .image-4 {
  width: auto;
  max-width: none;
  height: 26px;
}

.image-5 {
  max-width: none;
  height: 26px;
}

.container-5 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: absolute;
}

.container-6 {
  z-index: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100vh;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: absolute;
}

.container-7 {
  background-color: #000;
  width: 100%;
  max-width: none;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: absolute;
}

.section-3 {
  background-color: #000;
  height: 500vh;
  padding-top: 0;
  display: none;
  position: relative;
}

.lottie-animation {
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 80px;
}

.container-8 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.image-6 {
  display: none;
}

.section-4 {
  padding-top: 100px;
  display: block;
  position: relative;
}

.image-7 {
  width: 500px;
  display: none;
  position: static;
  top: auto;
  bottom: 200px;
}

.div-block-5 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.div-block-6 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-4 {
  color: #fff;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  font-size: 30px;
  line-height: 30px;
}

.text-block-4.text-blue {
  color: #00a79d;
}

.div-block-7 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-9 {
  background-color: rgba(0, 0, 0, 0);
  max-width: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.container-10 {
  max-width: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-span, .text-span-2 {
  color: #00a69c;
  text-transform: uppercase;
}

.image-8, .image-9 {
  width: 100%;
  max-width: none;
  max-height: 40px;
  position: absolute;
}

@media screen and (min-width: 1280px) {
  .background-video, .background-video.video {
    height: 750px;
  }

  .container-8 {
    height: 100vh;
  }

  .image-7 {
    bottom: 200px;
  }
}

@media screen and (min-width: 1440px) {
  .background-video {
    height: 850px;
  }

  .background-video.video {
    height: 820px;
  }

  .image {
    width: 600px;
  }

  .image-7 {
    width: 550px;
  }

  .text-block-4 {
    font-size: 36px;
    line-height: 36px;
  }

  .image-8, .image-9 {
    max-height: 50px;
  }
}

@media screen and (min-width: 1920px) {
  .section-2 {
    padding: 200px 16px;
  }

  .background-video {
    height: 1000px;
  }

  .background-video.video {
    height: 1100px;
  }

  .image {
    width: 650px;
  }

  .text-block-3 {
    font-size: 56px;
  }

  .image-7 {
    width: 600px;
    bottom: 200px;
  }

  .text-block-4 {
    font-size: 42px;
    line-height: 42px;
  }

  .image-8, .image-9 {
    max-height: 60px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    display: block;
  }

  .navbar {
    background-color: #0f0f0f;
  }

  .nav-menu {
    background-color: #0f0f0f;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
  }

  .flex-block {
    flex-flow: column;
    align-items: center;
    padding-top: 20px;
  }

  .brand {
    width: 120px;
    padding-top: 10px;
    padding-bottom: 0;
    position: static;
  }

  .icon {
    color: #fff;
  }

  .section-2 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .div-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .background-video {
    height: 600px;
  }

  .background-video.video {
    height: 500px;
  }

  .menu-button, .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .image {
    width: 450px;
  }

  .image-2 {
    padding-bottom: 0;
  }

  .text-block-3 {
    width: auto;
    font-size: 40px;
    line-height: 40px;
  }

  .image-3, .image-4, .image-5 {
    height: 26px;
  }

  .image-7 {
    width: 400px;
  }

  .text-block-4 {
    font-size: 26px;
    line-height: 26px;
  }

  .div-block-7 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .image-8, .image-9 {
    max-height: 34px;
  }
}

@media screen and (max-width: 767px) {
  .nav-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
  }

  .flex-block {
    flex-flow: column;
  }

  .section-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .div-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .div-block-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: stretch;
    margin-top: 80px;
  }

  .background-video, .background-video.video {
    height: 400px;
  }

  .image {
    width: 400px;
  }

  .text-block-3 {
    width: auto;
    font-size: 30px;
    line-height: 30px;
  }

  .container-7 {
    display: block;
  }

  .section-3 {
    display: none;
  }

  .section-4 {
    display: block;
  }

  .image-7 {
    width: 320px;
    bottom: 220px;
  }

  .text-block-4 {
    font-size: 20px;
    line-height: 20px;
  }

  .image-8, .image-9 {
    max-height: 22px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    width: 100%;
  }

  .background-video {
    height: 300px;
  }

  .background-video.video {
    height: 250px;
  }

  .image {
    width: 280px;
  }

  .text-block-3 {
    width: auto;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  .image-7 {
    width: 250px;
    bottom: 250px;
  }

  .div-block-6 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .text-block-4 {
    font-size: 14px;
    line-height: 14px;
  }

  .div-block-7 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .image-8, .image-9 {
    max-height: 14px;
  }
}


