@font-face {
  font-family: Mazzardh;
  src: url('../fonts/MazzardH-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-blue: #26224f;
  --green: #14d273;
  --light-grey: #fafafa;
  --40px: 40px;
}

.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: #333;
  flex-flow: column;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.header {
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.header.locked {
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
}

.header.white {
  background-color: #fff;
}

.landing {
  background-image: radial-gradient(circle at 100% 100%, #26224f1f, #fff);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  border-bottom: 1px solid #14d27342;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image {
  height: 65%;
}

.menuwrapper {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.menu {
  color: var(--dark-blue);
  background-color: #0000;
  border-radius: 10px;
  padding: 15px 20px;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: all .2s;
}

.menu:hover {
  color: #4be29a;
}

.menu.w--current {
  color: #14d273;
}

.menu.login {
  color: #fff;
  background-color: #14d273;
  border-radius: 5px;
  margin-left: 10px;
  font-family: proxima-nova-wide, sans-serif;
  transition: all .2s;
}

.menu.login:hover {
  background-color: #26224f;
}

.container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.heading {
  color: #26224f;
  margin-top: 0;
  margin-bottom: 0;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 50px;
}

.heading.h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 40px;
}

.heading.h2.dark {
  color: #26224f;
}

.heading.h4 {
  font-size: 20px;
  line-height: 20px;
}

.heading.h4.green {
  color: #14d273;
  margin-bottom: 50px;
  font-size: 25px;
}

.heading.h4.green.last {
  margin-bottom: 20px;
}

.heading.h4.green.offset {
  margin-bottom: 25px;
  font-size: 25px;
}

.heading.h5 {
  color: #26224f;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 15px;
}

.heading.h5.dark {
  color: #26224f;
  font-weight: 700;
}

.text-span {
  color: #14d273;
}

.section {
  z-index: 2;
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.paragraph {
  color: #6d6d6d;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.paragraph.half, .paragraph.half.last {
  margin-bottom: 0;
}

.paragraph.three-quarter {
  width: 75%;
}

.paragraph.contrast {
  color: #ddd;
}

.container-2 {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-2.left {
  text-align: left;
  flex-flow: row;
  justify-content: space-between;
}

.div-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 80%;
  display: grid;
}

.div-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  outline-offset: 0px;
  text-align: left;
  cursor: default;
  border-radius: 20px;
  outline: 3px solid #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  transition: all .2s;
  display: flex;
}

.div-block-2:hover {
  outline-color: var(--green);
  outline-offset: 0px;
  outline-width: 3px;
  outline-style: solid;
}

.button {
  color: #26224f;
  background-color: #0000;
  border: 3px solid #26224f;
  border-radius: 10px;
  padding: 15px 30px;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: all .2s;
}

.button:hover {
  border-color: var(--green);
  color: var(--green);
}

.button.solid {
  color: #fff;
  background-color: #14d273;
  border-color: #14d273;
}

.button.solid:hover {
  border-color: var(--dark-blue);
  background-color: var(--dark-blue);
}

.image-2 {
  object-fit: none;
  width: 100%;
  height: 100%;
}

.div-block-3 {
  width: 100%;
  height: 50px;
  margin-top: -50px;
}

.code-embed {
  color: #fdfdfd;
  width: 100%;
  height: 50px;
  margin-top: -50px;
}

.div-block-4 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100px;
  margin-top: -100px;
  display: flex;
  overflow: hidden;
}

.div-block-5 {
  background-color: #fdfdfd;
  width: 150%;
  margin-top: 15px;
  transform: rotate(-1deg);
}

.divtransition {
  z-index: 9;
  color: #26224f;
  width: 100vw;
  margin-top: -100px;
  position: relative;
}

.divtransition.blue {
  z-index: 9;
  color: #fcfcfc;
  position: relative;
}

.divtransition.grey {
  color: #ebebeb;
  width: 100vw;
}

.divtransition.white {
  color: #fff;
  width: 100vw;
}

.div-block-6 {
  background-color: #ebebeb;
  padding-bottom: 100px;
}

.image-3 {
  width: 400px;
  margin-bottom: 20px;
}

.div-block-7 {
  z-index: 9;
  aspect-ratio: 16 / 9;
  background-color: #d4d4d4;
  background-image: url('../images/Strata-of-a-Commission-Clean-01.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: -175px;
  margin-bottom: 100px;
  display: flex;
  position: relative;
}

.code-embed-2 {
  color: #fff;
  width: 200px;
  height: auto;
}

.div-block-8 {
  background-color: #f5f5f5;
  background-image: url('../images/Stratum-Layers-01.png');
  background-position: 0 0;
  background-size: auto;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 5px;
  display: flex;
}

.div-block-9 {
  flex: 1;
}

.code-embed-3 {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  display: flex;
}

.div-block-10 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.horizontal-block {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-block.right {
  text-align: right;
  order: 1;
  justify-content: flex-start;
  align-items: flex-end;
}

.div-block-13 {
  background-color: #fff;
  border-radius: 20px;
  width: 400px;
  height: 200px;
}

.landingscreenshot {
  aspect-ratio: 16 / 9;
  filter: drop-shadow(0 2px 20px #0000004a);
  outline-offset: -3px;
  background-image: url('../images/Employee_Dashboard-03.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  outline: 5px solid #e7e4e4;
  min-width: 50vw;
  margin-bottom: 0;
  margin-right: 0;
  position: absolute;
  inset: auto -7% 0% auto;
  overflow: hidden;
}

.div-block-14 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.stratum-wrapper {
  justify-content: space-between;
  display: flex;
}

.div-block-16 {
  flex-flow: column;
  width: 33.333%;
  height: calc(100% - 35px);
  display: flex;
}

.div-block-16.bottom {
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
  display: flex;
}

.div-block-16.right {
  flex-flow: column;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: flex-start;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.div-block-16.left {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-end;
  margin-top: -34px;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-16.left.top {
  margin-top: 0;
}

.stratum {
  color: #cecece;
}

.stratum.top, .stratum.bottom {
  width: 50%;
}

.stratum.middle {
  margin-top: -35px;
}

.text-block {
  color: #00d16d;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 30px;
  line-height: 30px;
}

.paragraph-2 {
  color: #5a5a5a;
  text-align: right;
  font-family: Lato, sans-serif;
}

.section-2 {
  background-color: #ebebeb;
  justify-content: space-between;
  height: 100vh;
  display: flex;
}

.div-block-17 {
  justify-content: flex-end;
  align-items: flex-end;
  width: 50vw;
  display: flex;
  position: relative;
}

.div-block-18 {
  flex: 1;
}

.div-block-19 {
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-20 {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  display: flex;
}

.text-block-2 {
  color: #fff;
  text-transform: uppercase;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

.section-3 {
  background-color: #ebebeb;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  position: relative;
}

.image-4 {
  width: 100%;
  height: 100%;
}

.code-embed-5 {
  width: 100%;
  height: 100vh;
}

.code-embed-6 {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.image-5 {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  height: 100vh;
}

.image-6 {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: auto 0% 0%;
}

.image-7, .image-8 {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.image-9 {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  height: 100vh;
  position: absolute;
}

.image-10 {
  object-fit: cover;
  object-position: 100% 0%;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.flex-block {
  justify-content: flex-start;
  align-items: center;
}

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

.div-block-22 {
  border-radius: 0 100% 100% 0;
  width: 50%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-11 {
  width: 100%;
  height: 100%;
}

.image-12, .image-13 {
  position: absolute;
  inset: 0%;
}

.image-14 {
  position: absolute;
}

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

.image-16 {
  position: absolute;
}

.code-embed-7 {
  color: #00d16d;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.section-4 {
  background-image: linear-gradient(#f7f7f7e3, #f7f7f7e3), url('../images/Salesman_Phone.jpg');
  background-position: 0 0, 100% 65%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  height: 50vh;
}

.section-4.contactpage {
  background-image: linear-gradient(#f7f7f7e3, #f7f7f7e3), url('../images/Salesman_Background_1.jpg');
  background-position: 0 0, 100% 35%;
}

.section-4.demo {
  background-image: linear-gradient(#f7f7f7e3, #f7f7f7e3), url('../images/Strata_Phone_App.jpg');
  background-position: 0 0, 100%;
}

.section-5 {
  background-color: #fff;
  flex-flow: column;
  padding-top: 50px;
  padding-bottom: 50px;
  display: block;
}

.container-3 {
  height: 100%;
}

.div-block-23 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.text-block-3 {
  color: #00d16d;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 22px;
}

.container-4 {
  margin-bottom: 50px;
}

.div-block-24 {
  z-index: 99;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.div-block-25 {
  filter: grayscale();
  background-color: #fafafa;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  transition: filter .2s;
  display: flex;
}

.div-block-25:hover {
  filter: grayscale(0%);
}

.div-block-25.active:hover {
  border-color: var(--green);
}

.image-17 {
  mix-blend-mode: darken;
  object-fit: contain;
  max-width: 80%;
  height: 20%;
}

.text-block-4 {
  color: #26224f;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 16px;
}

.div-block-26 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.image-18 {
  width: 60%;
}

.commissioncycle {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
  position: relative;
}

.div-block-28 {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-29 {
  height: 50%;
  display: flex;
}

.div-block-30 {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-30.top {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
}

.div-block-30.bottom {
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  width: 60%;
}

.div-block-30.left {
  text-align: right;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
}

.div-block-30.right {
  text-align: left;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
}

.text-block-5 {
  color: #26224f;
  font-family: proxima-nova-wide, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.code-embed-8 {
  width: 50%;
}

.container-5 {
  flex-flow: column;
  margin-bottom: 30px;
  display: flex;
}

.slider {
  background-color: #0000;
  flex: 1;
}

.section-6 {
  z-index: 99;
  background-color: #fcfcfd;
  border-bottom: 1px solid #f5f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-6 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-7 {
  z-index: 99;
  padding-top: 50px;
  padding-bottom: 100px;
}

.section-8 {
  border-top: 3px solid var(--green);
  background-color: #26224f;
  padding-top: 50px;
  padding-bottom: 20px;
}

.container-7 {
  z-index: 99;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.div-block-31 {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 40%;
  display: flex;
}

.div-block-31.right {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
}

.div-block-32 {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  padding-top: 10px;
  padding-bottom: 0;
  display: none;
}

.image-19 {
  max-width: 80%;
  margin-top: -20%;
}

.div-block-33 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-end;
  display: flex;
}

.div-block-34 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 30px;
  display: flex;
}

.div-block-35 {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.code-embed-9 {
  width: 150px;
  margin-bottom: 10px;
}

.text-block-6 {
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.text-block-7 {
  color: #b8b8b8;
  font-family: Lato, sans-serif;
  text-decoration: none;
}

.text-block-7:hover {
  color: #fff;
}

.div-block-36 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-2 {
  background-color: #0000;
  border: 3px solid #fff;
  border-radius: 5px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  transition: all .2s;
}

.button-2:hover {
  color: #26224f;
  background-color: #00d16d;
  border-color: #00d16d;
}

.text-block-8 {
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 13px;
  line-height: 19px;
}

.text-block-8.title {
  color: #00d16d;
  font-weight: 700;
}

.footer {
  order: 1;
}

.text-block-9 {
  color: #b8b8b8;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 12px;
}

.dropdown {
  width: 100%;
}

.dropdown-toggle {
  background-color: #a8a8a80d;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.dropdown-toggle.w--open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-list {
  background-color: #f1f1f1;
}

.dropdown-list.w--open {
  background-color: #f5f5f5;
  border-radius: 0 0 10px 10px;
  padding: 20px;
  position: relative;
}

.paragraph-3 {
  font-family: Lato, sans-serif;
}

.div-block-37 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.heading-2 {
  margin-top: 0;
}

.heading-3 {
  color: #26224f;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
}

.heading-3.combo {
  margin-bottom: 5px;
}

.container-8 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  display: flex;
}

.div-block-38 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  max-width: 500px;
  margin-bottom: 0;
  display: flex;
}

.div-block-39 {
  justify-content: flex-end;
  display: flex;
}

.div-block-40 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.section-9 {
  background-color: #fcfcfc;
  height: 50vh;
  padding-top: 50px;
  padding-bottom: 100px;
}

.div-block-41 {
  background-image: url('../images/CowPie_Transparent.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.layer1, .layer2, .layer3, .layer4, .layer5 {
  width: 85%;
  position: absolute;
  inset: auto 5% auto auto;
}

.div-block-42 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-20 {
  width: 40%;
}

.section-10 {
  border-bottom: 1px solid #14d27342;
  height: 30vh;
}

.container-9 {
  flex-flow: column;
  justify-content: center;
  height: 100%;
  padding-top: 75px;
  display: flex;
}

.heading-4 {
  color: #27214e;
  font-size: 55px;
  line-height: 50px;
}

.div-block-43 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 15px;
  display: flex;
}

.div-block-44 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #4b4b4b;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 30px;
  display: flex;
}

.div-block-44:hover {
  border-color: var(--green);
}

.div-block-44.dark {
  background-color: var(--dark-blue);
  color: #fff;
}

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

.text-block-11 {
  color: var(--green);
}

.text-block-12 {
  font-family: proxima-nova-wide, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.text-block-13 {
  color: var(--light-grey);
  font-size: 25px;
  line-height: 25px;
}

.signupbutton {
  color: #14d273;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  min-width: 0%;
  font-family: proxima-nova-wide, sans-serif;
  font-weight: 700;
}

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

.signupbutton.null {
  opacity: .5;
  cursor: not-allowed;
}

.signupbutton.null:hover {
  background-color: var(--green);
}

.signupbutton.contrast {
  color: #fff;
  background-color: #14d273;
  min-width: 0%;
}

.signupbutton.contrast:hover {
  background-color: var(--light-grey);
  color: var(--dark-blue);
}

.text-span-2 {
  color: var(--green);
  font-size: 65px;
}

.section-11 {
  background-color: #fcfcfd;
  padding-top: 50px;
  padding-bottom: 100px;
}

.paragraph-4 {
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.container-10 {
  flex-flow: column;
  display: flex;
}

.div-block-45 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--light-grey);
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  flex-flow: column;
  padding: 30px;
  display: flex;
}

.text-span-3 {
  font-size: 20px;
}

.input {
  border: 1px solid #f0f0f0;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 50px;
  padding: 10px 5px 10px 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.input:focus-visible, .input[data-wf-focus-visible] {
  outline-offset: 0px;
  border-top-color: #f0f0f0;
  outline: 3px #333;
}

.input.closed {
  border-style: solid;
  border-radius: 5px;
}

.input.closed:focus {
  border-color: #14d27342;
}

.input.closed:focus-visible, .input.closed[data-wf-focus-visible] {
  border-color: #cf1515;
}

.dropdown-list-2 {
  position: relative;
}

.dropdown-list-2.w--open {
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
}

.dropdown-toggle-2 {
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
}

.icon {
  margin-right: 0;
}

.dropdown-link {
  font-family: Lato, sans-serif;
}

.body {
  font-weight: 700;
}

.div-block-46 {
  color: #333;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.div-block-47 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-top-style: none;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  padding: 10px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  display: none;
  position: absolute;
}

.providerselect {
  cursor: pointer;
  width: 100%;
}

.providerselect:hover {
  opacity: .5;
  color: var(--green);
}

.providerselect.null {
  opacity: .1;
  order: 1;
}

.providerselect.null:hover {
  color: #333;
}

.div-block-48 {
  z-index: 50;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

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

.div-block-49 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-50 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #0000;
  border: 1px solid #14d27342;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 30px 50px;
  display: flex;
}

.div-block-51 {
  width: 100%;
}

.range {
  width: 100%;
  min-height: 20px;
  margin-bottom: 25px;
  padding-bottom: 0;
  padding-right: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.div {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.text-block-15 {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-16 {
  flex: 1;
}

.text-block-17 {
  flex: 1;
  display: flex;
}

.option, .option-2 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.option3 {
  text-align: center;
  flex: 1;
}

.text-block-18 {
  color: var(--green);
}

.div-block-52 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.div-block-53 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #14d273;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
  min-height: 120px;
  padding: 20px 15px 30px 30px;
  display: flex;
}

.div-block-53.dark {
  background-color: var(--dark-blue);
  color: #fff;
}

.div-block-54 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.text-block-19 {
  color: var(--green);
  font-size: 30px;
  line-height: 30px;
}

.text-block-19.contrast {
  color: #fff;
  font-size: 50px;
  line-height: 40px;
}

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

.text-block-21 {
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.uservalue {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.customvalue {
  max-width: 50%;
  display: none;
}

.div-block-55 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.button-3 {
  background-color: var(--dark-blue);
  border-radius: 10px;
  font-size: 12px;
}

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

.loader {
  z-index: 2147483647;
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.lottie-animation {
  width: 300px;
}

.text-span-4, .text-span-5 {
  font-weight: 900;
}

.text-span-6 {
  font-weight: 700;
  text-decoration: underline;
}

.div-block-56 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  margin-bottom: 50px;
  display: flex;
}

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

.heading-5 {
  color: var(--green);
  text-align: center;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  line-height: 26px;
}

.div-block-58 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 50px 5vw 50px 10vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-2 {
  color: #c7c7c7;
  text-decoration: none;
}

.link-2:hover {
  color: #00e060;
}

.text-field {
  color: #444;
  text-align: center;
  border: 1px solid #ececec;
  border-radius: 5px;
  width: 300px;
  max-width: 100%;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
}

.text-field:focus-visible, .text-field[data-wf-focus-visible] {
  border-color: #00e060;
}

.lottie-animation-3 {
  z-index: 1;
  opacity: .05;
  height: 75vw;
  margin-right: -25vw;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.div-block-59 {
  background-color: #f7f7f7;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.submit-button {
  background-color: var(--dark-blue);
  border-radius: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: background-color .2s;
}

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

.heading-6 {
  z-index: 2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 5vw;
  font-weight: 700;
  line-height: 4.5vw;
  position: relative;
}

.section-12 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.text-block-22 {
  color: #c7c7c7;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 12px;
}

.paragraph-5 {
  z-index: 2;
  color: #dfdfdf;
  font-family: Lato, sans-serif;
  position: relative;
}

.section-13 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
}

.div-block-60 {
  background-color: #14d2730d;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.div-block-61 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.heading-7 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.text-block-23 {
  color: var(--green);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.div-block-62 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.text-block-24 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}

.text-block-25 {
  color: var(--green);
  font-weight: 700;
  line-height: 14px;
}

.paragraph-6 {
  color: #5c5c5c;
  margin-bottom: 20px;
  font-size: 12px;
}

.div-block-63 {
  background-color: #f5f5f5;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.submit-button-2 {
  background-color: #14d273;
  border-radius: 5px;
  width: 100%;
  font-weight: 700;
}

.submit-button-2:hover {
  background-color: var(--dark-blue);
}

.div-block-64 {
  width: 75%;
  max-width: 600px;
}

.text-field-2 {
  color: #303030;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
}

.text-field-2:focus {
  border-color: var(--green);
}

.form-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  max-width: 400px;
  display: flex;
}

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

.field-label-2 {
  color: #5a5a5a;
  line-height: 14px;
}

.div-block-65 {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}

.heading-8 {
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 60px;
}

.text-block-26 {
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
  line-height: 25px;
}

.section-9-copy {
  background-color: #14d2730d;
  border-bottom: 1px solid #20d3794a;
  height: 300px;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
}

.section-9-copy.long {
  height: auto;
  padding-top: 150px;
}

.section-14 {
  background-color: #fff;
  border-top: 1px solid #ebebeb;
  padding-top: 50px;
  padding-bottom: 50px;
}

.div-block-66 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-67 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 45%;
  min-height: 550px;
  padding: 30px 20px;
  display: flex;
}

.heading-9 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 30px;
}

.image-21 {
  width: 75px;
}

.div-block-68 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.text-block-27 {
  color: var(--green);
  font-weight: 700;
  line-height: 16px;
}

.paragraph-7 {
  color: #6d6d6d;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
}

.div-block-69 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  max-height: 320px;
  display: flex;
}

.div-block-70 {
  width: 46%;
  max-height: 200px;
}

.div-block-71 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.text-block-28 {
  color: #fd4b4b;
  text-align: center;
  font-weight: 700;
}

.text-block-29 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

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

.code-embed-10 {
  text-align: center;
}

.div-block-73 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #3dd871;
  flex-flow: column;
  display: flex;
}

.text-block-30 {
  text-align: center;
  font-weight: 700;
  position: absolute;
  inset: auto 0% 5vh;
}

.div-block-74 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.code-embed-11 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 75px;
  margin-bottom: 10px;
  display: flex;
}

.container-11 {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-75 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-76 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.heading-10 {
  color: #26224f;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 45px;
}

.heading-11 {
  color: #14d273;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 30px;
}

.paragraph-8 {
  color: #757575;
  width: 50%;
}

.div-block-77 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.body-2 {
  justify-content: center;
  align-items: center;
}

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

.heading-13 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-9 {
  color: #fff;
  width: 75%;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.form-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  flex-flow: column;
  padding: 30px;
  display: flex;
}

.submit-button-3 {
  background-color: #20d379;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
}

.text-field-3 {
  border-radius: 5px;
}

.field-label-3 {
  color: #27204e;
}

.div-block-78 {
  width: 75%;
}

.div-block-79 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.text-field-3-copy {
  border-radius: 5px;
  width: 100px;
}

.paragraph-6-copy {
  color: #5c5c5c;
  width: 75%;
  margin-bottom: 20px;
  font-size: 12px;
}

.div-block-81 {
  flex: 1;
  display: flex;
}

.image-22 {
  object-fit: contain;
  object-position: 50% 100%;
  width: 50%;
}

.div-block-82 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 500px;
  display: flex;
}

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.brand {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.container-copy {
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.container-12 {
  display: flex;
}

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

.div-block-83 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 50px;
  padding-right: 0;
  display: flex;
}

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

.container-13 {
  display: flex;
}

.div-block-84 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section-16 {
  background-color: #a8a8a80d;
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-copy-copy {
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.div-block-62-copy {
  width: 50%;
}

.container-14 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 25px;
  display: flex;
}

.div-block-85 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-86 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.heading-14 {
  color: var(--green);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 20px;
}

.paragraph-6-copy {
  color: #5c5c5c;
  margin-bottom: 20px;
  font-size: 12px;
}

.code-embed-12 {
  width: 45px;
  margin-bottom: 10px;
}

.div-block-87 {
  flex-flow: column;
  display: flex;
}

.heading-15 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 30px;
}

.code-embed-13 {
  width: 100%;
}

.code-embed-14 {
  font-size: 14px;
  font-weight: 700;
}

.div-block-88 {
  flex-flow: column;
  display: flex;
}

.div-block-89 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.div-block-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.container-15 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-83-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 150%;
  padding-left: 50px;
  padding-right: 0;
  display: flex;
}

.div-block-64-copy {
  width: 50%;
  margin-right: 50px;
}

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

.paragraph-6-copy-copy {
  color: #5c5c5c;
  margin-bottom: 20px;
  font-size: 12px;
}

.textarea {
  border-radius: 5px;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.select-field {
  background-color: #fff;
  border-radius: 5px;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.div-block-90, .div-block-91 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.link-3 {
  color: var(--dark-blue);
  font-size: 16px;
}

.div-block-92 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-31 {
  color: #818181;
  font-family: Lato, sans-serif;
}

.image-23 {
  height: 50px;
}

.div-block-53-copy {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #14d273;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
  min-height: 120px;
  padding: 20px 15px 30px 30px;
  display: flex;
}

.div-block-53-copy.dark {
  background-color: var(--dark-blue);
  color: #fff;
}

.div-block-93 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-94 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 3px solid var(--green);
  color: var(--green);
  background-color: #0000;
  border-radius: 10px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.div-block-94.dark {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
  background-color: #0000;
}

.heading-16 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 25px;
}

.paragraph-10 {
  color: #7a7a7a;
  margin-bottom: 0;
}

.div-block-95 {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.text-block-32 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.text-block-33 {
  font-size: 16px;
  line-height: 25px;
}

.section-17 {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 50px;
}

.container-16 {
  height: 100%;
}

.heading-17 {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-11 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.div-block-96 {
  opacity: 0;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-image: linear-gradient(#ffffffd4, #ffffffd4);
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-96:hover {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 100;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-block-34 {
  color: var(--green);
  text-align: center;
  font-weight: 700;
}

.container-18 {
  margin-top: 50px;
}

.div-block-97 {
  width: 75%;
}

.heading-18 {
  margin-top: 0;
}

.heading-7-copy {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.div-block-98 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-98.threequarter {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 75%;
}

.heading-19 {
  color: var(--green);
  margin-top: 0;
  font-size: 20px;
  line-height: 25px;
}

.heading-19.combo, .paragraph-12 {
  margin-bottom: 0;
}

.paragraph-copy {
  color: #999;
  width: 50%;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.paragraph-copy.half, .paragraph-copy.half.last {
  margin-bottom: 0;
}

.div-block-99 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.heading-20 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.paragraph-copy {
  color: #6d6d6d;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.paragraph-copy.half, .paragraph-copy.half.last {
  margin-bottom: 0;
}

.paragraph-copy.three-quarter {
  width: 75%;
}

.paragraph-copy.contrast {
  color: #ddd;
}

.paragraph-copy-copy {
  color: #6d6d6d;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.paragraph-copy-copy.half, .paragraph-copy-copy.half.last {
  margin-bottom: 0;
}

.paragraph-copy-copy.three-quarter {
  width: 75%;
}

.paragraph-copy-copy.contrast {
  color: #ddd;
}

.paragraph-copy-copy-copy {
  color: #6d6d6d;
  width: 100%;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.paragraph-copy-copy-copy.half, .paragraph-copy-copy-copy.half.last {
  margin-bottom: 0;
}

.paragraph-copy-copy-copy.three-quarter {
  width: 75%;
}

.paragraph-copy-copy-copy.contrast {
  color: #ddd;
}

.div-block-100 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.div-block-101, .div-block-102 {
  flex: 1;
}

.div-block-112 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  width: 100%;
  display: flex;
}

.div-block-113 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.form-4 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.legal-heading {
  margin-top: 0;
  margin-bottom: 20px;
}

.text-block-41 {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}

.section-18 {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 100px;
}

.input-2 {
  color: #000;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  height: 50px;
  margin-bottom: 0;
  padding: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.input-2.half {
  width: calc(50% - 2.5px);
}

.input-2.short {
  flex: 1;
}

.heading-21 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.button-9 {
  background-color: #085a6f;
  border-radius: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.button-9:hover {
  outline-offset: -3px;
  color: #085a6f;
  background-color: #0000;
  outline: 3px solid #085a6f;
}

.legal-text-block {
  margin-bottom: 50px;
  font-family: Lato, sans-serif;
}

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

.success-message {
  border: 1px solid var(--green);
  background-color: #f3fdf8;
  border-radius: 10px;
}

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

  .landing {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    height: auto;
    min-height: 100vh;
  }

  .menuwrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .menu {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    min-height: 400px;
  }

  .heading.h4.green.offset {
    line-height: 25px;
  }

  .div-block-25 {
    width: 120px;
  }

  .image-17 {
    height: 18%;
  }

  .div-block-34 {
    grid-template-columns: 1.5fr;
    place-items: center;
  }

  .div-block-38 {
    width: 100%;
  }

  .div-block-41 {
    width: 65%;
  }

  .div-block-43 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .div-block-53 {
    width: 100%;
  }

  .div-block-56 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .div-block-67 {
    width: 100%;
    min-height: 0;
  }

  .div-block-69, .div-block-77 {
    flex-flow: column;
  }

  .form-3 {
    max-width: 500px;
  }

  .div-block-81 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .image-22 {
    width: 100%;
  }

  .nav-menu {
    background-color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding: 30px;
  }

  .navbar {
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .menu-button {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .menu-button.w--open {
    color: #000;
    background-color: #20d37930;
  }

  .icon-2 {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    font-size: 30px;
    display: flex;
  }

  .container-copy {
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    min-height: 0;
  }

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

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

  .div-block-83 {
    max-width: 600px;
  }

  .container-copy-copy {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .section-17 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    height: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading.h2.dark, .heading.h4.green.offset {
    text-align: center;
  }

  .paragraph.half, .paragraph.three-quarter {
    width: 100%;
  }

  .div-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 95%;
  }

  .button {
    text-align: center;
    flex: 1;
  }

  .section-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-25 {
    flex: 1;
    width: auto;
  }

  .div-block-25.hide {
    display: none;
  }

  .container-7 {
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-31 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-width: 200px;
    max-width: 500px;
  }

  .div-block-31.right {
    justify-content: flex-start;
    align-items: center;
    width: 75%;
  }

  .div-block-33 {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
  }

  .div-block-34 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-35 {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-38 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    width: 100%;
  }

  .div-block-40 {
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-41 {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .div-block-42 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .image-20 {
    width: 60%;
  }

  .container-9 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-43 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .section-11 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-53 {
    flex-flow: column;
  }

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

  .div-block-55 {
    width: 100%;
  }

  .div-block-56 {
    flex-flow: column;
  }

  .div-block-58 {
    width: 100%;
  }

  .div-block-59 {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .heading-6 {
    font-size: 40px;
    line-height: 40px;
  }

  .section-12 {
    flex-flow: column;
    min-height: 0;
    padding-top: 100px;
  }

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

  .section-9-copy {
    padding-bottom: 20px;
  }

  .div-block-67 {
    justify-content: flex-start;
    align-items: flex-start;
    width: 85%;
  }

  .div-block-69 {
    max-height: none;
  }

  .div-block-70 {
    width: 100%;
  }

  .heading-10 {
    font-size: 40px;
    line-height: 35px;
  }

  .div-block-77 {
    justify-content: center;
    align-items: center;
  }

  .div-block-81 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .div-block-82 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: left;
    flex-flow: column;
    display: flex;
  }

  .navbar {
    justify-content: flex-start;
    align-items: center;
    padding-right: 20px;
  }

  .brand {
    padding-left: 20px;
  }

  .menu-button {
    flex: 1;
    width: 100%;
  }

  .menu-button.w--open {
    color: #20d379;
    background-color: #0000;
    flex: 1;
  }

  .icon-2 {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .container-copy {
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 30px;
    padding-right: 20px;
  }

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

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

  .div-block-83 {
    text-align: left;
    padding-left: 0;
  }

  .section-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-16 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container-copy-copy {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 0;
    padding-left: 30px;
    padding-right: 20px;
  }

  .div-block-62-copy {
    text-align: center;
    width: 100%;
  }

  .div-block-86 {
    flex-flow: column;
  }

  .div-block-87 {
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }

  .div-block-89 {
    width: 100%;
  }

  .div-block-copy {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 95%;
  }

  .div-block-64-copy {
    width: 100%;
  }

  .div-block-53-copy, .div-block-93 {
    flex-flow: column;
  }

  .div-block-94 {
    width: 100%;
  }

  .div-block-97 {
    text-align: center;
    width: 100%;
  }

  .paragraph-copy, .paragraph-copy.half, .paragraph-copy.half, .paragraph-copy-copy.half, .paragraph-copy-copy-copy.half {
    width: 100%;
  }

  .div-block-100 {
    flex-flow: column;
  }

  .div-block-103 {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .landing {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: 0;
    display: flex;
  }

  .menuwrapper {
    flex-flow: column;
  }

  .container {
    flex: 0 auto;
    justify-content: center;
    align-items: flex-end;
    height: 475px;
  }

  .heading.h2.dark {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    font-size: 30px;
    line-height: 32px;
    display: flex;
  }

  .heading.h4.green {
    width: 95%;
    font-size: 22px;
    line-height: 28px;
  }

  .section {
    padding-bottom: 25px;
  }

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

  .div-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }

  .button {
    width: 100%;
  }

  .div-block-25 {
    flex: 0 auto;
    width: 100%;
    height: 100px;
  }

  .image-17 {
    height: 35%;
  }

  .container-5 {
    padding-left: 11px;
    padding-right: 11px;
  }

  .section-6 {
    padding-top: 25px;
  }

  .div-block-31 {
    text-align: center;
  }

  .div-block-31.right {
    width: 85%;
  }

  .div-block-33 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .dropdown-toggle {
    white-space: normal;
    padding-right: 60px;
  }

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

  .container-8 {
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-38 {
    flex-flow: wrap;
    width: 100%;
  }

  .div-block-40 {
    flex-flow: column;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-41 {
    background-position: 100% 100%;
    background-size: contain;
    flex: 1;
    order: 1;
    position: relative;
  }

  .div-block-42 {
    flex-flow: column;
  }

  .image-20 {
    width: 75%;
  }

  .heading-4 {
    font-size: 30px;
    line-height: 30px;
  }

  .section-11 {
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-50 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-56 {
    margin-bottom: 15px;
  }

  .div-block-57 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-59 {
    padding-bottom: 50px;
  }

  .section-9-copy {
    justify-content: space-between;
    align-items: flex-end;
    height: 300px;
    padding-bottom: 0;
  }

  .div-block-69 {
    flex-flow: column;
  }

  .div-block-70, .paragraph-9, .div-block-78 {
    width: 100%;
  }

  .div-block-80 {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
  }

  .div-block-82 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-menu {
    flex-flow: column;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .container-copy {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
  }

  .div-block-83 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .section-15 {
    padding-bottom: 25px;
  }

  .container-copy-copy {
    flex: 0 auto;
    justify-content: center;
    align-items: flex-end;
    height: auto;
  }

  .div-block-85 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .div-block-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }

  .div-block-92 {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-93 {
    margin-bottom: 30px;
  }

  .section-17 {
    min-height: 0;
  }

  .container-17 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-7-copy {
    text-align: center;
  }

  .paragraph-copy.left {
    text-align: left;
    text-align: left;
  }

  .paragraph-copy-copy.left, .paragraph-copy-copy-copy.left {
    text-align: left;
  }

  .div-block-112 {
    flex-flow: column;
  }

  .container-19 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .input-2.half {
    width: 100%;
  }
}

#w-node-_71e40c37-a7be-1d1a-db14-01892eeb1e90-e89229cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Mazzardh';
  src: url('../fonts/MazzardH-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}