@charset "UTF-8";
.burger {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: 0;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  z-index: 99999999;
  transition: all 1s ease;
  margin-left: auto;
}
@media (max-width: 960px) {
  .burger {
    display: inline-block;
  }
}
.burger:focus {
  outline: 0;
}
.burger span {
  display: block;
  position: absolute;
  top: 22px;
  left: 9px;
  right: 9px;
  height: 3px;
  background: #3C3027;
}
.burger span::after,
.burger span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3C3027;
  content: "";
}
.burger span::before {
  top: -10px;
}
.burger span::after {
  bottom: -10px;
}
.burgertox {
  background-color: transparent;
}
.burgertox span {
  -webkit-transition: background 0 0.3s;
  transition: background 0 0.3s;
}
.burgertox span::after,
.burgertox span::before {
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0;
  transition-delay: 0.3s, 0;
}
.burgertox span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.burgertox span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.burgertox.is-active {
  background-color: transparent;
}
.burgertox.is-active span {
  background: 0 0;
}
.burgertox.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burgertox.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burgertox.is-active span::after,
.burgertox.is-active span::before {
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("ttf");
}
* {
  box-sizing: border-box;
  hyphens: auto;
}
html {
  overflow-y: auto;
  overflow-x: hidden;
}
html.no-scroll {
  overflow-y: hidden;
}
body {
  min-height: 100%;
  font-size: 16px;
  position: relative;
  margin: 0;
}
@media (max-width: 1200px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 750px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 13px;
  }
}
header {
  background-color: #fff;
  width: 100%;
  height: 120px;
  padding: 5px 50px 10px 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  z-index: 10;
  transition: all ease 0.3s;
}
@media (min-width: 960px) {
  header.minimized {
    height: 70px;
    padding: 0 50px 0 50px;
  }
  header.minimized .main-menu {
    padding: 10px 0;
  }
  header.minimized .main-menu .menu-item {
    font-size: 1em;
  }
  header.minimized .logo {
    height: 40px;
    width: 140px;
    background-size: 140px 50px;
  }
}
@media (max-width: 960px) {
  header {
    height: 60px;
    padding: 5px 20px 5px 30px;
  }
}
.main-menu {
  padding: 20px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: all ease 0.3s;
}
.main-menu li:hover {
  background-color: #3C3027;
}
.main-menu li:hover a {
  color: #fff;
}
@media (max-width: 960px) {
  .main-menu {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 100vw;
    right: -100vw;
    flex-direction: column;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: inset 0px 10px 10px -10px rgba(0, 0, 0, 0.3);
    transition: all ease 0.3s;
  }
  .main-menu.is-open {
    left: 0;
    right: 0;
  }
}
.menu-item {
  padding: 0 25px;
  margin: 0 0 0 0;
  text-decoration: none;
  color: #3C3027;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  font-size: 1.1em;
  transition: all ease 0.3s;
}
.menu-item:hover + .submenu {
  display: flex;
}
.menu-item:hover + .submenu a {
  padding: 20px;
  font-size: 1em;
}
.menu-item:last-child {
  margin-right: 0;
}
@media (max-width: 960px) {
  .menu-item {
    font-size: 1.3em;
    padding: 10px 20px;
    width: 100%;
  }
}
.submenu {
  display: none;
  flex-direction: column;
  background-color: #D6A483;
}
.submenu:hover {
  display: flex;
}
.submenu a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  text-align: center;
}
.submenu a:hover {
  color: #3C3027;
}
.logo {
  width: 180px;
  height: 70px;
  display: inline;
  align-self: center;
  background-repeat: no-repeat;
  background-size: 180px 70px;
  transition: all ease 0.3s;
}
@media (max-width: 960px) {
  .logo {
    background-image: url(img/krampe_logo.svg);
    height: 40px;
    width: 100px;
    background-size: contain;
    background-position: center;
  }
}
.spacer {
  flex: 1 1 auto;
}
.background-img {
  margin: 50px 50px 0 50px;
  z-index: -1;
  background-position: center;
  background-size: cover;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 960px) {
  .background-img {
    margin: 30px 30px 0 30px;
  }
}
@media (max-width: 650px) {
  .background-img {
    margin: 0;
  }
}
.stayDown {
  position: fixed;
  bottom: 0;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
}
main {
  width: 100vw;
  min-height: calc(100vh - 400px);
  margin-top: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 200px;
  text-align: center;
  padding-bottom: 70px;
}
@media (max-width: 1300px) {
  main {
    padding: 0 100px;
  }
}
@media (max-width: 960px) {
  main {
    margin-top: 130px;
  }
}
@media (max-width: 650px) {
  main {
    padding: 0 20px;
  }
}
h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #3C3027;
  font-weight: 800;
}
h1 {
  font-size: 4.3em;
  color: #fff;
  padding: 10px 0;
  word-spacing: 0.3em;
  display: inline;
  box-shadow: 20px 0 0 #3C3027, -20px 0 0 #3C3027;
  background-color: #3C3027;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 650px) {
  h1 {
    font-size: 3.5em;
    box-shadow: 10px 0 0 #3C3027, -10px 0 0 #3C3027;
  }
}
.h1-headline {
  margin-bottom: 100px;
}
@media (max-width: 650px) {
  .h1-headline {
    margin-bottom: 80px;
  }
}
.text-box h2 {
  font-size: 3em;
  margin: 10px 0 20px 0;
  padding: 0;
  line-height: 120%;
}
h2.headline {
  font-size: 4em;
  margin: 10px 0 20px 0;
  padding: 0;
  line-height: 120%;
  background-color: #3C3027;
  color: #fff;
  box-shadow: 20px 0 0 #3C3027, -20px 0 0 #3C3027;
  margin-bottom: 50px;
  align-self: center;
}
h3 {
  font-size: 1.75em;
  margin: 7px 0 14px 0;
  padding: 0;
  line-height: 120%;
}
p {
  line-height: 190%;
}
.text-box {
  background-color: #fff;
  max-width: 900px;
  padding: 40px 50px;
  text-align: left;
  line-height: 190%;
  margin-bottom: 100px;
}
.text-box:nth-child(odd) {
  align-self: flex-end;
}
.text-box:nth-child(even) {
  align-self: flex-start;
}
.products {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.products a {
  background-color: #fff;
  color: #3C3027;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 40px 40px 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 3em;
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
}
.products a:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
  background-color: #e8d9c5;
}
.products a:nth-child(2n) {
  margin-right: 0;
}
.products a .product-img {
  height: 110px;
  width: 110px;
  background-position: center;
  background-size: cover;
  margin: 20px;
}
.products a .product-name {
  padding: 20px 40px;
}
.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .row {
    flex-direction: column;
  }
}
.flex-box {
  background-color: #fff;
  padding: 25px 35px;
  text-align: left;
  line-height: 190%;
  margin-bottom: 50px;
  margin-right: 50px;
  width: calc((100% - 100px) / 3);
}
.flex-box.map {
  padding: 0;
  flex: 1 1 auto;
  height: 300px;
}
.flex-box.left-map {
  width: calc((100% - 100px) / 3);
}
.flex-box:last-child {
  margin-right: 0;
}
@media (max-width: 1000px) {
  .flex-box {
    margin-right: 0 !important;
    width: 100% !important;
  }
}
footer {
  font-size: 0.8em;
  letter-spacing: 0.2em;
  color: #777;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  padding: 10px 50px;
}
.certificates {
  width: 100px;
  height: 100%;
  float: left;
  margin-right: 50px;
  align-self: center;
}
.certificates-wrap {
  display: flex;
}
.certificates-link {
  font-weight: bold;
  text-decoration: none;
}
.certificates-link:link,
.certificates-link:visited,
.certificates-link:hover {
  color: #777;
}
.download-button {
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
  display: flex;
  flex-direction: row;
  background-color: #fff;
  text-decoration: none;
  position: relative;
  margin-bottom: 20px;
}
.download-button:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
}
.download-button:hover .download-button-arrow {
  opacity: 1;
}
.download-button:hover .download-button-size {
  opacity: 0;
}
.download-button:nth-child(2n) {
  margin-right: 0;
}
.download-button-size {
  opacity: 1;
  transition: all ease 0.5s;
}
.download-button-wrap,
.download-button-img-wrap {
  display: flex;
  flex-direction: column;
}
.download-button-wrap {
  padding: 20px 20px 25px 20px;
}
.download-button-headline {
  color: #3C3027;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 2em;
  text-align: left;
}
.download-button-descr {
  color: #3C3027;
  text-align: left;
}
.download-button-img-wrap {
  min-width: 130px;
  height: 150px;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.download-button-arrow {
  position: absolute;
  height: 60%;
  width: 75%;
  top: 23%;
  opacity: 0;
  transition: all ease 0.5s;
}
.download-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.product-table {
  width: 100%;
}
.product-table tr td:first-child {
  font-weight: bold;
  margin-right: 40px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  display: flex;
}
