/* --------------------------------------------------
   Grundsetup
-------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 22px;
  line-height: 1.5em;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  color: #111;
  background-color: #ffffff;
}

/* --------------------------------------------------
   Hero
-------------------------------------------------- */

.hero {
  background-image:
	linear-gradient(
	 rgba(245, 248, 250, 0.15),
   rgba(245, 248, 250, 0.15)
	),
	url("../media/AdobeStock_1257120228.jpeg");
  background-size: cover;
  background-position: center;
  padding: 6em 2em 4.5em 2em;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.logo-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------
   Content
-------------------------------------------------- */

.content {
  max-width: 800px;
  padding: 3em 2em 4em 2em;
}

section {
  margin-bottom: 3em;
}

.lead {
  font-size: 1.2em;
  line-height: 1.3;
}

/* --------------------------------------------------
   Typografie
-------------------------------------------------- */

h2 {
  font-weight: 700;
  font-size: 1.5em;
  margin: 0 0 0.75em 0;
}

p {
  line-height: 1.5;
  margin: 0 0 1em 0;
  font-size: 1em;
}

strong {
  font-weight: 700;
}

ul {
  margin: 0;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.4em;
  font-size: 1em;
  line-height: 1.5;
}

/* --------------------------------------------------
   Kontakt
-------------------------------------------------- */

.contact a {
  font-weight: 700;
  text-decoration: none;
  color: #111;
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */

.footer {
  padding: 2em;
  font-size: 0.85em;
  color: #555;
}