* {
  box-sizing: border-box !important;
}

/* BSS Styles unset */

/* Text */

a, p, h1, h2, h3, h4, h5, h6 {
  all: unset;
}

.text-light {
}

/* Buttons */

.btn, .btn-primary, .btn-secondary, .btn-success, .btn-danger, .btn-warning, .btn-info, .btn-light, .btn-dark {
  all: unset;
}

/* Form Controls */

.form-control, .form-check-input, .form-select {
  all: unset;
}

/* Grid / Layout */

.container, .row, .col {
  /*all: unset;*/
}

/* Navbar */

.navbar, .navbar-brand, .navbar-nav, .nav-link {
  all: unset;
}

/* - */

/* - */

/* Site Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: oblique;
  font-weight: bold;
  color: var(--color-primary);
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--color-secondary);
}

main {
  flex-grow: 1;
}

:root {
  --color-primary: #0F292D;
  --color-secondary: #E5F6F6;
  --color-accent: #7AA7A6;
  --color-accent-rgb: 122, 167, 166;
}

/* :ROOTs */

/* Typografie */

:root {
  --font-family-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-family-heading: Merriweather;
  --h1-size: 40px;
  --h2-size: 28px;
  --h3-size: 22px;
  --h4-size: 18px;
}

@media (min-width: 480px) {
  :root {
    --h1-size: clamp(56px, 5vw, 64px);
    --h2-size: clamp(36px, 5vw, 40px);
    --h3-size: clamp(28px, 5vw, 32px);
    --h4-size: clamp(20px, 5vw, 22px);
  }
}

@media (min-width: 768px) {
  :root {
    --h1-size: clamp(82px, 8vw, 96px);
    --h2-size: clamp(46px, 5vw, 52px);
    --h3-size: clamp(32px, 2.7vw, 42px);
    --h4-size: clamp(22px, 5vw, 24px);
  }
}

/* Space */

:root {
  --xl-space: 96px;
  --l-space: 72px;
  --m-space: 56px;
  --s-space: 40px;
}

@media (min-width: 480px) {
  :root {
    --xl-space: 148px;
    --l-space: 96px;
    --m-space: 64px;
    --s-space: 42px;
  }
}

@media (min-width: 768px) {
  :root {
    --xl-space: 200px;
    --l-space: 148px;
    --m-space: 96px;
    --s-space: 48px;
  }
}

a {
  cursor: pointer;
}

h1 {
  font-family: Merriweather;
  display: inline-block;
  font-size: var(--h1-size);
  font-style: italic;
  font-weight: 400;
  line-height: 125%;
}

h2 {
  font-family: Merriweather;
  display: inline-block;
  font-size: var(--h2-size);
  font-style: italic;
  font-weight: 400;
  line-height: 125%;
}

h3 {
  font-family: Merriweather;
  display: inline-block;
  font-size: var(--h3-size);
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
}

.heading--light {
  color: var(--color-secondary);
}

.section__titel {
  text-align: center;
  display: block;
  margin: 0 auto;
}

.section__titel--light {
  color: white;
}

/* Buttons */

.btn {
  padding: 12px 22px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
}

.btn:hover, .btn:focus-visible {
  background-color: white;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(var(--color-accent-rgb), .5);
  outline: 0;
}

.btn-secondary {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-primary);
}

.btn-third {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wrapper__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .wrapper__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}

.wrapper__button--mt-s {
  margin-top: var(--s-space);
}

/* Container */

.container {
  display: block;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/* Section */

section {
  margin: var(--xl-space) 0px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .grid-3-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-grow: 1;
  }
}

@media (min-width: 992px) {
  .grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-grow: 1;
  }
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-grow: 1;
  }
}

.header__section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subpage_header_image {
  margin-top: var(--m-space);
}

.text__specifications {
  display: block;
  text-align: right;
}

.specifications__item {
  padding: 12px 0;
  border-bottom: 1px solid white;
}

.specification_r_content {
  display: flex;
  align-items: center;
  justify-content: end;
}

.specification_r_content {
  display: flex;
  align-items: center;
  justify-content: start;
}

@media (min-width: 768px) {
  .specification_r_content {
    display: flex;
    align-items: center;
    justify-content: end;
  }
}

.tab_content_list {
  margin-top: var(--s-space);
}

.tab-specification-titel {
  font-family: 'Merriweather';
  font-size: var(--h4-size);
  font-weight: 400;
}

/* FORM */

.input {
  width: 100%;
  font-size: 1rem;
  background-color: #f5f5f5;
  padding: 6px 0;
  margin-bottom: 10px;
}

.date-input {
  padding-left: 10px !important;
  display: block;
  width: 100%;
  background-clip: padding-box;
}

.date-input:before {
  content: attr(placeholder) !important;
  color: #56595c !important;
  margin-right: .5em;
  float: left;
}

.input::placeholder {
  width: 100%;
  padding: 0px 8px;
  font-size: 1rem;
}

span.no-break {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--color-secondary);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.dropdown-menu {
  border-radius: 0;
}

