:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
}

body {
  margin:0;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.logo_img {
  max-height: 4.2rem;
}

.hero_content_header {
  color: #1a2f07;
  font-size: 2rem;
  line-height: 1.2;
}

.hero_content_text {
  color: #1a2f07;
  font-size: 1.5rem;
  line-height: 1.2;
}

.hero_content_column {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.divider {
  background-color: #e6e6e6;
  width: 100%;
  height: 1px;
}

.hero_content_row {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero_bottom {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  min-height: 45rem;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero_content_list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 66rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8rem;
  display: flex;
}

.container {
  max-width: 95%;
}

@media screen and (max-width: 991px) {
  .logo_img {
    max-height: 3rem;
  }

  .hero_content_header {
    font-size: 1.6rem;
  }

  .hero_content_list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .hero_content_row {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }
}