@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/Rubik-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  src: url(/fonts/Rubik-Medium.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 800;
  src: url(/fonts/Rubik-Bold.ttf) format('truetype');
}

#wkdb-widget {
  position: fixed;
  bottom: 140px;
  right: 30px;
  z-index: 999;
}

* {
  box-sizing: border-box;
}
html {
  display: flex;
  align-items: center;
  flex-direction: column;
}
body {
  background-color: #f2f2f2;
  color: #000000;
  font-family: 'Rubik', 'Arial', sans-serif;
  font-weight: normal;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 960px;
}
a {
  color: #b31709;
  text-decoration: none;
}
a:hover {
  color: #b31709;
  text-decoration: none;
}
header {
  width: 960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
}
#site-logo {
  width: 291px;
  height: 65px;
}
.nav {
  display: flex;
  width: 100%;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.nav-item {
  background-color: #e30613;
  padding: 20px;
  width: calc(33% - 10px);
  font-weight: 600;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all 300ms ease;
}
.nav-item:hover {
  color: #ffffff;
  opacity: 0.8;
  transition: all 300ms ease;
}
.nav-item div {
  width: 75%;
  display: flex;
  justify-content: center;
}
.nav-item span {
  /* max-width: min-content; */
  text-align: center;
}
.nav-item svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 6px;
  fill: #575555;
}

main {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 0 80px;
}
main h2 {
  font-size: 36px;
  color: #e30613;
  text-align: center;
}
.kacheln {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  --kacheln-gap: 80px;
  row-gap: calc(var(--kacheln-gap) - 40px);
  column-gap: var(--kacheln-gap);
  border-radius: 16px;
}
.kachel {
  width: calc(50% - (var(--kacheln-gap) / 2));
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.kachel div {
  font-size: 36px;
  line-height: 40px;
  color: #e30613;
  font-weight: 800;
  text-align: center;
}
.kachel img {
  width: 100%;
  border-radius: 16px;
  transition: all 300ms ease;
}
.kachel img:hover {
  opacity: 0.8;
}

.auszeichnung {
  margin-top: 28px;
  margin-bottom: 28px;
  padding-left: 48px;
  padding-right: 48px;
}
.auszeichnung,
.auszeichnung img {
  width: 100%;
}
footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-content {
  background-color: #a9a9a9;
  padding: 8px 80px;
  text-align: left;
}
.footer-legal {
  text-align: left;
}

.footer-extended {
  display: flex;
  width: 960px;

  background-color: #e9e9e9;
}
.footer-col {
  width: 37.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0 0 16px 16px;
}
.footer-col h3 {
  text-align: left;
  width: 100%;
}
.footer-col a {
  width: 100%;
}
.footer-col img {
  width: 100%;
}
.col-icons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 25%;
  padding-right: 16px;
  padding-top: 80.44px;
}
.col-icons img,
.col-icons a {
  width: 32px;
  height: 32px;
}
