:root {
  --bold-green: #326867;
  --black-2: black;
  --white-smoke: #ececec;
  --black: black;
  --white: white;
  --red: #e22020;
  --gainsboro: #dfdfdf;
  --purple: #7f2b52;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  line-height: 130%;
}

h1 {
  color: var(--bold-green);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
}

h2 {
  color: var(--bold-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--bold-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.main-content {
  border-right: 10px none var(--bold-green);
  border-left: 3px none var(--black-2);
  background-color: var(--white-smoke);
  border-top-left-radius: 8px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.main-content.horizontal {
  border-right-style: solid;
  flex-direction: row;
}

.main-content.blog {
  align-items: center;
}

.sidebar {
  z-index: 999;
  border-right: 10px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: var(--bold-green);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 30vw;
  min-width: 350px;
  max-width: 400px;
  height: 100vh;
  min-height: 100px;
  display: flex;
  position: sticky;
  inset: 0% auto 0% 0%;
  overflow: scroll;
}

.content-area {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 100px 60px 80px;
  display: flex;
  position: relative;
}

.content-area.home {
  z-index: 100;
  align-items: center;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 0;
  padding-left: 60px;
  overflow: visible;
}

.content-area.business {
  padding-top: 0;
}

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

.search {
  z-index: 500;
  border-bottom: 2px solid var(--bold-green);
  width: 25vw;
  height: 60px;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.search-input {
  background-color: var(--white-smoke);
  height: 100%;
}

.search-button {
  color: var(--bold-green);
  background-color: #0000;
  height: 100%;
}

.search-button:hover {
  box-shadow: inset 0 -1px 14px 0 var(--bold-green);
}

.simple-list-card {
  color: var(--black);
  padding: 10px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.simple-list-card:hover {
  background-color: #ececec80;
}

.simple-list-card.w--current {
  border-right: 1px solid var(--bold-green);
  border-bottom-width: 1px;
  border-left: 10px solid #32686780;
  border-bottom-color: var(--bold-green);
  background-color: var(--white-smoke);
}

.simple-list-card.border-swap {
  border-left: 10px solid var(--bold-green);
  border-top-style: none;
  border-right-style: none;
  border-right-width: 1px;
}

.simple-list-card.border-swap:hover {
  box-shadow: none;
}

.simple-list-card.floating {
  background-image: linear-gradient(to right, var(--white), var(--white-smoke));
  border-right-style: none;
  border-top-right-radius: 8px;
}

.profile-pic {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #0000001a;
  border-radius: 100px;
  flex: none;
  width: 60px;
  height: 60px;
}

.profile-pic.logo {
  background-color: var(--white);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 40px;
  height: 60px;
}

.simple-list {
  border-style: solid;
  border-width: 1px 1px 5px;
  border-color: var(--bold-green);
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.simple-list.borders {
  border-bottom: 1px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  overflow: hidden;
}

.simple-list.borders.flat-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  flex: 1;
}

.simple-list.borders.flat-top._2 {
  border-left-style: none;
  border-bottom-left-radius: 0;
}

.simple-list.square {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.simple-list.flattop {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.simple-list-card-info {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.tabs-menu {
  z-index: 700;
  border-top: 1px none var(--bold-green);
  border-right: 1px solid var(--bold-green);
  background-color: var(--bold-green);
  justify-content: flex-end;
  width: 100%;
  height: 60px;
  padding-left: 10px;
  display: flex;
  position: sticky;
  top: 0;
}

.sidebar-tab-link {
  background-color: var(--bold-green);
  color: var(--white);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  padding: 5px 10px;
  font-size: 14px;
  display: flex;
  position: relative;
}

.sidebar-tab-link:hover {
  background-color: #fff3;
}

.sidebar-tab-link.w--current {
  border: 2px solid var(--white-smoke);
  background-color: var(--white);
  color: var(--bold-green);
  margin: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
}

.sidebar-tab-link.w--current:hover {
  box-shadow: none;
}

.sidebar-tab-link.right {
  margin-right: 0;
}

.tabs {
  width: 100%;
  margin-top: 30px;
}

.card-subtext {
  text-transform: lowercase;
}

.grid {
  grid-column-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: -1px 0 60px;
  position: sticky;
  top: 100px;
}

.grid.business {
  margin-top: 0;
}

.profile-bkg {
  background-image: linear-gradient(to right, var(--white) 15%, var(--white-smoke) 84%);
  border-radius: 8px;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.profile-bkg.member {
  border-top-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
  width: 60%;
}

.profile-header {
  border-left: 10px solid #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0% auto auto 0%;
}

.image {
  height: 60px;
  margin-right: 20px;
}

.div-block-2 {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.profile-cta {
  background-color: var(--bold-green);
  color: var(--white-smoke);
  border-radius: 8px;
  align-items: center;
  height: 60px;
  padding: 20px;
  font-size: 17px;
  text-decoration: none;
  display: flex;
}

.profile-cta:hover {
  box-shadow: 0 2px 14px #326867;
}

.profile-cta.wide {
  border-radius: 8px;
  flex: 1;
}

.cta-name {
  text-transform: uppercase;
  text-decoration: none;
}

.cta-name.dynamic {
  flex: none;
  margin-left: 5px;
  margin-right: 5px;
}

.cta-name.single {
  margin-left: -5px;
  margin-right: 5px;
}

.profile-footer {
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 8px;
  display: flex;
}

.profile-footer.members {
  border-top-right-radius: 8px;
  justify-content: flex-start;
  padding: 8px;
  overflow: hidden;
}

.profile-columns {
  background-image: linear-gradient(to right, var(--white) 32%, var(--white-smoke));
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.profile-columns.member {
  border-bottom-right-radius: 0;
}

.category-tag {
  color: var(--white-smoke);
  text-transform: lowercase;
  border-radius: 5px;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.category-tag.blog {
  background-color: var(--bold-green);
  align-self: flex-end;
  text-decoration: none;
  position: relative;
  top: -20px;
  right: -20px;
}

.featured-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-left: 10px solid #000;
  border-top-right-radius: 8px;
  width: 100%;
  height: 300px;
}

.featured-image.large {
  border-left-style: none;
  height: 200px;
}

.cta-logo {
  margin-right: 20px;
  position: static;
  inset: 0% 0% auto auto;
}

.bold-cta {
  z-index: 800;
  border-style: solid none none solid;
  border-width: 5px 3px 3px 1px;
  border-color: var(--bold-green);
  background-color: var(--white);
  border-top-left-radius: 8px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.bold-cta:hover {
  box-shadow: -1px -1px 14px 0 var(--bold-green);
}

.cta-btn {
  background-color: var(--bold-green);
  color: var(--white-smoke);
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.profile-description {
  background-image: linear-gradient(270deg, var(--white), var(--white-smoke));
  border-bottom-right-radius: 8px;
  flex: 0 80%;
  margin-bottom: 0;
  padding: 30px;
}

.profile-description.right {
  background-image: linear-gradient(277deg, var(--white), var(--white-smoke));
  border-left-style: none;
  border-right: 10px solid #000;
  border-radius: 0 8px 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  left: 10px;
}

.profile-description.member {
  border-top: 1px solid var(--white-smoke);
  border-bottom-color: var(--bold-green);
  background-image: linear-gradient(to right, var(--white), var(--white-smoke));
  border-top-left-radius: 0;
  border-bottom-left-radius: 8px;
}

.profile-description.member.top {
  border-bottom-color: #0000001a;
  border-bottom-left-radius: 0;
}

.icon {
  width: 36px;
  height: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.icon:hover {
  box-shadow: 0 1px 14px 0 var(--bold-green);
  border: 1px #000;
  border-radius: 25px;
}

.tag-wrao {
  flex: none;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.empty-state {
  background-color: var(--white);
  opacity: .5;
}

.home-block.right {
  z-index: 150;
  border-bottom: 1px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 85%;
  max-width: 800px;
  padding: 10px 30px 30px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.p {
  color: var(--black-2);
  text-align: left;
  margin-right: 5px;
  font-size: 18px;
  line-height: 120%;
}

.slider {
  border-right: 10px solid var(--bold-green);
  width: 100%;
  height: 100%;
}

.slide {
  background-image: url('../images/Bold-Slide-1.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-2 {
  background-image: url('../images/Bold-Slide-2.jpg');
  background-position: 0%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/Bold-Slide-3.jpg');
  background-position: 0%;
  background-size: cover;
}

.packages-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1.5fr 1fr;
  width: 100%;
  max-width: 1000px;
}

.pricing-block {
  border-bottom: 1px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: var(--white);
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 10px 30px 30px;
  display: flex;
  overflow: visible;
}

.price-block {
  border-style: solid;
  border-width: 1px 1px 1px 3px;
  border-color: var(--bold-green);
  cursor: pointer;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.price-block:hover {
  box-shadow: -1px 1px 14px 0 var(--bold-green);
}

.button {
  z-index: 50;
  background-color: var(--bold-green);
  background-image: linear-gradient(29deg, var(--bold-green), #2b8381);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 5px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: stretch;
  width: 200px;
  padding: 15px 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.button:hover {
  background-color: var(--black-2);
  background-image: linear-gradient(29deg, var(--black-2) 23%, var(--bold-green));
}

.button.home-cta {
  border-radius: 8px 8px 0 0;
  flex-direction: row;
  justify-content: flex-start;
  width: auto;
  height: 80px;
  min-height: 60px;
  position: absolute;
  inset: -80px auto auto -10px;
}

.button.full {
  width: 100%;
}

.button.big {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 20px;
}

.button.square {
  border-radius: 0;
}

.button.square.light {
  background-color: var(--bold-green);
  background-image: linear-gradient(29deg, #56395a, #1a4e4d);
}

.button.square.light:hover {
  background-color: var(--bold-green);
  background-image: linear-gradient(29deg, #0a3a3980, #7f2b52 30%);
}

.button.punchout {
  border-style: solid;
  border-width: 1px 1px 3px 10px;
  border-color: var(--white);
  background-image: linear-gradient(29deg, var(--black-2), #2b8381);
}

.button.punchout:hover {
  background-image: linear-gradient(29deg, var(--bold-green), var(--black-2));
  border-left-width: 3px;
}

.button.blog {
  background-image: linear-gradient(29deg, var(--black-2), #2b8381);
  width: 100%;
  margin-bottom: 30px;
}

.button.blog:hover {
  background-image: linear-gradient(29deg, var(--bold-green), #2b8381);
}

.button.hidden-form {
  position: absolute;
}

.price-block-header {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.price-headline {
  color: var(--bold-green);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}

.price {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 36px;
}

.link-trigger {
  color: var(--bold-green);
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.rich-text-block {
  margin-top: 10px;
  margin-bottom: 20px;
}

.dynamic-button-line {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.hiden-text {
  margin-top: 10px;
  font-size: 12px;
}

.hiden-text.top {
  margin-top: 0;
}

.sidebar-heading {
  height: 20px;
  margin-bottom: 5px;
  margin-left: 5px;
  font-size: 14px;
}

.sidebar-header {
  color: var(--bold-green);
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 600;
  display: flex;
}

.sidebar-header.skinny {
  border-top-style: none;
  padding-top: 0;
  padding-bottom: 5px;
}

.nav {
  z-index: 9999;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.brand {
  border-right: 1px solid var(--bold-green);
  border-bottom: 5px solid var(--bold-green);
  background-color: var(--white);
  border-bottom-right-radius: 8px;
  align-items: center;
  padding: 20px 10px 10px;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.brand.w--current {
  text-decoration: none;
}

.logo {
  height: 40px;
}

.logo.large {
  height: 80px;
  margin-right: 20px;
}

.nav-link {
  color: var(--bold-green);
  margin-left: 10px;
  margin-right: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--black-2);
  font-weight: 700;
}

.nav-link.large {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
}

.nav-link.logo-description {
  margin-right: 0;
  padding: 5px;
  display: none;
}

.video-block {
  background-color: var(--white-smoke);
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  position: relative;
}

.video {
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.sticky-video {
  width: 100%;
  position: relative;
}

.home-features {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  min-height: 60vh;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.features-grid {
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 60px;
}

.feature-card {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.feature-icon {
  width: 80px;
  margin-bottom: 30px;
}

.feature-icon.larger {
  width: 100px;
}

.paragraph.small {
  text-align: left;
  font-size: 15px;
}

.tabs-content {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 100%;
}

.body {
  border-left: 10px solid var(--bold-green);
  background-color: var(--white-smoke);
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.sidebar-trigger {
  z-index: 900;
  cursor: pointer;
  background-image: url('../images/np_sidebar-expand_632300_326867.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 36px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 5px;
  margin-right: 15px;
  display: flex;
  position: relative;
}

.logo-wrap {
  border-top: 5px solid var(--bold-green);
  border-right: 1px solid var(--bold-green);
  background-color: var(--white);
  border-top-right-radius: 5px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0 10px 6px;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.sidebar-footer {
  border-right: 10px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: #dfdfdf;
  width: 100%;
  min-height: 60vh;
}

.border {
  z-index: 99999;
  background-color: var(--bold-green);
  height: 10px;
  position: fixed;
  inset: 0% 0% auto;
}

.border.bottom {
  inset: auto 0% 0%;
}

.menu-trigger {
  background-color: var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  transition: background-color .2s;
  display: flex;
}

.menu-trigger:hover {
  background-color: var(--white-smoke);
}

.menu {
  z-index: 999;
  border-bottom: 5px solid var(--bold-green);
  border-left: 1px solid var(--bold-green);
  background-color: var(--white);
  color: #000;
  border-bottom-left-radius: 8px;
  align-items: center;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

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

.menu-line {
  background-color: var(--white-smoke);
  width: 40px;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.menu-flyout {
  z-index: 900;
  border-right: 10px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: var(--white-smoke);
  transform-origin: 50% 0;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.video-hero {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.video-hero.home {
  height: 100vh;
}

.home-bkg-video {
  z-index: 100;
  border-bottom: 1px solid var(--bold-green);
  width: 100%;
  height: 100%;
  display: flex;
}

.home-welcome {
  align-items: flex-end;
  margin-left: 5px;
  display: flex;
}

.collection-list {
  border-radius: 8px;
}

.login-field {
  background-color: #fcfcfc;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  height: 50px;
  margin-bottom: 15px;
  padding-top: 12px;
  padding-bottom: 8px;
  padding-left: 14px;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
  position: relative;
  box-shadow: inset 0 1px 3px #0000000d;
}

.login-field:focus {
  background-color: #fff;
  border: 1px solid #76ce89;
  box-shadow: inset 0 1px 3px #0000000d, 0 0 4px #76ce89;
}

.field-image {
  background-image: url('../images/Bold-Slide-1.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.sign-up-field-wrapper {
  display: flex;
}

.login-section {
  z-index: 600;
  text-align: center;
  background-color: #fffffff2;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 500px;
  padding: 30px;
  font-size: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.have-an-account-text {
  color: #33333380;
}

.login-page-section {
  background-color: #f7f8fa;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10vh 5%;
  display: flex;
  position: relative;
}

.login-box {
  border-bottom: 1px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  min-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px 10px #32686733;
}

.login-container {
  z-index: 10;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.login-page-link {
  color: var(--bold-green);
  font-weight: 600;
}

.login-label {
  opacity: .4;
  color: #000;
  width: 100%;
  margin-bottom: 2px;
  padding-left: 2px;
  font-size: 14px;
  font-weight: 600;
}

.error-message {
  z-index: 100;
  color: #fff;
  text-align: center;
  background-color: #000;
  padding-top: 22px;
  padding-bottom: 22px;
  font-weight: 700;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.memberstack-form {
  padding-top: 25px;
  position: relative;
}

.field-wrapper {
  width: 100%;
  min-height: 30px;
  position: relative;
}

.field-wrapper.first-name-wrapper {
  margin-right: 30px;
}

.water-image {
  background-image: url('../images/Bold-Slide-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.tree-image {
  background-image: url('../images/Bold-Slide-2.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.slider-section {
  border-right: 10px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.login-image {
  width: 40px;
}

.login-page-wrapper {
  border-right: 10px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  width: 100%;
  margin-left: -10px;
  padding-left: 0;
  display: flex;
}

.dashboard-grid {
  grid-column-gap: 19px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.custom-greeting-wrap {
  flex-direction: column;
  min-width: 300px;
  margin-top: -20px;
  margin-bottom: 0;
  display: flex;
}

.memberstack-bolt {
  margin-top: -6px;
}

.login-page-link-2 {
  color: var(--bold-green);
  font-weight: 600;
}

.login-page-link-2:hover {
  color: var(--black-2);
}

.memberstack-tag {
  color: #fff;
  text-align: left;
  background-color: #2aa8ff;
  border: 2px solid #f5f8fa;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6px;
  padding-right: 6px;
  font-family: Varela, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  display: none;
  position: absolute;
  top: -12px;
  right: -12px;
  overflow: hidden;
  box-shadow: 0 0 10px 1px #fff;
}

.memberstack-tag:hover {
  overflow: visible;
}

.memberstack-tag-label {
  background-color: #000;
  border-radius: 3px;
  width: 158px;
  padding-left: 12px;
  position: absolute;
  top: -3px;
  right: 30px;
}

.forgot-password {
  color: var(--bold-green);
  text-align: right;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5em;
  display: block;
}

.memberstack-diamond {
  color: #0000;
  background-color: #000;
  border-radius: 2px;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 8px;
  bottom: 0;
  right: -3px;
  transform: rotate(45deg);
}

.tiny-text {
  margin-top: 8px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
}

.member-sidebar {
  min-width: 300px;
}

.link-block {
  background-image: url('../images/np_profile_1129050_326867.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 36px;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.link-block:hover {
  background-image: url('../images/np_profile_1129050_000000.png');
}

.member-updates {
  border-radius: 8px;
  overflow: hidden;
}

.member-updates.event {
  margin-bottom: 20px;
}

.update-card {
  z-index: 500;
  background-color: var(--white);
  flex-direction: column;
  text-decoration: none;
  display: flex;
  position: relative;
}

.update-card:hover {
  background-color: #ffffff80;
}

.card-title-bkg {
  object-fit: fill;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 20px;
  position: static;
}

.feature-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 130px;
  height: auto;
}

.feature-image.large {
  width: 100%;
  height: 200px;
}

.card-title {
  display: flex;
}

.collection-list-wrapper {
  border-style: solid;
  border-width: 1px 1px 5px;
  border-color: var(--bold-green);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.collection-list-wrapper.round {
  background-color: #0000;
  border-radius: 8px;
  overflow: hidden;
}

.collection-list-wrapper.flattop {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.heading-3 {
  color: var(--bold-green);
  align-self: center;
  margin-top: 0;
}

.round-menu-button {
  z-index: 1001;
  box-shadow: none;
  background-image: url('../images/np_search_1693061_326867.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  border-radius: 5px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  padding-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
  transition: border .2s, box-shadow .2s;
  display: none;
  position: relative;
}

.round-menu-button:hover {
  background-image: url('../images/np_search_1693061_000000.png');
  box-shadow: 3px 0 17px -4px #ececec80;
}

.round-menu-button:active {
  box-shadow: none;
  background-color: #0000;
  border: 1px solid #d160275c;
}

.round-menu-button.w--open {
  background-color: #fff0;
}

.menu-btn-link {
  width: 100%;
  height: 100%;
  position: absolute;
}

.menu-btn-link.w--current {
  z-index: 1000;
  border-radius: 50px;
  transform: scale(1.09);
}

.menu-btn-link.search {
  border-bottom-style: none;
}

.single-line-search {
  transform-origin: 0%;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-bottom: 0;
  display: none;
  position: relative;
}

.single-line-search-input {
  border-radius: 8px;
  width: 100%;
  height: 40px;
  margin-bottom: 0;
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  box-shadow: inset 0 0 8px #00000036;
}

.single-line-search-button {
  border: 3px solid var(--white);
  background-color: var(--bold-green);
  border-radius: 8px;
  width: 85px;
  height: 40px;
  margin-left: 0;
  margin-right: 15px;
  padding: 0 5px 0 0;
  transition: background-color .2s;
  position: static;
  bottom: 0;
  right: 0;
}

.single-line-search-button:hover {
  border-color: var(--bold-green);
  background-color: var(--black-2);
  position: relative;
  top: -2px;
  box-shadow: 2px 0 14px #32686780;
}

.single-line-search-button:active {
  top: 0;
  box-shadow: 2px 0 14px #d16027a6;
}

.search-wrap {
  z-index: 800;
  align-items: center;
  height: 50px;
  display: flex;
}

.menu-logo {
  padding: 30px 20px 20px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.image-6 {
  height: 80px;
}

.menu-credit {
  color: var(--bold-green);
  margin-bottom: 30px;
  margin-right: 30px;
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.menu-credit:hover {
  color: var(--black-2);
  font-weight: 700;
  text-decoration: underline;
}

.div-block-16 {
  border-bottom: 5px solid var(--bold-green);
  border-left: 1px solid var(--bold-green);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

.div-block-17 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px 8px 8px 0;
  width: 300px;
  overflow: hidden;
}

.mask {
  width: 100%;
}

.slide-nav, .slide-nav-2 {
  margin-bottom: 20px;
}

.social-icon-wrap {
  flex-wrap: wrap;
  flex: none;
  padding-left: 20px;
  display: flex;
}

.related-list {
  flex-direction: column;
  display: flex;
}

.related-list.author {
  z-index: 500;
  align-items: flex-start;
  margin-top: 10px;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.text-block-2 {
  margin-bottom: 10px;
}

.map-column {
  border-top: 1px solid var(--white);
  border-left: 10px solid var(--white);
  border-top-left-radius: 8px;
  flex: 1;
  overflow: hidden;
}

.html-embed {
  height: 90vh;
}

.testimonials {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 20px 60px;
  display: flex;
  overflow: hidden;
}

.contact-section {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
}

.testimonial-card-wrap {
  border-bottom: 1px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: var(--white);
  border-radius: 5px;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
}

.contact-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-end;
  width: 100%;
  min-width: 300px;
  height: 90%;
  min-height: 90vh;
  display: grid;
}

.contact-column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.instagram-feed {
  width: 100%;
  display: none;
}

.description-wrap {
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.profile-subheading {
  color: var(--black-2);
}

.profile-heading {
  line-height: 120%;
}

.text-block-3 {
  color: var(--white);
}

.text-block-4 {
  flex: none;
}

.div-block-26 {
  padding: 60px;
}

.open-sidebar {
  cursor: pointer;
  background-image: url('../images/np_sidebar-expand_632300_326867.png');
  background-position: 0 0;
  background-size: contain;
  width: 48px;
  height: 48px;
  margin-left: 5px;
  margin-right: 15px;
  display: block;
  position: absolute;
}

.open-sidebar:hover {
  background-image: url('../images/np_sidebar-expand_632300_000000.png');
  background-size: contain;
}

.hide-sidebar {
  cursor: pointer;
  transform-style: preserve-3d;
  background-image: url('../images/np_sidebar-expand_632300_326867.png');
  background-position: 0 0;
  background-size: contain;
  width: 48px;
  height: 48px;
  margin-left: 5px;
  margin-right: 10px;
  position: absolute;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.hide-sidebar:hover {
  background-image: url('../images/np_sidebar-expand_632300_000000.png');
}

.sidebar-triggers {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  margin-right: 15px;
  display: flex;
  position: relative;
}

.blog-hero-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 70vh;
  position: relative;
}

.menu-grid {
  grid-column-gap: 16px;
  margin: 100px 10vw 94px;
}

.home-btns {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 60px;
  display: flex;
  position: absolute;
  inset: -60px auto auto -10px;
  overflow: hidden;
}

.testimonial-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  display: flex;
}

.testimonial-slider-list {
  max-width: 60%;
}

.testimonial-card {
  background-color: #fff;
  border-bottom: 1px solid #326867;
  border-left: 10px solid #326867;
  border-radius: 8px;
  padding: 10px 20px;
}

.rating-stars {
  height: 40px;
  margin-top: 10px;
}

.star-icon {
  margin-right: 5px;
}

.testimonial.name {
  margin-top: 20px;
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 600;
}

.form {
  width: 100%;
}

.home-contact-form {
  width: 350px;
}

.form-field {
  border-style: solid;
  border-width: 1px 1px 3px 10px;
  border-color: var(--white);
  background-color: var(--bold-green);
  color: var(--white);
  border-radius: 5px;
  height: 60px;
  font-size: 22px;
}

.form-field:focus {
  border-color: var(--black-2);
}

.form-field::placeholder {
  color: var(--white);
}

.form-field.tall {
  height: 200px;
}

.h3.white {
  color: var(--white);
  margin-bottom: 20px;
}

.event-card-title {
  background-color: var(--bold-green);
  color: var(--white);
  padding: 3px 10px 3px 3px;
}

.event-card-title.round {
  border-left: 10px solid var(--bold-green);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.event-card-title.nofill {
  background-color: #0000;
}

.text-block-5 {
  color: var(--black-2);
}

.success-message {
  background-color: var(--bold-green);
}

.text-block-6 {
  color: var(--white);
}

.error-message-2 {
  border-radius: 5px;
}

.div-block-28 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.slider-2 {
  background-color: #0000;
  min-height: 60vh;
  padding: 0;
}

.left-arrow, .right-arrow, .slide-nav-3 {
  color: var(--bold-green);
}

.blog-wrap {
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin-top: -99px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.blog-grid {
  grid-column-gap: 16px;
  border-radius: 8px;
  grid-template-rows: 200px auto auto;
  grid-template-columns: 2fr 1fr;
  position: relative;
  top: -200px;
}

.blog-content-wrap {
  border-bottom: 1px solid var(--bold-green);
  border-left: 10px solid var(--bold-green);
  background-color: var(--white);
  background-image: linear-gradient(to right, var(--white), var(--white-smoke));
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 600px;
  max-width: 700px;
  min-height: 500px;
  margin-bottom: 30px;
  padding: 60px;
  display: flex;
  position: relative;
  box-shadow: 0 1px 100px #32686780;
}

.blog-sidebar {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.blog-sticky-sidebar {
  align-self: stretch;
  width: 100%;
  height: 100px;
  position: sticky;
  top: 60px;
}

._60px-pad {
  height: 60px;
}

.rich-text-block-2 {
  margin-bottom: 30px;
}

.event-details {
  border-bottom: 1px solid var(--bold-green);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.event-detail-line {
  margin-bottom: 5px;
  text-decoration: none;
  display: flex;
}

.event-detail-line.source {
  margin-top: 20px;
}

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

.text-block-7, .button-text {
  align-self: center;
}

.buttons {
  z-index: 99999;
  display: flex;
  position: relative;
}

.button-2 {
  background-color: #ffffffe6;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.button-2.right {
  color: #fff;
  background-color: #326867;
}

.redeem-perk-flyout {
  z-index: 99999;
  background-color: var(--white-smoke);
  flex-direction: column;
  align-items: flex-start;
  padding: 60px;
  display: none;
  position: fixed;
  inset: 0%;
}

.close-x {
  color: var(--red);
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  inset: 0% auto auto 0%;
}

.perk-card-wrapper {
  width: 340px;
  height: 180px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.perk-card {
  background-color: var(--bold-green);
  color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: -2px 2px 14px -4px #0009;
}

.image-7 {
  object-fit: cover;
  height: 80%;
}

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

.div-block-31 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hidden-input {
  width: 100px;
  position: absolute;
}

.description {
  margin-top: 20px;
  font-size: 14px;
}

.success-message-2 {
  text-align: left;
  border-radius: 10px;
}

.div-block-32 {
  display: flex;
}

.div-block-33 {
  margin-top: 11px;
  display: flex;
}

.text-block-8 {
  margin-right: 10px;
}

.form-2 {
  height: 60px;
  position: relative;
}

.icon-column {
  color: var(--white);
  cursor: pointer;
  background-color: #00000080;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 300%;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.icon-column:hover {
  background-color: #326867e6;
}

.icon-column-image {
  width: 120px;
}

.collection-list-2 {
  overflow: hidden;
}

.page-list-wrapper {
  min-width: 30vw;
  margin-top: 20px;
  margin-bottom: 120px;
}

.div-block-34 {
  margin-top: 60px;
}

.page-tab-nav {
  border: 1px solid #0000;
  border-bottom-width: 5px;
  border-radius: 8px;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
}

.page-tab-nav:hover {
  background-color: #ffffff80;
  border: 1px solid #32686780;
  border-bottom-width: 5px;
}

.page-tab-nav.w--current {
  border-style: solid;
  border-width: 1px 1px 5px;
  border-color: var(--bold-green);
  background-color: var(--white);
  border-radius: 8px;
}

.form-block {
  margin-top: 30px;
}

.view-all-link {
  background-color: var(--gainsboro);
  color: var(--bold-green);
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  transition: font-size .2s, background-color .2s;
  display: flex;
}

.view-all-link:hover {
  color: var(--white);
  background-color: #dfdfdfb3;
  font-weight: 600;
}

.link-2 {
  color: var(--white);
  text-decoration: none;
}

.link-3 {
  color: var(--bold-green);
  text-decoration: none;
}

.lottie-animation {
  width: 54px;
  height: 60px;
}

@media screen and (max-width: 991px) {
  .main-content {
    align-items: stretch;
  }

  .sidebar {
    z-index: 999;
    min-width: 50vw;
    margin-top: 0;
    display: none;
    position: fixed;
  }

  .content-area {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-area.home {
    padding-left: 40px;
    padding-right: 40px;
  }

  .content-area.business {
    padding-top: 80px;
  }

  .simple-list-card-info {
    flex: 0 auto;
  }

  .grid {
    grid-template-rows: auto auto auto auto;
    margin-top: 0;
  }

  .profile-bkg.member {
    border-top-left-radius: 0;
    width: 100%;
  }

  .profile-footer {
    align-items: center;
  }

  .profile-columns {
    border-top-left-radius: 0;
  }

  .home-block.right {
    padding-right: 10px;
  }

  .p {
    font-size: 17px;
    font-weight: 300;
  }

  .packages-grid {
    max-width: 100%;
  }

  .nav {
    z-index: 999;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-flyout {
    z-index: 999;
  }

  .welcome-text-wrap {
    flex: 1;
  }

  .login-section {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

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

  .slider-section {
    display: none;
  }

  .round-menu-button {
    width: 50px;
    height: 50px;
    margin-top: 5px;
  }

  .single-line-search {
    padding-left: 0;
    padding-right: 0;
  }

  .search-wrap {
    margin-top: 0;
    margin-left: -10px;
  }

  .div-block-16 {
    flex-direction: column;
  }

  .div-block-17 {
    border-left: 10px solid var(--bold-green);
    background-position: 50% 0;
    background-size: cover;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    order: -1;
    width: 100%;
    max-width: 300px;
    min-height: 300px;
    margin-left: 0;
  }

  .social-icon-wrap {
    margin-bottom: 10px;
  }

  .testimonials {
    min-height: 60vh;
  }

  .contact-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .description-wrap {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .main-content.blog {
    border-left-style: none;
  }

  .sidebar {
    width: 70vw;
    display: none;
    position: fixed;
    overflow: scroll;
  }

  .content-area {
    padding-top: 60px;
  }

  .content-area.business {
    padding-top: 66px;
  }

  .profile-bkg.member {
    order: 1;
    width: 100%;
  }

  .profile-footer {
    flex-direction: column;
  }

  .profile-columns {
    border-top-left-radius: 8px;
    flex-direction: column;
  }

  .category-tag.blog {
    top: -40px;
  }

  .profile-description {
    border-bottom-left-radius: 80px;
    margin-bottom: 0;
  }

  .social-links {
    margin-top: 10px;
  }

  .brand {
    border-bottom-style: none;
    border-right-style: none;
  }

  .logo-wrap {
    z-index: 99999;
  }

  .menu {
    justify-content: flex-end;
    width: 100%;
  }

  .login-section {
    padding-left: 9%;
    padding-right: 9%;
  }

  .field-wrapper.first-name-wrapper {
    margin-right: 5%;
  }

  .single-line-search {
    height: 50px;
    margin-top: 5px;
  }

  .search-wrap {
    margin-top: 0;
  }

  .div-block-16 {
    flex-direction: column;
  }

  .related-list.author {
    bottom: 60px;
  }

  .description-wrap {
    flex-direction: column;
  }

  .testimonial-slider-list {
    max-width: 80%;
  }

  .blog-wrap {
    max-width: 100vw;
  }

  .blog-content-wrap {
    border-left-style: none;
    min-width: 100vw;
    max-width: 100vw;
    padding-top: 20px;
  }

  .heading-5 {
    font-size: 42px;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
  }

  .main-content {
    padding-bottom: 70px;
  }

  .main-content.horizontal {
    border-left-style: none;
    border-right-style: none;
    padding-bottom: 40px;
  }

  .sidebar {
    border-left-width: 5px;
    border-right-width: 5px;
    width: 100vw;
    margin-top: 10px;
    padding-top: 59px;
    display: none;
  }

  .content-area {
    padding-top: 90px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-area.home {
    margin-left: 0;
    padding: 5px 15px 50px 10px;
  }

  .content-area.business {
    padding-top: 60px;
    padding-right: 15px;
  }

  .simple-list-card:hover, .simple-list-card.w--current {
    border-right-width: 1px;
  }

  .simple-list-card.floating {
    background-color: var(--white);
    border-right-style: solid;
  }

  .tabs-menu {
    justify-content: flex-end;
  }

  .grid.business {
    margin-right: 0;
  }

  .profile-bkg.member {
    border-bottom-left-radius: 8px;
    flex-direction: row;
    order: 1;
    width: 100%;
  }

  .profile-header {
    border-bottom-style: none;
  }

  .div-block-2 {
    flex: 0 auto;
    align-items: flex-start;
    height: 100%;
  }

  .profile-footer {
    flex-direction: column;
    flex: none;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .profile-footer.members {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .profile-columns {
    background-image: linear-gradient(to right, var(--white) 32%, var(--white-smoke));
    border-top-left-radius: 8px;
  }

  .profile-columns.member {
    border-top-left-radius: 0;
  }

  .category-tag.blog {
    top: 10px;
  }

  .featured-image {
    border-top-right-radius: 8px;
  }

  .cta-logo {
    height: 30px;
    margin-left: 5px;
  }

  .bold-cta {
    align-items: center;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 10px;
    display: none;
  }

  .profile-description {
    border-top-left-radius: 0;
    border-bottom-left-radius: 80px;
    flex: 1;
    margin-bottom: 0;
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .profile-description.right {
    margin-right: 10px;
  }

  .profile-description.member {
    border-bottom-left-radius: 8px;
  }

  .profile-description.member.top {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .social-links {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .home-block.right {
    border-left-style: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
    position: fixed;
  }

  .p {
    font-size: 16px;
  }

  .pricing-block {
    background-color: #0000;
    border-bottom-style: none;
    border-left-style: none;
    margin-right: -5px;
    padding-left: 10px;
    padding-right: 0;
  }

  .price-block {
    background-color: var(--white);
    border-radius: 8px;
  }

  .button {
    width: auto;
  }

  .price-headline {
    font-size: 22px;
  }

  .link-trigger {
    text-align: right;
    display: none;
  }

  .nav {
    z-index: 9999;
  }

  .nav-link.logo-description {
    display: none;
  }

  .video-block {
    padding-right: 0;
  }

  .home-features {
    margin-left: 0;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .feature-card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .body {
    border-left-style: none;
  }

  .sidebar-trigger {
    margin-right: 10px;
  }

  .logo-wrap {
    z-index: 9999;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sidebar-footer {
    position: relative;
  }

  .menu {
    border-bottom-left-radius: 0;
    justify-content: flex-end;
    width: 100%;
    margin-right: 0;
    padding-left: 5px;
  }

  .video-hero {
    height: 82vh;
  }

  .video-hero.home {
    height: 100%;
    min-height: 100vh;
    padding-top: 70px;
  }

  .home-bkg-video {
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
  }

  .welcome-text-wrap {
    margin-left: 0;
    padding-left: 10px;
  }

  .home-welcome {
    flex-direction: row;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 10px;
  }

  .sign-up-field-wrapper {
    flex-direction: column;
  }

  .login-section {
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .have-an-account-text {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .login-page-section {
    margin: 0 -10px -20px;
    padding: 0%;
  }

  .login-container {
    min-width: 0;
  }

  .field-wrapper.first-name-wrapper {
    margin-right: 3%;
  }

  .login-image {
    display: none;
  }

  .member-sidebar {
    padding-left: 0;
    padding-right: 10px;
  }

  .link-block {
    margin-left: 5px;
    margin-right: 5px;
  }

  .round-menu-button {
    margin-right: -1px;
  }

  .single-line-search {
    height: 50px;
    padding: 8px 0;
  }

  .single-line-search-input {
    height: 100%;
    margin-left: 0;
    margin-right: 5px;
    padding-left: 9px;
  }

  .single-line-search-button {
    height: 100%;
  }

  .search-wrap {
    height: 60px;
    margin-top: -1px;
    padding-top: 0;
    top: 30px;
  }

  .menu-logo, .menu-logo.w--current {
    display: none;
  }

  .div-block-16 {
    flex-direction: column;
  }

  .div-block-17 {
    border-left: 10px solid var(--bold-green);
    border-top-left-radius: 0;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 0;
  }

  .hide-mobile {
    display: none;
  }

  .packages-list {
    margin-left: -10px;
  }

  .social-icon-wrap {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .related-list.author {
    width: 100%;
    min-width: 100vw;
  }

  .testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }

  .description-wrap {
    flex-direction: column;
  }

  .profile-subheading {
    margin-top: 0;
    font-weight: 600;
  }

  .profile-heading {
    margin-bottom: 10px;
    margin-left: 20px;
    font-size: 28px;
  }

  .profile-heading.member {
    margin-left: 0;
  }

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

  .testimonial-wrap {
    padding: 30px;
  }

  .testimonial-slider-list {
    max-width: 100%;
  }

  .home-contact-form {
    width: 100%;
  }

  .blog-wrap {
    margin-top: -88px;
    padding: 13px;
  }

  .blog-content-wrap {
    background-color: var(--white-smoke);
    background-image: linear-gradient(to right, var(--white) 67%, var(--white-smoke));
    padding-left: 20px;
    padding-right: 30px;
  }

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

  .redeem-perk-flyout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .perk-card-wrapper {
    width: 100%;
  }

  .icon-column {
    flex: 0 auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .icon-column-image {
    width: 48px;
  }
}

#w-node-_9150b87f-86ad-d594-5a51-cc636e54b06d-ad0f1423 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_11ff5d28-5e4e-a9c9-b8ca-b6ae77d95801-ad0f1423 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8b60204b-d419-5ba9-f4b7-ba31b872d3de-ad0f1423, #w-node-ec4f774d-70eb-2cdb-35f2-39c916a5ac2f-ad0f1423 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_0e2c46a2-84c9-b599-8c34-f939d5f12b7d-ad0f1424 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: end;
}

#w-node-_230d6a8a-36a2-960f-ff4a-f3c4d891fb3f-ad0f1424 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b148b45-09f0-f498-4ee6-3a81bf77d2b7-ad0f1424 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-_08c0b896-f91e-93eb-1817-c5a8c5ec8e75-ad0f1424 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_52bc3c08-ec4a-c91b-9fd5-810da82f6aa9-ad0f1424 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-dff8d34e-8518-6c03-5116-f7f7596b6b16-ad0f1428 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bb0ed0de-f943-7b3b-e3b7-9f794494bfd9-ad0f1428 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aa4a4fdf-dd65-ef6d-bda4-da7e95169db4-ad0f1428 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b26b-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b28d-ad0f142c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b29c-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b2b0-ad0f142c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_300385b3-832f-d6db-2c6c-ed319c5344ac-ad0f142d {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_2e761e35-536c-b1a8-ee00-2cfa3b6322f7-ad0f142d, #w-node-e6d7ed5b-f631-1875-1a0e-863662dd3e7c-ad0f142d {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_29c243c0-0f8a-aa23-a314-b0ecbda08064-bda08064 {
  grid-area: span 3 / span 1 / span 3 / span 1;
  justify-self: stretch;
}

#w-node-_65e230e8-9f04-8b25-3edf-bc82440e107e-ad0f142e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_65e230e8-9f04-8b25-3edf-bc82440e10a0-ad0f142e {
  grid-area: span 3 / span 2 / span 3 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_8b60204b-d419-5ba9-f4b7-ba31b872d3de-ad0f1423, #w-node-ec4f774d-70eb-2cdb-35f2-39c916a5ac2f-ad0f1423 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_0e2c46a2-84c9-b599-8c34-f939d5f12b7d-ad0f1424, #w-node-_3b148b45-09f0-f498-4ee6-3a81bf77d2b7-ad0f1424, #w-node-_52bc3c08-ec4a-c91b-9fd5-810da82f6aa9-ad0f1424 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-bb0ed0de-f943-7b3b-e3b7-9f794494bfd9-ad0f1428, #w-node-aa4a4fdf-dd65-ef6d-bda4-da7e95169db4-ad0f1428, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b28d-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b29c-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b2b0-ad0f142c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_300385b3-832f-d6db-2c6c-ed319c5344ac-ad0f142d {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_29c243c0-0f8a-aa23-a314-b0ecbda08064-bda08064 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: stretch;
  }

  #w-node-_65e230e8-9f04-8b25-3edf-bc82440e10a0-ad0f142e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-bb0ed0de-f943-7b3b-e3b7-9f794494bfd9-ad0f1428, #w-node-aa4a4fdf-dd65-ef6d-bda4-da7e95169db4-ad0f1428, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b28d-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b29c-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b2b0-ad0f142c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_300385b3-832f-d6db-2c6c-ed319c5344ac-ad0f142d {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_29c243c0-0f8a-aa23-a314-b0ecbda08064-bda08064 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: stretch;
  }

  #w-node-_65e230e8-9f04-8b25-3edf-bc82440e10a0-ad0f142e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_08c0b896-f91e-93eb-1817-c5a8c5ec8e75-ad0f1424 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-dff8d34e-8518-6c03-5116-f7f7596b6b16-ad0f1428 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-bb0ed0de-f943-7b3b-e3b7-9f794494bfd9-ad0f1428, #w-node-aa4a4fdf-dd65-ef6d-bda4-da7e95169db4-ad0f1428 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b26b-ad0f142c {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b28d-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b29c-ad0f142c, #w-node-_4cc30260-1474-fd3d-e669-c4ff27f6b2b0-ad0f142c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2e761e35-536c-b1a8-ee00-2cfa3b6322f7-ad0f142d, #w-node-e6d7ed5b-f631-1875-1a0e-863662dd3e7c-ad0f142d, #w-node-_65e230e8-9f04-8b25-3edf-bc82440e107e-ad0f142e {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_65e230e8-9f04-8b25-3edf-bc82440e10a0-ad0f142e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


