html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
}
.limiter {
  width: calc(100% - 40px);
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.limiter-half {
  max-width: 640px;
}
.header {
  width: 100%;
  height: 85px;
}
.header .logo {
  width: 150px;
  height: 100%;
  background-image: url('../images/Madhaus.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.header .limiter {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
a.button-link {
  text-decoration: none;
}
.button {
  background-color: #44C5AE;
  color: #fff;
  padding: 15px 30px;
  display: block;
  border-radius: 10px;
}
.hero {
  padding: 100px 0;
  background: #44c5ae;
  background: linear-gradient(90deg, #44c5ae 0%, rgba(255, 200, 60, 0.731) 100%);
  color: #fff;
}
.hero-text {
  max-width: 75%;
  margin: 0 auto;
  text-align: center;
}
.products {
  padding: 30px 0;
}
a {
  color: #0a84ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.contact {
  text-align: center;
}
.font-weight-normal {
  font-weight: 400;
}
.footer {
  width: calc(100% - 40px);
  margin-top: 60px;
  background-color: #232323;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  font-size: 14px;
  font-weight: 400;
}
.footer p {
  margin: 0 auto;
  text-align: center;
  font-size: 0.9em;
}
