@charset "UTF-8";
@font-face {
  font-family: "dia";
  src: url("/assets/DiatypePre-Regular.woff") format("woff");
}
* {
  box-sizing: border-box;
}

html, body, p {
  margin: 0;
  padding: 0;
  height: auto;
}

body {
  background-color: white;
  color: blue;
  font-family: dia;
  font-size: 17px;
  line-height: 21px;
}
@media (min-width: 1024px) {
  body {
    font-size: 22px;
    line-height: 25px;
  }
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:visited {
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding-left: 8px;
  list-style-type: none;
}
ul li:before {
  content: "•";
  position: relative;
  left: -6px;
}

header {
  z-index: 100;
  position: fixed;
  top: 0px;
  width: 100vw;
  color: white;
  background-color: blue;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}
header #logo {
  height: 75px;
}
header #logo img {
  height: 100%;
}
header #claim {
  display: none;
}
@media (min-width: 1024px) {
  header {
    padding: 17px;
    padding-bottom: 15px;
  }
  header #claim {
    display: block;
  }
  header #logo, header #claim {
    width: 50%;
  }
  header #claim {
    font-size: 21px;
    line-height: 29px;
    padding: 0 3px;
    position: relative;
    top: -6px;
    left: -4.4px;
  }
}

nav {
  display: none;
}
@media (min-width: 1024px) {
  nav {
    z-index: 100;
    position: fixed;
    top: 105px;
    display: block;
    background-color: white;
    padding: 0 17px;
    height: 30px;
    font-size: 21px;
    line-height: 30px;
    width: 100%;
    border-bottom: 2px solid blue;
  }
  nav a {
    text-decoration: none;
    padding: 0 3px;
  }
  nav ul {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    margin: 0 -17px;
    padding: 0;
  }
  nav ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 25%;
    border-right: 2px solid blue;
  }
  nav ul li a {
    display: block;
    width: 100%;
  }
  nav ul li.active, nav ul li:hover {
    color: white;
    background-color: blue;
  }
  nav ul li:before {
    display: none;
  }
  nav ul li:nth-of-type(3) {
    width: 50%;
  }
  nav ul li:first-of-type {
    padding-left: 17px;
  }
  nav ul li:last-of-type {
    padding-right: 17px;
    border: none;
  }
}

main {
  margin-top: 105px;
  padding: 15px;
  max-width: 100vw;
}
@media (min-width: 1024px) {
  main {
    padding: 0;
    margin: 210px auto 17px auto;
    width: 1000px;
    max-width: 1000px;
  }
}

section {
  margin-bottom: 30px;
}
section:last-of-type {
  margin-bottom: 0px;
}
#about .about-heading {
  font-size: 22px;
  line-height: 25px;
  border-top: 2px solid blue;
  border-bottom: 2px solid blue;
  line-height: 30px;
}
@media (min-width: 1024px) {
  #about .about-heading {
    font-size: 34px;
    line-height: 38px;
  }
}
#about .about-text {
  font-size: 22px;
  line-height: 25px;
}
@media (min-width: 1024px) {
  #about .about-text {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  #about .portrait {
    margin-bottom: 50px;
    display: flex;
  }
}
#about .portrait .portrait-image {
  margin: 30px 0 15px;
}
#about .portrait .portrait-image img {
  width: 50%;
  max-width: 150px;
}
@media (min-width: 1024px) {
  #about .portrait .portrait-image {
    margin: 0;
    width: 25%;
    flex-shrink: 0;
  }
  #about .portrait .portrait-image img {
    width: 83.3333%;
    max-width: unset;
  }
}
@media (min-width: 1024px) {
  #about .portrait .portrait-rest {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#about .portrait .portrait-heading {
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
#produkte {
  margin-top: 30px;
  border: 2px solid blue;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #produkte {
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 1100px;
    margin-top: 100px;
  }
}
#produkte > * {
  padding: 0 5px;
  width: 100%;
}
#produkte .produkt-titel {
  order: 1;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 2px solid blue;
}
@media (min-width: 1024px) {
  #produkte .produkt-titel {
    width: 50%;
    border-bottom: none;
    border-right: 2px solid blue;
  }
}
#produkte .produkt-beschreibung {
  order: 3;
}
@media (min-width: 1024px) {
  #produkte .produkt-beschreibung {
    order: 2;
    width: 50%;
    border-right: 2px solid blue;
  }
}
#produkte .produkt-beschreibung > * {
  padding: 0 5px;
}
#produkte .produkt-beschreibung .produkt-preis,
#produkte .produkt-beschreibung .produkt-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#produkte .produkt-beschreibung .produkt-preis {
  padding: 0;
  margin: 0 -5px;
  line-height: 30px;
  border-bottom: 2px solid blue;
}
#produkte .produkt-beschreibung .produkt-preis > * {
  padding: 0 5px;
  border-top: 2px solid blue;
}
#produkte .produkt-beschreibung .beschreibung-heading {
  margin-top: 12px;
  width: 100%;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-top: 2px solid blue;
  border-bottom: 2px solid blue;
}
#produkte .produkt-beschreibung .beschreibung-label {
  width: 60%;
}
#produkte .produkt-beschreibung .beschreibung-value {
  width: 40%;
  text-align: right;
}
#produkte .produkt-beschreibung .produkt-details:last-of-type {
  margin-bottom: 10px;
}
#produkte .produkt-fotos {
  position: relative;
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: row;
}
#produkte .produkt-fotos img {
  scroll-snap-align: start;
  align-self: flex-start;
  display: none;
}
#produkte .produkt-fotos img.currentImg {
  display: block;
}
#produkte .produkt-fotos .next {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  z-index: 10;
}
#produkte .produkt-fotos .prev {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0%;
  z-index: 10;
  cursor: w-resize;
}
@media (min-width: 1024px) {
  #produkte .produkt-fotos {
    position: sticky;
    top: 135px;
    width: 50%;
    page-break-after: always;
    break-after: always;
    cursor: e-resize;
  }
}

#vertragsbedingungen {
  margin-top: 30px;
}
#vertragsbedingungen .section-heading {
  padding: 0 5px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 2px solid blue;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  #vertragsbedingungen .section-heading {
    width: 50%;
    margin-top: 100px;
  }
}
#vertragsbedingungen .section-heading a {
  text-decoration: none;
  display: block;
}
#vertragsbedingungen .contact-heading {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
#vertragsbedingungen .contact-text {
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  #vertragsbedingungen .contact-text {
    margin-bottom: 100px;
  }
}
#vertragsbedingungen .terms {
  font-size: 13px;
  line-height: 15px;
}
@media (min-width: 1024px) {
  #vertragsbedingungen .terms {
    display: flex;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
  }
}
@media (min-width: 1024px) {
  #vertragsbedingungen .terms .terms-column {
    width: calc( 100% - 20px / 3 );
    margin-right: 10px;
  }
  #vertragsbedingungen .terms .terms-column:last-of-type {
    margin-right: 0;
  }
}
#vertragsbedingungen .terms .terms-column .terms-column-heading {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 2px solid blue;
  border-bottom: 2px solid blue;
  border-top: 1px solid blue;
  border-bottom: 1px solid blue;
}
@media (min-width: 1024px) {
  #vertragsbedingungen .terms .terms-column .terms-column-heading {
    line-height: 21px;
  }
}
#vertragsbedingungen .terms .terms-column .terms-column-text {
  padding: 2px 0;
}

footer {
  display: none;
}

/*# sourceMappingURL=site.css.map */
