body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

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

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(239, 239, 239, 0);
  padding-top: 10px;
  position: fixed;
  top: 0;
}

.nav-link {
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
}

.nav-link.w--current {
  color: #333;
  border-top: 1px #267a46;
  border-bottom: 1px solid #267a46;
  border-left: 1px #267a46;
  border-right: 0 #267a46;
}

.nav-link.button {
  color: #fff;
  border: 1px solid #267a46;
  border-radius: 50px;
  font-weight: 500;
}

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

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

.flex.top {
  grid-column-gap: 24px;
  align-items: flex-start;
}

.flex.top._24 {
  justify-content: center;
  align-items: stretch;
}

.flex.vertical {
  grid-row-gap: 60px;
  flex-direction: column;
  align-items: flex-start;
}

.flex.vertical._8 {
  grid-row-gap: 8px;
  grid-row-gap: 8px;
}

.flex.vertical._8.card {
  background-color: #fff;
  border-radius: 20px;
  justify-content: flex-start;
  padding: 16px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .15);
}

.flex.vertical._8.card.outline {
  box-shadow: none;
  border: 1px solid #c7c7c7;
  flex: none;
}

.flex.vertical._8.card.dark {
  background-color: rgba(255, 255, 255, .1);
}

.flex.vertical._8.card-outline {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
}

.flex.vertical._0 {
  grid-row-gap: 0px;
}

.flex.vertical._24 {
  grid-row-gap: 24px;
}

.flex._16 {
  grid-column-gap: 16px;
  justify-content: flex-start;
}

.flex._16.horizontal.vertical {
  flex-direction: row;
}

.flex.slim {
  justify-content: flex-end;
}

.flex.slim._16 {
  grid-column-gap: 16px;
  justify-content: flex-start;
}

.flex.horizontal {
  padding-top: 0;
}

.flex.horizontal.navbar {
  width: 100%;
}

.section {
  margin-bottom: -40px;
  padding-top: 60px;
  padding-bottom: 100px;
}

.section.bg-green {
  background-color: #e0ebea;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.section.hero {
  border-radius: 0;
  padding-top: 120px;
}

.section.white {
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.section.cream {
  background-color: #f9f9f9;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.section.yellow {
  background-color: #fec;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.section.dark {
  background-color: #333;
}

.column {
  max-width: 100%;
  flex: 1;
  align-self: stretch;
}

.column.flex.vertical._24 {
  grid-row-gap: 24px;
}

.column.flex.vertical._24.slim.top {
  justify-content: flex-start;
}

.column.flex.vertical._16 {
  grid-row-gap: 16px;
}

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

.column.sticky {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 25%;
}

.heading {
  margin-top: 0;
}

.heading._1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}

.heading._3 {
  font-size: 26px;
  font-weight: 600;
}

.heading._3.light {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}

.heading._2 {
  font-weight: 600;
}

.heading._2.light {
  color: #fff;
}

.paragraph {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

.paragraph.light {
  color: #fff;
}

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

.paragraph.no-margin.bold {
  font-weight: 600;
}

.button {
  cursor: pointer;
  background-color: #006323;
  border: 1px solid #267a46;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  color: #267a46;
  background-color: rgba(0, 0, 0, 0);
}

.button.link {
  color: #006323;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #267a46;
  text-decoration: underline;
}

.button.link:hover {
  opacity: .6;
}

.button.outline {
  color: #267a46;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #267a46;
}

.button.outline:hover, .button.outline.w--current:hover {
  color: #fff;
  background-color: #267a46;
}

.button.mt {
  margin-top: 20px;
}

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

.number-circle {
  width: 36px;
  height: 36px;
  background-color: #333;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.number-circle.yellow {
  background-color: #ffbd33;
}

.number-circle.yellow.minus-margin {
  margin-bottom: -16px;
  position: relative;
}

.number {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
}

.number.dark {
  color: #333;
}

.title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.title.light {
  color: #fff;
}

.check-circle {
  width: 36px;
  height: 36px;
  color: #006323;
}

.check-circle.light {
  color: #96e0b2;
}

.icon {
  width: 36px;
  height: 36px;
}

.seperator {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, .1);
}

.footer-link {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.footer-link:hover {
  opacity: .6;
}

.brand {
  height: auto;
}

.footer-copyright {
  opacity: .6;
}

.image {
  border-radius: 20px;
}

.body-3 {
  background-color: #f9f9f9;
}

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

.list-item {
  margin-bottom: 5px;
}

.bold {
  font-weight: 600;
}

.brand-logo {
  height: 80px;
}

.footer-brand {
  height: 60px;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.icon-image {
  width: 100px;
}

@media screen and (max-width: 991px) {
  .nav-link {
    margin-bottom: 10px;
  }

  .nav-link.w--current {
    color: #267a46;
    border-bottom-style: none;
  }

  .flex._16.horizontal.vertical {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .nav-menu {
    background-color: #fff;
    padding-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  }

  .menu-button.w--open {
    color: #267a46;
    background-color: rgba(0, 0, 0, 0);
  }
}

@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }

  .flex.top._24 {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .flex.top._24.reverse {
    flex-direction: column-reverse;
  }

  .flex.vertical._8.card {
    width: 100%;
  }

  .flex._16.horizontal, .flex._16.horizontal.vertical {
    flex-direction: row;
  }

  .flex.slim._16 {
    grid-row-gap: 16px;
    align-items: flex-start;
  }

  .flex._24 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .flex.horizontal {
    flex-direction: row;
  }

  .flex.horizontal.navbar, .section.bg-green, .section.hero, .section.white, .section.cream, .section.yellow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .column {
    width: 100%;
    align-self: center;
  }

  .column.sticky {
    position: static;
  }

  .column.left {
    align-self: flex-start;
  }

  .brand-2 {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .flex.top {
    flex-direction: column;
  }

  .flex.top._24 {
    grid-row-gap: 24px;
  }

  .flex._16 {
    grid-row-gap: 16px;
  }

  .flex._16.horizontal.vertical {
    flex-direction: column;
  }

  .flex.slim._16 {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .heading._1 {
    font-size: 32px;
    line-height: 48px;
  }

  .heading._3, .heading._2 {
    font-size: 24px;
    line-height: 32px;
  }

  .button, .button.outline {
    width: 100%;
    text-align: center;
  }

  .brand-logo {
    height: 50px;
  }
}


