@charset "UTF-8";
@import "vendors/lightbox.min.css";
@import "vendors/slick.css";
@import "vendors/slick-theme.css";
@import "vendors/fontawesome-pro.css";
:root {
  --marker-color: hsl(212, 55%, 35%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

.skiptranslate {
  display: none !important;
}

body {
  font-family: "peridot-pe-variable", sans-serif;
  font-weight: 400;
  font-size: clamp(0.92rem, 0.9375vw, 1.125rem);
  color: hsl(0, 100%, 0%);
  background-color: hsl(0, 0%, 100%);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  padding-bottom: 4rem;
}

a {
  color: hsl(212, 55%, 35%);
}

a:is(:hover, :focus) {
  color: hsl(212, 55%, 35%);
}

strong {
  font-weight: 700;
}

ul:not([class]) {
  padding-left: 2rem;
  margin: 1rem;
}

pre {
  font-family: monospace;
}

.container {
  --max-width: min(90vw, 1600px);
  --min-margin-inline: clamp(0.1rem, 2.6041666667vw, 3.125rem);
  width: min(100% - var(--min-margin-inline), var(--max-width));
  margin-inline: auto;
}

.container--title {
  width: 100%;
}

@media screen and (min-width: 45em) {
  .container--title {
    width: min(100% - var(--min-margin-inline), var(--max-width));
  }
}
.container-margin-left {
  --margin-inline: calc(((100% - min(90vw, 1600px)) / 2) - var(--grid-gap) * .5);
  padding-left: var(--margin-inline);
}

.container-margin-right {
  --margin-inline: calc(((100% - min(90vw, 1600px)) / 2) - var(--grid-gap) * .5);
  padding-right: var(--margin-inline);
}

.container-margin-inline {
  --margin-inline: calc(((100% - min(90vw, 1600px)) / 2) - var(--grid-gap) * .5);
  padding-inline: var(--margin-inline);
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.margin-inline-auto {
  margin-inline: auto;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-right-auto {
  margin-right: auto;
}

.flex-group {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--flex-column-gap, clamp(1.09375rem, 1.3020833333vw, 1.5625rem));
  row-gap: var(--flex-row-gap, calc(clamp(1.09375rem, 1.3020833333vw, 1.5625rem) / 2));
  width: fit-content;
}

.flex-group.mx-auto {
  width: 100%;
  justify-content: center;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.space-1 {
  padding: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.space-2 {
  padding: clamp(2.0275rem, 2.6041666667vw, 3.125rem);
}

.space-3 {
  padding: clamp(3.28125rem, 3.90625vw, 4.6875rem);
}

.space-4 {
  padding: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.space-5 {
  padding: clamp(5.46875rem, 6.5104166667vw, 7.8125rem);
}

.space-6 {
  padding: clamp(6.5625rem, 7.8125vw, 9.375rem);
}

.space-inline-1 {
  padding-inline: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.space-inline-2 {
  padding-inline: clamp(2.0275rem, 2.6041666667vw, 3.125rem);
}

.space-inline-3 {
  padding-inline: clamp(3.28125rem, 3.90625vw, 4.6875rem);
}

.space-inline-4 {
  padding-inline: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.space-block-1 {
  padding-block: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.space-block-2 {
  padding-block: clamp(2.0275rem, 2.6041666667vw, 3.125rem);
}

.space-block-3 {
  padding-block: clamp(3.28125rem, 3.90625vw, 4.6875rem);
}

.space-block-4 {
  padding-block: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.gap-free {
  transform: translateY(clamp(1.09375rem, 1.3020833333vw, 1.5625rem));
}

.row {
  display: grid;
  gap: var(--grid-gap, clamp(1.09375rem, 1.3020833333vw, 1.5625rem));
  grid-template-columns: repeat(12, 1fr);
}

.row__spaced {
  gap: var(--grid-gap, clamp(4.375rem, 5.2083333333vw, 6.25rem));
}

.row__bg {
  background-color: rgba(76, 178, 242, 0.24);
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(2.0275rem, 2.6041666667vw, 3.125rem) 50vw;
}

.col {
  grid-column: span 1;
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 45em) {
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
  .col-md-9 {
    grid-column: span 9;
  }
  .col-md-10 {
    grid-column: span 10;
  }
  .col-md-11 {
    grid-column: span 11;
  }
  .col-md-12 {
    grid-column: span 12;
  }
}
@media screen and (min-width: 65em) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-12 {
    grid-column: span 12;
  }
}
nav {
  position: relative;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  max-width: 95%;
  transition: 0.15s all ease;
  padding: 4.25rem 1.25rem;
}

@media screen and (min-width: 65em) {
  nav {
    position: absolute;
    transform: translateY(-3rem);
    background-color: rgb(255, 255, 255);
    border-top: 1px solid hsl(212, 55%, 35%);
    border-bottom: 1px solid hsl(212, 55%, 35%);
    padding: 0.5rem 0;
    max-width: 100%;
  }
}
nav:hover {
  background-color: rgba(255, 255, 255, 0.92);
  transition: 0.15s all ease;
}

.nav {
  --flex-column-gap: clamp(1.375rem, 5.2083333333vw, 6.25rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  list-style: none;
  font-family: "peridot-pe-variable", sans-serif;
  font-weight: 400;
  /* Zeige das Submenü, wenn das übergeordnete Menüelement gehovered wird */
}

@media screen and (min-width: 65em) {
  .nav {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: center;
    gap: var(--flex-column-gap);
    width: min(90vw, 1600px);
  }
}
.nav > li {
  flex: 1;
}

.nav a {
  display: grid;
  align-items: center;
  color: hsl(212, 55%, 35%);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  height: clamp(1.65rem, 2.3958333333vw, 2.875rem);
  font-size: clamp(0.88rem, 0.9375vw, 1.125rem);
  white-space: nowrap;
}

.nav a:is(:hover, :focus) {
  color: hsl(212, 55%, 35%);
  text-decoration: underline;
}

.nav .sub-menu {
  border: 0;
  transition: 0.15s all ease;
  list-style: none;
  overflow: visible;
  opacity: 1;
  height: auto;
}

@media screen and (min-width: 65em) {
  .nav .sub-menu {
    position: absolute;
    opacity: 0;
    height: 0.15rem;
    padding: 0;
    width: clamp(7rem, 13.3333333333vw, 16rem);
  }
}
.nav .sub-menu li {
  position: relative;
  cursor: pointer;
  color: hsl(212, 55%, 35%);
  line-height: 110%;
  padding-block: 0.3rem;
  letter-spacing: -0.02em;
}

.nav .sub-menu li.sep:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-block: 0.25rem;
}

@media screen and (min-width: 65em) {
  .nav .sub-menu li {
    padding-bottom: 0;
    pointer-events: none;
  }
}
.nav .sub-menu li a {
  position: relative;
  text-transform: none;
  font-weight: 400;
  height: auto;
  font-size: clamp(0.9rem, 0.8333333333vw, 1rem);
  font-variation-settings: "ital" 0, "wdth" 82, "wght" 400;
}

@media screen and (min-width: 87em) {
  .nav .sub-menu li a {
    color: transparent;
    white-space: wrap;
    font-variation-settings: unset;
  }
}
@media screen and (min-width: 65em) {
  .nav.active .sub-menu {
    opacity: 1;
    height: auto;
    z-index: 99999;
    padding: clamp(1.09375rem, 1.3020833333vw, 1.5625rem) 0;
    transition: 0.25s ease;
  }
  .nav.active .sub-menu li {
    pointer-events: all;
  }
  .nav.active .sub-menu li a {
    color: unset;
  }
}
nav.breadcrumb {
  --max-width: min(90vw, 1600px);
  --min-margin-inline: clamp(0.1rem, 2.6041666667vw, 3.125rem);
  position: relative;
  transform: translateY(0);
  border: none;
  padding-block: clamp(2.0275rem, 2.6041666667vw, 3.125rem) 0.5rem;
  padding-inline: 0;
  width: min(100% - var(--min-margin-inline), var(--max-width));
  margin-inline: auto;
  text-transform: uppercase;
  font-weight: 600;
}

nav.breadcrumb a {
  color: hsl(212, 55%, 35%);
  text-decoration: none;
}

nav.breadcrumb span {
  color: hsl(19, 83%, 61%);
}

[aria-controls=main-navigation] {
  width: 4.2rem;
  background: transparent;
  border: none;
  display: block;
  place-self: flex-end;
  z-index: 9999;
}

@media screen and (min-width: 65em) {
  [aria-controls=main-navigation] {
    display: none;
  }
}
[aria-controls=main-navigation] .hamburger__line {
  transition: y 0.25s 0.25s, transform 0.25s, opacity 0s 0.25s;
  transform-origin: center;
  fill: hsl(212, 55%, 35%);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger {
  --hamburger-color: var(--font-color);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__line {
  transition: y 0.25s, transform 0.25s 0.25s, opacity 0s 0.25s;
  transform-origin: center;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__top, [aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  y: 45;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__top {
  transform: rotate(45deg);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  transform: rotate(-45deg);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__middle {
  opacity: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  background-color: hsl(212, 55%, 35%);
  padding: clamp(3.28125rem, 3.90625vw, 4.6875rem);
  align-items: center;
}

@media screen and (min-width: 45em) {
  .contact {
    grid-template-columns: 1fr 1fr;
  }
}
.contact p {
  font-size: clamp(1.25rem, 1.4583333333vw, 1.75rem);
}

.contact__address * {
  color: white;
  margin-bottom: 1rem;
}

.contact__social {
  justify-self: start;
  margin-top: 2rem;
}

.contact__social .social-media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.contact__form .form__group:first-child {
  display: none;
}

.contact__form .form__group {
  display: flex;
  flex-flow: column;
  color: white;
}

.contact__form .form__group input, .contact__form .form__group select, .contact__form .form__group textarea {
  border: 0;
  background-color: #D3ECFC;
  color: hsl(212, 55%, 35%);
  margin: 0.25rem 0 1.25rem 0;
  padding: 0.35rem;
  line-height: 1.25rem;
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1rem;
}

.site-header {
  position: relative;
  color: hsl(212, 55%, 35%);
  background-color: hsl(0, 0%, 100%);
  padding: 0.5rem 0;
}

@media screen and (min-width: 65em) {
  .site-header {
    padding: clamp(1.09375rem, 1.3020833333vw, 1.5625rem) 0;
  }
}
.site-header__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.site-header__top .info-icon {
  position: relative;
  width: auto;
  height: clamp(3.0625rem, 5.1041666667vw, 6.125rem);
  z-index: 99999;
}

.site-header__top .logo {
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: auto;
  height: clamp(3.53125rem, 5.8854166667vw, 7.0625rem);
  transition: all 0.44s;
}

.site-header__top .logo.scroll {
  top: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
  transform: translate(0, 0);
  right: calc((100% - 90vw) / 2);
  height: clamp(2.78125rem, 4.6354166667vw, 5.5625rem);
}

.site-header__inner {
  display: flex;
  gap: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 65em) {
  .site-header__inner {
    padding-bottom: 2.875rem;
    justify-content: space-between;
  }
}
#main-navigation {
  --clr-invert: var(--clr-font);
  display: grid;
  position: absolute;
  width: 0;
  top: 0;
  right: 0;
  height: 100vh;
  transition: transform 0.25s;
  background-color: #fff;
  z-index: 999;
}

#main-navigation[data-visible=false] {
  transform: translateX(100%);
  width: 0;
  overflow: hidden;
  padding: 0;
}

#main-navigation[data-visible=true] {
  transform: translateX(0);
  width: 100%;
}

#main-navigation [role=navigation] {
  width: 80%;
  margin-left: auto;
}

#main-navigation [role=navigation] .nav {
  flex-flow: column;
  align-items: flex-start;
}

#main-navigation [aria-label*=secondary] {
  margin-top: auto;
  margin-bottom: clamp(5.46875rem, 6.5104166667vw, 7.8125rem);
}

@media screen and (min-width: 65em) {
  #main-navigation {
    --clr-invert: white;
    display: flex;
    position: relative;
    min-height: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    background-color: transparent;
    padding-left: clamp(2.0275rem, 2.6041666667vw, 3.125rem);
  }
  #main-navigation[data-visible=false] {
    transform: translateX(0);
    width: inherit;
    overflow: visible;
  }
  #main-navigation[data-visible=true] {
    transform: translateX(0);
    width: inherit;
  }
  #main-navigation [role=navigation] {
    width: auto;
    margin-left: unset;
  }
  #main-navigation [role=navigation] .nav {
    flex-flow: row;
    align-items: center;
  }
  #main-navigation [aria-label*=secondary] {
    margin-left: auto;
    margin-top: unset;
    margin-bottom: unset;
  }
}
.site-footer {
  --background-color: hsl(212, 55%, 35%);
  padding-block: clamp(4.375rem, 5.2083333333vw, 6.25rem);
  background-color: var(--background-color);
}

.site-footer__bottom {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media screen and (min-width: 45em) {
  .site-footer__bottom {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer__bottom .footer-social {
  justify-self: start;
}

.site-footer__bottom .footer-menu {
  position: relative;
  list-style: none;
  padding: 2.85rem 0 0 0;
  margin: 0;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}

@media screen and (min-width: 45em) {
  .site-footer__bottom .footer-menu {
    gap: 2rem;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    justify-self: center;
  }
}
.site-footer__bottom .footer-menu > li {
  display: inline-block;
}

.site-footer__bottom .footer-menu > li > a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.8333333333vw, 1rem);
}

.site-footer__inner {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

@media screen and (min-width: 45em) {
  .site-footer__inner {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 0;
  }
}
.site-footer__inner .footer-address h1, .site-footer__inner .footer-address h2, .site-footer__inner .footer-address h3, .site-footer__inner .footer-address h4, .site-footer__inner .footer-address h5 {
  color: hsl(56, 94%, 53%);
  padding-bottom: clamp(1rem, 1.4583333333vw, 1.75rem);
}

.site-footer__inner .footer-address p {
  color: white;
  font-size: clamp(0.8rem, 0.8333333333vw, 1rem);
}

.site-footer__inner .footer-menu {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__inner .footer-menu > li > a {
  display: block;
  color: hsl(56, 94%, 53%);
  text-decoration: none;
  font-weight: 600;
  padding-bottom: clamp(1rem, 1.4583333333vw, 1.75rem);
}

.site-footer__inner .footer-menu > li .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: clamp(1rem, 1.4583333333vw, 1.75rem);
}

.site-footer__inner .footer-menu > li .sub-menu > li a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.8333333333vw, 1rem);
}

.site-footer__inner .footer-menu > li .sub-menu > li .sub-menu {
  padding-left: clamp(1rem, 1.4583333333vw, 1.75rem);
}

.site-footer__inner .footer-menu > li:last-child .sub-menu {
  padding: 0;
}

.site-footer__inner .footer-menu:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: hsl(19, 83%, 61%);
  left: -1.25rem;
  top: 0;
}

.site-footer__column-span {
  grid-column: 1/-1;
  place-self: end;
}

.site-footer .social-media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.site-footer .social-media-item a {
  display: inline-block;
  width: 44px;
  height: 44px;
}

.site-footer .social-media-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.certificate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.certificate-item {
  display: inline-block;
}

.certificate-item img {
  height: 80px;
  width: auto;
}

.accordion {
  padding-left: 0;
}

.accordion_item {
  --padding: 1rem;
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  margin-bottom: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
  gap: 1rem;
  cursor: pointer;
}

.accordion_item__title {
  min-width: 20rem;
  text-align: left;
  font-size: clamp(1rem, 1.6666666667vw, 2rem);
  text-transform: uppercase;
}

.accordion_item__trigger {
  background: transparent;
  border: 0;
  padding-left: clamp(2.4rem, 3.3333333333vw, 4rem);
  font: inherit;
  color: inherit;
  cursor: pointer;
  pointer-events: none;
}

.accordion_item__trigger:before {
  position: absolute;
  content: "";
  left: 0;
  width: 24px;
  height: 20px;
  background: transparent linear-gradient(180deg, #F8E816 0%, #EE7F4B 100%) 0% 0% no-repeat padding-box;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.accordion_item__trigger[aria-expanded=false]:before {
  transform: matrix(0, 1, -1, 0, 0, 0);
}

.accordion_item__trigger[aria-expanded=true]:before {
  transform: matrix(-1, 0, 0, -1, 0, 0);
}

.accordion_item__has-icon {
  position: relative;
}

.accordion_item__has-icon:before {
  content: "";
  width: 0;
  height: 0;
}

.accordion_item__has-icon .button-icon {
  position: absolute;
  left: 0; /* Oder ein anderer Wert, je nach gewünschter Position */
  top: 50%; /* Beispiel: Vertikal zentrieren */
  transform: translateY(-58%); /* Korrektur für vertikale Zentrierung */
  width: clamp(1.75rem, 2.4166666667vw, 2.9rem); /* Breite des PNGs */
  height: clamp(1.75rem, 2.4166666667vw, 2.9rem); /* Höhe des PNGs */
  /* Kein background oder clip-path nötig, da dies im PNG enthalten ist */
  display: block; /* Verhindert möglichen Leerraum unter dem Bild */
}

.accordion_item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
  padding-top: 0.5rem;
}

@media screen and (min-width: 65em) {
  .accordion_item__content {
    padding-right: clamp(3.28125rem, 3.90625vw, 4.6875rem);
  }
}
.accordion_item__content h3 {
  font-size: clamp(1rem, 1.0416666667vw, 1.25rem);
  color: hsl(19, 83%, 61%);
}

.accordion_item__content p, .accordion_item__content li {
  font-size: clamp(1rem, 1.0416666667vw, 1.25rem);
  color: hsl(212, 55%, 35%);
  margin-bottom: 0.25rem;
}

.accordion_item__content p {
  margin-bottom: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.accordion_item__content > div {
  overflow: hidden;
}

.accordion_item__content[aria-hidden=false] {
  grid-template-rows: 1fr;
}

.btn, .button, .button.alt {
  font-size: inherit;
  color: hsl(212, 55%, 35%);
  background: transparent;
  border: 0.08rem solid hsl(19, 83%, 61%);
  padding: 0.5em 1em;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}

.btn:hover, .btn:focus, .button:hover, .button:focus, .button.alt:hover, .button.alt:focus {
  background: hsl(19, 83%, 61%);
  color: #fff;
  text-decoration: none;
}

.btn:active, .button:active, .button.alt:active {
  transform: scale(0.98);
}

.btn--large, .button--large, .button.alt--large {
  background: hsl(19, 83%, 61%);
  color: #fff;
  font-size: clamp(1.15rem, 1.125vw, 1.35rem);
  font-weight: bold;
}

.btn--large:hover, .btn--large:focus, .button--large:hover, .button--large:focus, .button.alt--large:hover, .button.alt--large:focus {
  opacity: 0.89;
}

.downloads {
  padding-block: clamp(1rem, 2.5vw, 3rem);
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.25rem, 1.6666666667vw, 2rem);
}

.downloads li {
  width: 30%;
  min-width: 9.75rem;
}

.downloads li a {
  width: 100%;
}

h1, .heading-1 {
  font-size: clamp(1.3625rem, 2.6041666667vw, 3.125rem);
  color: hsl(212, 55%, 35%);
  font-weight: 700;
  text-transform: normal;
  font-family: "peridot-pe-variable", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h2, .heading-2 {
  font-size: clamp(1.5625rem, 2.6041666667vw, 3.125rem);
  color: hsl(212, 55%, 35%);
  font-weight: 700;
  text-transform: normal;
  font-family: "peridot-pe-variable", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h3, .heading-3 {
  font-size: clamp(1.1rem, 1.25vw, 1.5rem);
  color: hsl(212, 55%, 35%);
  font-weight: 700;
  text-transform: normal;
  font-family: "peridot-pe-variable", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h4, .heading-4 {
  font-size: clamp(1.1rem, 1.25vw, 1.5rem);
  color: hsl(212, 55%, 35%);
  font-weight: 700;
  text-transform: normal;
  font-family: "peridot-pe-variable", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h5, .heading-5 {
  font-size: clamp(1rem, 0.9166666667vw, 1.1rem);
  color: hsl(212, 55%, 35%);
  font-weight: 700;
  text-transform: normal;
  font-family: "peridot-pe-variable", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

.h-wrap {
  --inner-space: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
  margin-top: calc(-1 * var(--inner-space));
  margin-left: calc(-1 * var(--inner-space));
  margin-right: calc(-1 * var(--inner-space));
  padding: var(--inner-space);
}

p {
  margin-bottom: 0.5rem;
}

.icon {
  display: flex;
  align-items: center;
  flex-flow: column;
  text-decoration: none;
}

.icon a {
  text-decoration: none;
}

.icon span {
  display: inline-block;
}

.icon__left {
  align-items: flex-start;
}

.icon__right {
  align-items: flex-end;
}

.icon__center {
  align-items: center;
}

.label {
  display: inline-block;
  color: #fff;
  border-radius: 0.2rem;
  padding: 0.25rem;
  margin: 0.35rem 0;
  font-size: 0.75rem;
  font-weight: bold;
}

.label__1 {
  background-color: #ec8758;
}

.label__2 {
  background-color: #c53d40;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: clamp(1.65rem, 1.6666666667vw, 2rem);
  margin-bottom: 0.35rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2034.4%2027.4%22%3E%3Cstyle%3E.st0%7Bfill%3Anone%3Bstroke%3A%23ee7f4b%3Bstroke-linecap%3Around%3Bstroke-width%3A6px%3B%7D%3C/style%3E%3Cg%3E%3Cline%20class%3D%22st0%22%20x1%3D%224.6%22%20y1%3D%2215.7%22%20x2%3D%2210.7%22%20y2%3D%2222.7%22/%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M10.7%2C22.7L29.9%2C4.7%22/%3E%3C/g%3E%3C/svg%3E");
}

.image-swap {
  position: relative;
}

.image-swap__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.25s;
}

.image-swap:hover .image-swap__hover {
  opacity: 1;
}

.title-image {
  position: relative;
  margin: 0;
  width: 100%;
  background-size: cover;
  background-position: center center;
  max-height: 600px;
  padding-bottom: 56%;
}

@media (max-width: 992px) {
  .title-image__auto {
    padding-bottom: 60% !important;
  }
}
@media (max-width: 767px) {
  .title-image__auto {
    padding-bottom: 75% !important;
  }
}
.title-image__title {
  background-color: hsl(212, 55%, 35%);
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  padding: clamp(1.09375rem, 1.3020833333vw, 1.5625rem) clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

@media screen and (min-width: 45em) {
  .title-image__title {
    padding: clamp(1.09375rem, 1.3020833333vw, 1.5625rem) clamp(2.0275rem, 2.6041666667vw, 3.125rem);
  }
}
.title-image__button {
  position: absolute; /* Absolut positioniert */
  bottom: 10%;
  left: 5%;
  transform: rotate(-15deg);
  text-decoration: underline;
  width: clamp(15rem, 18.125vw, 21.75rem);
  height: clamp(15rem, 18.125vw, 21.75rem);
  background-color: hsl(56, 94%, 53%); /* Gelb wie im Bild */
  border-radius: 50%; /* Rund machen */
  display: flex; /* Zentrierung von Text */
  align-items: center; /* Vertikale Zentrierung */
  justify-content: center; /* Horizontale Zentrierung */
  text-align: center;
  font-size: clamp(2.2rem, 2.6041666667vw, 3.125rem);
  font-family: Arial, sans-serif; /* Beispiel-Schriftart */
  color: hsl(212, 55%, 35%); /* Textfarbe (angepasst für Lesbarkeit) */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Schatten */
  transition: transform 0.2s; /* Für Hover-Effekt */
  padding: 3rem;
  line-height: 1;
}

.title-image .caption {
  position: absolute;
  left: 5.6458333333%;
  top: 30%;
  transform: translate(0, -50%);
  width: 100%;
  text-align: left;
}

@media (min-width: 992px) {
  .title-image .caption {
    top: 50%;
    width: 80%;
  }
}
.title-image .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: clamp(9.875rem, 15.9583333333vw, 19.15rem);
  width: clamp(9.875rem, 15.9583333333vw, 19.15rem);
  padding: clamp(1rem, 1.25vw, 1.5rem);
  border-radius: 999px;
  background-color: #F8E816;
  position: absolute;
  bottom: 0;
  left: 10%;
  white-space: unset;
  transform: translateY(-30%) rotate(-10deg);
  z-index: 99;
}

.title-image .badge h2 {
  font-size: clamp(1.5rem, 2.2916666667vw, 2.75rem);
}

.five-to-one {
  padding-bottom: 20%;
}

.nineteen-to-five {
  padding-bottom: 26.3157894737%;
}

.nineteen-to-eight {
  padding-bottom: 41.667%;
}

.sixteen-to-nine {
  padding-bottom: 56.25%;
}

.four-to-three {
  padding-bottom: 75%;
}

.three-to-four {
  padding-bottom: 133.3333333333%;
}

.text-bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.475rem, 2.3958333333vw, 2.875rem);
  line-height: clamp(1.575rem, 2.6145833333vw, 3.1375rem);
  font-weight: 700;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.2s ease;
  overflow: hidden;
  background-color: #007BFF;
  color: white;
}

.text-bubble.text-size-medium {
  font-size: clamp(1.97rem, 3.1916666667vw, 3.83rem);
  line-height: clamp(2.17rem, 3.375vw, 4.05rem);
}

.text-bubble.text-size-large {
  font-size: clamp(2.95rem, 4.7916666667vw, 5.75rem);
  line-height: clamp(3.25rem, 5.0625vw, 6.075rem);
}

.text-bubble.center {
  margin-inline: auto;
}

.text-bubble.right {
  margin-left: auto;
}

.text-bubble:hover {
  transform: scale(1.04);
  color: white;
}

.text-bubble.has-hover-image .hover-image {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.text-bubble.has-hover-image .hover-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.text-bubble.has-hover-image:hover .hover-image {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.text-bubble.image-prio {
  background-color: transparent;
  color: transparent;
}

.text-bubble.image-prio .hover-image {
  opacity: 1;
}

.text-bubble.image-prio:hover {
  color: inherit;
  background-color: var(--hover-bg, #007BFF);
}

.text-bubble.image-prio:hover .hover-image {
  opacity: 0;
}

.timeline {
  position: relative;
  max-width: 92%;
  margin: 3rem auto;
}

@media screen and (min-width: 45em) {
  .timeline {
    max-width: 80%;
  }
}
.timeline__line {
  content: "";
  position: absolute;
  width: 0.25rem;
  background-color: hsl(212, 55%, 35%);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.125rem;
}

.timeline__event {
  position: relative;
  width: 50%;
  padding: 1.25rem;
  box-sizing: border-box;
}

.timeline__event > * + * {
  margin-top: 1rem;
}

.timeline__event h2, .timeline__event .heading-2 {
  font-size: clamp(1.15rem, 1.6666666667vw, 2rem);
  color: hsl(212, 55%, 35%);
  font-weight: 700;
  text-transform: normal;
  font-family: "peridot-pe-variable", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

.timeline__event:not(:first-child) {
  margin-top: -3rem;
}

@media screen and (min-width: 45em) {
  .timeline__event:not(:first-child) {
    margin-top: -8rem;
  }
}
.timeline__event img {
  width: 100%;
  border-radius: 0.3125rem;
}

.timeline__event-content {
  background: white;
  padding: 1.25rem;
  border: 1px solid hsl(212, 55%, 35%);
}

.timeline__event-content > * + * {
  margin-top: 1rem;
}

.timeline__event--left {
  left: 0;
  text-align: right;
  transform: translateY(-1.5rem);
}

.timeline__event--right {
  left: 50%;
  text-align: left;
}

.timeline__event::after {
  content: "";
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: white;
  border: 0.1875rem solid hsl(212, 55%, 35%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.timeline__event--left::after {
  left: 100%;
}

.timeline__event--right::after {
  left: 0;
}

.timeline__year {
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  font-size: clamp(1.15rem, 1.125vw, 1.35rem);
  font-weight: bold;
  background: hsl(212, 55%, 35%);
  color: white;
  padding: 0.3125rem 0.625rem;
  display: flex;
  align-items: center;
  z-index: 9;
}

.timeline__year::before {
  position: absolute;
  content: "";
  display: block;
  width: 1rem;
  right: -1rem;
  height: 0.25rem;
  background: hsl(212, 55%, 35%);
}

.timeline__event--left .timeline__year {
  right: auto;
  transform: translate(-100%, -50%);
}

@media screen and (min-width: 45em) {
  .timeline__event--left .timeline__year {
    right: -1rem;
    transform: translate(100%, -50%);
  }
}
.timeline__event--left .timeline__year::before {
  left: auto;
}

@media screen and (min-width: 45em) {
  .timeline__event--left .timeline__year::before {
    left: -1rem;
    margin-right: 0;
  }
}
.timeline__event--right .timeline__year {
  left: -1rem;
}

@media screen and (max-width: 37.5rem) {
  .timeline__line {
    left: 1.25rem;
  }
  .timeline__event {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 3.125rem;
  }
  .timeline__event::after {
    left: 1.25rem;
  }
  .timeline__year {
    left: 2.5rem !important;
  }
}
.timeline-filter {
  margin-bottom: 10rem;
  text-align: center;
}

.timeline-filter label {
  margin-right: 10px;
  font-weight: bold;
}

.timeline-filter input {
  width: 100px;
  padding: 5px;
  margin-right: 20px;
}

.timeline-filter button {
  padding: 8px 16px;
  background-color: hsl(212, 55%, 35%);
  color: white;
  border: none;
  cursor: pointer;
}

.timeline-filter button:hover {
  background-color: hsl(212, 55%, 35%);
  opacity: 0.8;
}

.flex-dealer {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #D3ECFC;
  padding: 2rem;
  margin: clamp(2.0275rem, 2.6041666667vw, 3.125rem) 0;
  color: hsl(212, 55%, 35%);
}

.flex-dealer h2 {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  height: 1.4375rem;
}

.flex-dealer h2:before {
  content: "";
  display: inline-block;
  width: 1.1875rem;
  height: 1.4375rem;
  margin-right: 0.35rem;
  background: linear-gradient(to right, #F8E816, #EE7F4B);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.flex-dealer button, .flex-dealer input, .flex-dealer select {
  padding: 0.35rem;
  height: 2.25rem;
  border: none;
}

.flex-dealer .btn {
  background-color: #EE7F4B;
  color: white;
  border: 0;
  font-weight: bold;
}

.address-entry {
  border-left: 1px solid #EE7F4B;
  padding-left: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.tabs {
  --clr-jaffa: #EE7F4B;
  --clr-light-blue: #D3ECFC;
  width: 100%;
  margin: 2rem auto;
  background-color: #fff;
  overflow: hidden;
}

.tab-navigation {
  display: flex;
  border-bottom: 2px solid var(--clr-jaffa);
  gap: clamp(0.25rem, 0.8333333333vw, 1rem);
}

.tab-btn {
  flex: 1;
  padding: clamp(0.35rem, 0.8333333333vw, 1rem);
  text-align: center;
  background-color: var(--clr-light-blue);
  color: #4CB2F2;
  font-size: clamp(0.9rem, 1.6666666667vw, 2rem);
  line-height: 120%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-btn.active {
  background-color: var(--clr-jaffa);
  color: #fff;
  font-weight: bold;
}

.tab-btn:hover {
  background-color: #ff884d;
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-header {
  background-color: var(--clr-jaffa); /* Oranger Hintergrund */
  padding: 1rem;
}

.tab-header .categories {
  display: flex;
  gap: 1rem;
  padding-inline: clamp(0.25rem, 1.6666666667vw, 2rem);
  flex-wrap: wrap;
  color: #fff; /* Weißer Text */
}

.tab-header .categories span {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.4166666667vw, 0.5rem); /* Abstand zwischen Punkt und Text */
  font-size: clamp(1rem, 1.375vw, 1.65rem);
}

.tab-header .categories span::before {
  content: "●";
  display: inline-block;
  background-color: #4CB2F2; /* Blaue Hintergrundfarbe */
  color: transparent; /* Versteckt den Text */
  width: 1rem; /* Größe des Kreises */
  height: 1rem; /* Größe des Kreises */
  border-radius: 50%; /* Rund machen */
  border: 1px solid #fff; /* Weißer Rand */
  margin-right: 0.5rem; /* Platz zwischen Punkt und Text */
}

.tab-content {
  border-bottom: 1px solid hsl(212, 55%, 35%);
  border-left: 1px solid hsl(212, 55%, 35%);
  border-right: 1px solid hsl(212, 55%, 35%);
}

.tab-body {
  margin-top: 1rem;
  padding-inline: clamp(1rem, 1.6666666667vw, 2rem);
}

.tab-body h3 {
  color: var(--clr-jaffa);
  margin: 1rem 0 0.5rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1rem;
  margin-block: 1rem;
}

@media screen and (min-width: 65em) {
  .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
}
.image-gallery__item {
  position: relative;
  padding: clamp(0.5rem, 0.6666666667vw, 0.8rem);
  border: 1px solid hsl(212, 55%, 35%);
}

.image-gallery__item:hover .image-gallery__caption {
  opacity: 1;
}

.image-gallery__item img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.image-gallery__caption {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  padding: 1rem;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.6rem, 0.6666666667vw, 0.8rem);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.86);
}

/* Container für die Seitenleiste */
.sidebar {
  display: flex;
  position: fixed;
  z-index: 1000;
  gap: 1rem;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 0.5rem 0;
  border-top: 1px solid #c6c9cd;
  pointer-events: none;
}

@media screen and (min-width: 45em) {
  .sidebar {
    top: 30%;
    left: 0;
    right: auto;
    width: auto;
    justify-content: flex-start;
    padding: 0;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
  }
}
/* Einzelne Kachel */
.sidebar-button {
  width: 2.875rem;
  height: 2.875rem;
  background-color: white;
  border: 1px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

@media screen and (min-width: 45em) {
  .sidebar-button {
    width: clamp(2.875rem, 3.6458333333vw, 4.375rem);
    height: clamp(2.875rem, 3.6458333333vw, 4.375rem);
  }
}
/* SVG Icons */
.sidebar-button svg {
  height: clamp(1.65rem, 1.6666666667vw, 2rem);
  width: auto;
  fill: #1d4a7a; /* Farbcode für das Blau der Icons */
}

/* Optional: Hover-Effekt */
.sidebar-button:hover {
  background-color: #f0f0f0;
}

.book-promo {
  display: flex;
  background-color: #e0f0fc;
  padding: var(--frame-size, 2rem);
  flex-direction: column;
}

@media screen and (min-width: 45em) {
  .book-promo {
    flex-direction: row;
  }
}
.book-promo--frame-1 {
  --frame-size: clamp(1rem, 1.25vw, 1.5rem);
}

.book-promo--frame-2 {
  --frame-size: clamp(2rem, 2.5vw, 3rem);
}

.book-promo--frame-3 {
  --frame-size: clamp(3rem, 3.75vw, 4.5rem);
}

.book-promo--frame-4 {
  --frame-size: clamp(4rem, 5vw, 6rem);
}

@media screen and (min-width: 45em) {
  .book-promo__image {
    flex: 1 1 40%;
    max-width: 40%;
  }
}
.book-promo__image img {
  width: 100%;
  height: auto;
}

.book-promo__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  padding: clamp(2rem, 2.5vw, 3rem);
  font-size: clamp(1.5rem, 1.6666666667vw, 2rem);
}

.book-promo__text {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.book-promo__downloads {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.book-promo__download {
  margin: 0.3rem 0;
}

.book-promo__link {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-left: clamp(2.2rem, 2.25vw, 2.7rem);
  color: hsl(212, 55%, 35%);
  display: inline-block;
}

.book-promo__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: clamp(1.6rem, 1.8333333333vw, 2.2rem);
  height: clamp(1.6rem, 1.8333333333vw, 2.2rem);
  background-image: url("../img/download-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* styles.css */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup--warning {
  display: none;
}

.popup--active {
  display: flex;
}

.popup__content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup__title {
  margin: 0 0 10px;
  font-size: 24px;
  color: #d32f2f;
}

.popup__message {
  margin: 0 0 20px;
  font-size: 16px;
  color: #333;
}

.popup__button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.button--primary {
  background-color: #d32f2f;
  color: #fff;
}

.button--secondary {
  background-color: #757575;
  color: #fff;
}

.form {
  margin: auto;
  color: hsl(212, 55%, 35%);
}

.form__text {
  padding-bottom: 0.5rem;
}

.form__label {
  display: block;
}

.form__field {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.form__actions {
  padding-block: 2rem;
}

.form__table {
  width: 100%;
  padding-bottom: 0.5rem;
}

.form__cell--header {
  padding: 0.5rem;
  background-color: hsl(19, 83%, 61%);
  color: hsl(0, 0%, 100%);
  text-transform: uppercase;
  text-align: center;
  border-top: 1rem solid white;
  border-bottom: 1rem solid white;
}

.form__cell--spacer {
  padding: 0.5rem;
}

.form__cell--input {
  vertical-align: top;
  background-color: hsl(0, 0%, 100%);
  color: hsl(212, 55%, 35%);
}

.form__cell--label {
  color: hsl(212, 55%, 35%);
  width: 300px;
}

.form__cell--grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 87em) {
  .form__cell--grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form input, .form select {
  border: 0;
  background-color: #D3ECFC;
  color: hsl(212, 55%, 35%);
  margin: 0.15rem 0.15rem;
  padding: 0.3rem;
  line-height: 1.25rem;
}

.form input[size="20"] {
  min-width: 50%;
}

.form__product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.form__tables-wrapper {
  display: grid;
  grid-template-columns: 1fr; /* Drei Spalten mit gleicher Breite */
  gap: 20px; /* Abstand zwischen den Spalten */
  margin: 0 auto; /* Zentriert das Layout */
}

@media screen and (min-width: 45em) {
  .form__tables-wrapper {
    grid-template-columns: 1fr 1fr 1fr; /* Drei Spalten mit gleicher Breite */
  }
}
@media screen and (min-width: 87em) {
  .form__tables-wrapper {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.form__table-container {
  width: 100%;
}

.form__table {
  width: 100%;
  border-collapse: collapse;
}

body.woocommerce main,
body.woocommerce-page main {
  --max-width: min(90vw, 1600px);
  --min-margin-inline: clamp(0.1rem, 2.6041666667vw, 3.125rem);
  width: min(100% - var(--min-margin-inline), var(--max-width));
  margin-inline: auto;
}

body.woocommerce main--title,
body.woocommerce-page main--title {
  width: 100%;
}

@media screen and (min-width: 45em) {
  body.woocommerce main--title,
  body.woocommerce-page main--title {
    width: min(100% - var(--min-margin-inline), var(--max-width));
  }
}
.woocommerce select, .woocommerce input[type=text], .woocommerce input[type=email], .woocommerce input[type=tel], .woocommerce input[type=number], .woocommerce input[type=password], .woocommerce input[type=search], .woocommerce input[type=url] {
  border: 1px solid hsl(19, 83%, 61%);
  color: hsl(212, 55%, 35%);
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0;
}

.woocommerce .product .variations .label {
  display: none;
}

.woocommerce .product .price {
  color: hsl(212, 55%, 35%) !important;
  font-size: clamp(1.45rem, 1.6666666667vw, 2rem) !important;
  font-weight: bold;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1.5rem;
  margin-block: clamp(3.28125rem, 3.90625vw, 4.6875rem);
  max-width: 100%;
  margin-inline: clamp(5.46875rem, 6.5104166667vw, 7.8125rem);
}

@media (max-width: 768px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }
}
.featured-products__left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  width: 100%;
}

.featured-products__left .product-image img {
  aspect-ratio: 1/1;
}

.featured-products__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  min-height: 0;
  max-height: 100%;
}

.featured-products__large {
  grid-column: 1/3;
}

.featured-products__large img {
  aspect-ratio: 2.05/1;
}

.featured-products__small {
  width: 100%;
}

.featured-products__small img {
  aspect-ratio: 1/1;
}

.product-image {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

.product-image:hover {
  transform: scale(1.03);
}

.product-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid hsl(212, 55%, 35%);
}

.tag {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  padding: 1.5rem;
  transform: rotate(-5deg) translateY(-100%);
  aspect-ratio: 1/1;
  background: hsl(0, 0%, 100%);
  color: hsl(212, 55%, 35%);
  font-size: clamp(1rem, 1.6666666667vw, 2rem);
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tag--yellow {
  transform: rotate(5deg) translateY(-48%);
  left: auto;
  right: 1.5rem;
  background-color: hsl(56, 94%, 53%);
  color: hsl(212, 55%, 35%);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(0.75rem, 1.0416666667vw, 1.25rem);
  margin-inline: 0;
}

@media screen and (min-width: 45em) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: clamp(5.46875rem, 6.5104166667vw, 7.8125rem);
  }
}
@media screen and (min-width: 65em) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.category-tile {
  background-color: #29588C;
  text-align: center;
  padding-block: clamp(2rem, 2.7083333333vw, 3.25rem);
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(12rem, 12.5vw, 15rem);
  border-radius: 0;
}

.category-tile:hover {
  transform: scale(1.03);
}

.category-tile__link {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.category-tile__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: auto;
  height: auto;
  max-height: clamp(5.9375rem, 6.6145833333vw, 7.9375rem);
  overflow: hidden;
  flex-grow: 1;
}

.category-tile__image img {
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

.category-tile__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.category-tile__title h3 {
  font-size: clamp(1.275rem, 1.3125vw, 1.575rem);
  font-weight: bold;
  margin-top: 2rem;
  min-height: 2em;
  padding-inline: clamp(1.25rem, 1.6666666667vw, 2rem);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: white;
}

.woocommerce-variation-price .price {
  display: block !important;
}

/* Produktbild-Spalte schmaler machen (Classic Themes häufig) */
.single-product {
  /* Select visuell verstecken, aber im DOM lassen */
  /* Select verstecken, aber im DOM lassen */
}

.single-product div.product {
  padding-block: 2rem;
}

.single-product div.product .wqm-pricing-table-wrapper {
  clear: both;
  width: 100%;
  padding: 0.75rem 0;
}

.single-product div.product .wqm-pricing-table-wrapper table tr th {
  font-weight: 700;
}

.single-product div.product .wqm-pricing-table-wrapper table tr td {
  background-color: #f4f4f4;
  padding: 0.5rem;
}

.single-product div.product div.images {
  max-width: 480px; /* Wert anpassen */
  width: 38%;
}

.single-product div.product div.summary {
  width: 60%;
}

.single-product div.product .product_title {
  margin-bottom: 2rem;
}

.single-product div.product .wc-gzd-additional-info {
  margin-bottom: 0;
  line-height: 1.2;
}

.single-product div.product .woocommerce-variation-price {
  display: block !important;
}

.single-product div.product .woocommerce-variation-price .price {
  display: inline-block !important;
}

.single-product div.product .price.variation_gzd_modified {
  display: none !important;
}

.single-product div.product .wc-gzd-additional-info:not(:has(~ .wc-gzd-additional-info)) {
  margin-bottom: 1rem;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs {
  padding: 0;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs::before {
  display: none;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs li {
  border: none;
  background: none;
  padding-left: 0;
  padding-right: 3rem;
  margin: 0;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs li::after {
  display: none;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs li.active {
  color: hsl(19, 83%, 61%);
  font-weight: 700;
}

.single-product div.product .woocommerce-tabs .panel h2 {
  font-size: clamp(1.1rem, 1.25vw, 1.5rem);
  margin-block: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.single-product div.product .woocommerce-tabs .panel .shop_attributes tbody th {
  text-align: left;
  border-bottom: 0;
}

.single-product div.product .woocommerce-tabs .panel .shop_attributes tbody td {
  font-style: normal;
  border-bottom: 0;
}

.single-product div.product .related {
  padding-block: 2rem;
}

.single-product div.product .related h2 {
  font-size: clamp(1.1rem, 1.25vw, 1.5rem);
  margin-block: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.single-product div.product form.cart .button {
  background-color: hsl(19, 83%, 61%);
  border-radius: 0;
  margin: 0.25rem 0;
}

.single-product .legal-price-info {
  display: none;
}

.single-product .unit-price {
  font-size: 1.2rem;
  font-weight: 300;
}

.single-product .gebinde-buttons, .single-product .gebinde-related {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.single-product .gebinde-buttons .gebinde-button, .single-product .gebinde-related .gebinde-button {
  border: 1px solid hsl(19, 83%, 61%);
  color: hsl(212, 55%, 35%);
  background: transparent;
  padding: 0.75rem 1rem !important;
  border-radius: 0;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.single-product .gebinde-buttons .gebinde-button:hover, .single-product .gebinde-related .gebinde-button:hover {
  background: rgba(238, 125, 73, 0.08);
}

.single-product .gebinde-buttons .gebinde-button.is-active, .single-product .gebinde-related .gebinde-button.is-active {
  background: hsl(19, 83%, 61%);
  color: #fff;
}

.single-product .gebinde-buttons .gebinde-button:disabled, .single-product .gebinde-buttons .gebinde-button.is-disabled, .single-product .gebinde-related .gebinde-button:disabled, .single-product .gebinde-related .gebinde-button.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.single-product .variations select[name=attribute_pa_gebinde],
.single-product .variations select[name=attribute_gebinde] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.single-product .farbe-dropdown {
  position: relative;
  display: inline-block;
  min-width: 260px;
  margin: 0 1rem 1rem 0;
}

.single-product .farbe-dropdown .farbe-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid hsl(19, 83%, 61%);
  color: hsl(212, 55%, 35%);
  background: #fff;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.single-product .farbe-dropdown .farbe-trigger .swatch {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  flex: 0 0 auto;
  background: transparent;
}

.single-product .farbe-dropdown .farbe-trigger .label {
  flex: 1 1 auto;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: hsl(212, 55%, 35%);
  display: block;
  padding: 0;
  margin: 0;
  font-size: clamp(0.92rem, 0.9375vw, 1.125rem);
}

.single-product .farbe-dropdown .farbe-trigger .chevron {
  flex: 0 0 auto;
  opacity: 0.7;
}

.single-product .farbe-dropdown .farbe-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(238, 125, 73, 0.25);
}

.single-product .farbe-dropdown .farbe-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border: 1px solid hsl(19, 83%, 61%);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  max-height: 280px;
  overflow: auto;
  display: none;
}

.single-product .farbe-dropdown .farbe-menu li {
  margin: 0;
  padding: 0;
}

.single-product .farbe-dropdown .farbe-menu li button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: hsl(212, 55%, 35%);
}

.single-product .farbe-dropdown .farbe-menu li button .swatch {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  flex: 0 0 auto;
}

.single-product .farbe-dropdown .farbe-menu li button .label {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: hsl(212, 55%, 35%);
  display: block;
  padding: 0;
  margin: 0;
  font-size: clamp(0.92rem, 0.9375vw, 1.125rem);
}

.single-product .farbe-dropdown .farbe-menu li button:hover {
  background: rgba(238, 125, 73, 0.08);
}

.single-product .farbe-dropdown .farbe-menu li button.is-active {
  background: rgba(238, 125, 73, 0.16);
  font-weight: 600;
}

.single-product .farbe-dropdown .farbe-menu li button.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.single-product .farbe-dropdown.is-open .farbe-menu {
  display: block;
}

.single-product .variations select[name=attribute_pa_farbe],
.single-product .variations select[name=attribute_farbe] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.category-container, .single-product {
  padding-block: clamp(2.0275rem, 2.6041666667vw, 3.125rem);
}

.category-container .category-header, .single-product .category-header {
  text-align: left;
  margin-bottom: clamp(1.5rem, 2.0833333333vw, 2.5rem);
}

.category-container .category-header h1, .single-product .category-header h1 {
  font-size: clamp(1.5rem, 1.6666666667vw, 2rem);
}

.category-container .category-header .category-description, .single-product .category-header .category-description {
  font-size: clamp(0.875rem, 0.8333333333vw, 1rem);
  color: #666;
  max-width: 50rem;
  margin: 0 auto;
}

.category-container .product-list, .single-product .product-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.0416666667vw, 1.25rem);
}

.category-container .product-item, .single-product .product-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.75rem, 1.875vw, 2.25rem);
  padding-block: clamp(0.75rem, 1.0416666667vw, 1.25rem);
  border-bottom: 0.0625rem solid hsl(19, 83%, 61%);
}

@media (max-width: 48rem) {
  .category-container .product-item, .single-product .product-item {
    flex-direction: column;
  }
}
.category-container .product-item__image, .single-product .product-item__image {
  flex: 0 0 clamp(6.25rem, 7.8125vw, 9.375rem);
}

.category-container .product-item__image img, .single-product .product-item__image img {
  width: 100%;
  height: auto;
}

.category-container .product-item__info, .single-product .product-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-container .product-item__title, .single-product .product-item__title {
  font-size: clamp(1.25rem, 1.25vw, 1.5rem);
  margin: 0 0 clamp(0.5rem, 0.5208333333vw, 0.625rem);
}

.category-container .product-item__description, .single-product .product-item__description {
  font-size: clamp(0.875rem, 0.8333333333vw, 1rem);
  color: #333;
  margin-bottom: clamp(0.625rem, 0.78125vw, 0.9375rem);
}

.category-container .product-item__description ul, .single-product .product-item__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 0.75rem;
}

.category-container .product-item__description ul li, .single-product .product-item__description ul li {
  position: relative;
  padding-left: clamp(1.25rem, 1.25vw, 1.5rem);
}

.category-container .product-item__description ul li::before, .single-product .product-item__description ul li::before {
  content: "✔";
  color: #29588C;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.category-container .product-item__content, .single-product .product-item__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .category-container .product-item__content, .single-product .product-item__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.category-container .product-item__downloads, .single-product .product-item__downloads {
  flex: 1;
  padding: clamp(0.5rem, 0.5208333333vw, 0.625rem);
}

.category-container .product-item__downloads h3, .single-product .product-item__downloads h3 {
  font-size: clamp(1rem, 1.0416666667vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 0.5208333333vw, 0.625rem);
}

.category-container .product-item__downloads ul, .single-product .product-item__downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-container .product-item__downloads ul li, .single-product .product-item__downloads ul li {
  margin-bottom: clamp(0.25rem, 0.2604166667vw, 0.3125rem);
}

.category-container .product-item__actions, .single-product .product-item__actions {
  flex-shrink: 0;
}

/* === Classic Cart im Block-Look === */
.woocommerce-cart .woocommerce-cart-form, .woocommerce-cart .cart-collaterals {
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce-cart table.shop_table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0 12px; /* “cards” spacing */
}

.woocommerce-cart table.shop_table thead th {
  border: 0;
  padding: 12px 14px;
  font-weight: 600;
}

.woocommerce-cart table.shop_table tbody tr {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce-cart table.shop_table td {
  border: 0 !important;
  padding: 14px;
  vertical-align: middle;
}

.woocommerce-cart td.product-name a {
  text-decoration: none;
}

.woocommerce-cart td.product-name img {
  width: 64px;
  height: auto;
  border-radius: 10px;
  margin-right: 12px;
}

.woocommerce-cart td.product-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.woocommerce-cart td.product-remove a.remove {
  width: 34px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  border-radius: 999px;
}

/* Actions Row (Update + Buttons) */
.woocommerce-cart .actions {
  background: transparent !important;
  padding-top: 18px !important;
}

/* Alle WooCommerce Buttons wie .btn stylen */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.checkout-button,
.woocommerce button.single_add_to_cart_button {
  all: unset; /* optional – nur wenn dein .btn komplett neu aufsetzt */
  font-size: inherit;
  color: hsl(212, 55%, 35%) !important;
  background: transparent !important;
  border: 0.08rem solid hsl(19, 83%, 61%);
  padding: 0.5em 1em;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}

/* Hover */
.woocommerce a.button:not(.disabled):hover,
.woocommerce button.button:not(.disabled):hover {
  background: hsl(19, 83%, 61%) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Disabled */
.woocommerce .button:disabled,
.woocommerce .button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.title {
  background-image: url("../img/title-color.webp");
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 11/5;
  background-size: 250%;
}
@media (min-width: 767px) {
  .title {
    background-size: cover;
  }
}

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