.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 44px;
}

p {
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
}

.hero {
  height: 100vh;
  padding-left: 166px;
  padding-right: 166px;
}

.flex-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.herocontent {
  width: 50%;
}

.image {
  object-fit: cover;
  width: 40%;
  height: 50%;
}

.spacer {
  height: 30px;
}

.navbar {
  background-color: #fff;
  border-radius: 50px;
  margin-top: 20px;
  margin-left: 133px;
  margin-right: 133px;
  padding: 15px 33px;
  position: sticky;
  top: 10px;
  box-shadow: 0 2px 20px 4px #68686833;
}

.navlink {
  font-family: Open Sans, sans-serif;
}

.navlink.w--current {
  color: #074125;
  font-weight: 700;
}

.paragraph {
  font-size: .9rem;
  line-height: 24px;
}

.logo {
  background-color: #094125;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

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

.button {
  background-color: #004225;
  border-radius: 10px;
  padding: 15px 20px;
  font-family: Merriweather, serif;
  font-weight: 700;
}

.heading {
  color: #074125;
  font-family: Merriweather, serif;
}

.altbutton {
  color: #074125;
  background-color: #00422500;
  border-radius: 10px;
  padding: 15px 20px;
  font-family: Merriweather, serif;
  font-weight: 700;
}

.brandlink {
  margin-top: 5px;
}

.footer {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 15px 166px;
  display: flex;
}

.psmall {
  color: #a8a8a8;
  font-size: .7rem;
  line-height: 24px;
}

@media screen and (max-width: 479px) {
  .hero {
    height: auto;
    padding-left: 35px;
    padding-right: 35px;
  }

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

  .herocontent {
    width: 100%;
  }

  .image {
    display: none;
  }

  .navbar {
    border-radius: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
  }

  .logo {
    width: 30px;
    height: 30px;
  }

  .navcontent {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .button {
    padding: 10px 15px;
  }

  .nav-menu {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 8px 3px #d1d1d133;
  }

  .menu-button.w--open {
    background-color: #074125;
    padding: 10px 12px;
  }

  .brandlink {
    display: none;
  }
}


