/* #region Hero styles  */

section {
  margin: 100px auto;
  max-width: 1100px;
  width: 100%;
}

.hero {
  width: 100%;
  max-width: 1200px;
  height: 60vh;
  position: relative;
  top: -70px;
  fill: var(--bm_white_fill);
  padding: 0 3rem;
}

.hero_headline, .hero_logo {
  display: flex;
  flex-grow: 1;
}

.hero_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 23px;
  height: 100%;
  }
  
.hero_headline { 
  grid-area: 1 / 1 / 2 / 2; 
  justify-content: start;
  align-items: end;
  margin-bottom: 2.875rem;
}

.hero_logo { 
  grid-area: 1 / 2 / 2 / 3; 
}

/* #region hero grid styles */

.privacypolicy {
  width: 100%;
  max-width: 1100px;
  padding: 5.1rem 2.875rem;
  /* margin: 4vh 4vw 4vh 4vw; */
  background: var(--bm_accent_wg_fill);
  border-radius: 1.25rem;
  }

.privacy_subline {
  margin: 4rem auto 0.688rem;
  text-align: left;
}

.privacypolicy ul > li {
  padding-left: 3rem;
  font-size: 1.625rem;
  margin: 0.688rem auto;
  max-width: 90%;
}
