.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;
  font-family: Varela, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

h1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Varela, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

.hero_section {
  background-image: url('../images/hero-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

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

.hero_content_wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: #031c12;
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 5rem;
  display: grid;
}

.logo {
  width: 15rem;
}

.heading {
  margin-top: 0;
}

.div-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.body-text_large {
  color: #cfcfcf;
  font-family: Varela, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.link-large {
  color: #28996b;
  font-size: 1.5rem;
  text-decoration: none;
}

.link-large:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .hero_content_container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero_content_wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .body-text_large, .link-large {
    font-size: 1.25rem;
  }

  .heading-2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .hero_content_container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero_content_wrap {
    padding: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  .hero_content_container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero_content_wrap {
    padding: 1.5rem;
  }

  .body-text_large, .link-large {
    font-size: 1rem;
  }

  .heading-2 {
    font-size: 2rem;
  }
}


