/* 1. Die normale (aufrechte) Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* 2. Die kursive Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable-Italic.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  /* Wichtig: Hier auf italic setzen */
  font-display: swap;
}
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
h4 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
body ul {
  padding: 0 18px;
}
body ul li {
  font-weight: 400;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-width: fit-content;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  margin: 0px;
  line-height: normal !important;
  transition: color 0.25s ease-out, background 0.25s ease-out, border-color 0.25s ease-out;
}
.button.light {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.button.dark {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}
.button.dark:hover {
  color: #000;
}
.button.transparent {
  background: transparent;
  color: #000;
  border-color: #000;
  border-width: 2px;
}
.button.transparent:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .button {
    padding: 12px 22px;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .button {
    padding: 11px 22px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 576px) {
  .button {
    padding: 11px 17px;
    font-size: 0.85rem;
  }
}
@media only screen and (max-width: 480px) {
  .button {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .buttons .button {
    min-width: auto;
    width: auto;
    text-align: left;
    align-self: flex-start;
  }
}
.text-with-boxes-section .slider-container {
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 40px 0;
}
.text-with-boxes-section .slider-container .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: visible;
  padding-left: 0;
  padding-right: 0;
}
.text-with-boxes-section .slider-container .swiper-wrapper {
  display: flex;
  align-items: center;
}
.text-with-boxes-section .slider-container .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 50vw;
  max-width: 1200px;
  height: 600px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.text-with-boxes-section .slider-container .swiper-slide .produkt-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.text-with-boxes-section .slider-container .slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.text-with-boxes-section .slider-container .slide-material {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.text-with-boxes-section .slider-container .slide-material .slide-image {
  flex: 1;
  min-height: calc(100% - 60px);
}
.text-with-boxes-section .slider-container .slide-material .slide-title {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border-top: none;
  box-sizing: border-box;
}
.text-with-boxes-section .slider-container .slide-material .slide-title p {
  margin: 0;
  line-height: 1.4;
}
.text-with-boxes-section .slider-container .slide-content {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #fff;
  overflow: hidden;
}
.text-with-boxes-section .slider-container .slide-content p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #333;
  font-size: 1.5rem;
}
.text-with-boxes-section .slider-container .slide-content p:last-child {
  margin-bottom: 0;
}
.text-with-boxes-section .slider-container .swiper-button-next,
.text-with-boxes-section .slider-container .swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: #000 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  margin-top: -22px !important;
  z-index: 10 !important;
  position: absolute !important;
  top: 50% !important;
}
.text-with-boxes-section .slider-container .swiper-button-next:after,
.text-with-boxes-section .slider-container .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold !important;
  color: #000 !important;
}
.text-with-boxes-section .slider-container .swiper-button-next:hover,
.text-with-boxes-section .slider-container .swiper-button-prev:hover {
  background: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.05) !important;
}
.text-with-boxes-section .slider-container .swiper-button-next {
  right: 20px !important;
  pointer-events: auto !important;
}
.text-with-boxes-section .slider-container .swiper-button-prev {
  left: 20px !important;
  pointer-events: auto !important;
}
.text-with-boxes-section .slider-container .swiper-button-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
@media (max-width: 768px) {
  .text-with-boxes-section .slider-container .swiper-slide {
    width: 80vw;
    height: 320px;
  }
  .text-with-boxes-section .slider-container .slide-material .slide-image {
    height: calc(100% - 50px);
  }
  .text-with-boxes-section .slider-container .slide-material .slide-title {
    height: 50px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .text-with-boxes-section .slider-container .slide-content {
    padding: 1.5rem;
  }
  .text-with-boxes-section .slider-container .slide-content p {
    font-size: 1.3rem;
  }
  .text-with-boxes-section .slider-container .swiper-button-next,
  .text-with-boxes-section .slider-container .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    margin-top: -18px !important;
  }
  .text-with-boxes-section .slider-container .swiper-button-next:after,
  .text-with-boxes-section .slider-container .swiper-button-prev:after {
    font-size: 14px !important;
  }
  .text-with-boxes-section .slider-container .swiper-button-next {
    right: 15px !important;
  }
  .text-with-boxes-section .slider-container .swiper-button-prev {
    left: 15px !important;
  }
}
@media (max-width: 480px) {
  .text-with-boxes-section .slider-container .swiper-slide {
    width: 80vw;
    height: 280px;
  }
  .text-with-boxes-section .slider-container .slide-material .slide-image {
    height: calc(100% - 45px);
  }
  .text-with-boxes-section .slider-container .slide-material .slide-title {
    height: 45px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .text-with-boxes-section .slider-container .slide-content {
    padding: 1rem;
  }
  .text-with-boxes-section .slider-container .slide-content p {
    font-size: 1.1rem;
  }
  .text-with-boxes-section .slider-container .swiper-button-next {
    right: 10px !important;
  }
  .text-with-boxes-section .slider-container .swiper-button-prev {
    left: 10px !important;
  }
}
.text-with-boxes-section {
  display: grid;
  justify-content: center;
}
.text-with-boxes-section .title-wrapper {
  max-width: 1100px;
  width: 100%;
}
.text-with-boxes-section .title-wrapper .text {
  max-width: 1100px;
  width: 100%;
}
.text-with-boxes-section .title-wrapper .text p {
  font-size: 18px;
  margin: 0;
}
.text-with-boxes-section .title {
  padding-top: 5rem;
  margin-bottom: 1rem;
  color: #AAB4C0;
}
.text-with-boxes-section .textboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2rem;
  column-gap: 4rem;
  max-width: 1100px;
  margin: 3rem 0rem 8rem 0rem;
}
.text-with-boxes-section .textboxes .closing-text {
  grid-column: 1 / -1;
  margin-top: 2.3rem;
}
.text-with-boxes-section .textbox {
  display: grid;
  grid-template-rows: none;
  grid-row: auto;
  min-width: 0;
  row-gap: 0rem;
  align-content: start;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  margin-top: 2rem;
  border-radius: 12px;
}
.text-with-boxes-section .textbox h2 {
  margin: 0 0 1rem 0;
  font-weight: 300;
}
.text-with-boxes-section .textbox .textbox-title,
.text-with-boxes-section .textbox .textbox-icon,
.text-with-boxes-section .textbox .textbox-text {
  margin: 0rem 0rem 1rem 0rem;
  min-width: 0;
}
.text-with-boxes-section .textbox .textbox-title h1,
.text-with-boxes-section .textbox .textbox-title h2,
.text-with-boxes-section .textbox .textbox-title p {
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.text-with-boxes-section .textbox .textbox-title:has(p:empty),
.text-with-boxes-section .textbox .textbox-title:has(h2:empty) {
  display: none;
  margin: 0;
}
.text-with-boxes-section .textbox .textbox-text {
  line-height: 1.6;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.text-with-boxes-section .textbox .textbox-text p {
  margin: 0;
  font-size: 18px;
}
.text-with-boxes-section .textbox .textbox-text h2 {
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  hyphens: auto;
}
.text-with-boxes-section .textbox .textbox-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.75rem;
}
.text-with-boxes-section.light-with-boxes {
  background: #e6e6e6;
}
.text-with-boxes-section.light-with-boxes h1,
.text-with-boxes-section.light-with-boxes h2,
.text-with-boxes-section.light-with-boxes h3,
.text-with-boxes-section.light-with-boxes p,
.text-with-boxes-section.light-with-boxes .title,
.text-with-boxes-section.light-with-boxes .text {
  color: #000;
}
.text-with-boxes-section.light-with-boxes .title-wrapper {
  padding-top: 0rem;
}
.text-with-boxes-section.light-with-boxes .title {
  padding-top: 5rem;
}
.text-with-boxes-section.light-with-boxes .textbox {
  border: 1px solid white;
  background: white;
}
.text-with-boxes-section.light-with-boxes .button {
  background: #e6e6e6;
  color: #000;
}
.text-with-boxes-section.light-with-boxes .closing-text {
  color: #000;
}
.text-with-boxes-section.light-without-boxes {
  background: #fff;
}
.text-with-boxes-section.light-without-boxes h1,
.text-with-boxes-section.light-without-boxes h2,
.text-with-boxes-section.light-without-boxes h3,
.text-with-boxes-section.light-without-boxes p,
.text-with-boxes-section.light-without-boxes .title,
.text-with-boxes-section.light-without-boxes .text {
  color: #000;
}
.text-with-boxes-section.light-without-boxes .textboxes {
  row-gap: 0rem;
}
.text-with-boxes-section.light-without-boxes .textbox {
  padding: 0.5rem 1.5rem 0.5rem 0rem;
}
.text-with-boxes-section.light-without-boxes .button {
  background: #e6e6e6;
  color: #000;
}
.text-with-boxes-section.light-without-boxes .closing-text {
  color: #000;
}
.text-with-boxes-section.dark {
  background: #000;
}
.text-with-boxes-section.dark h1,
.text-with-boxes-section.dark h2,
.text-with-boxes-section.dark h3,
.text-with-boxes-section.dark p,
.text-with-boxes-section.dark .text,
.text-with-boxes-section.dark .textbox-text {
  color: #fff;
}
.text-with-boxes-section.dark .title h1 {
  color: #AAB4C0 !important;
}
.text-with-boxes-section.dark .textbox {
  border: 1px solid #343636;
  background: #111111;
}
.text-with-boxes-section.dark .button {
  background: #111111;
  color: #fff;
  border-color: #343636;
}
.text-with-boxes-section.dark .closing-text {
  color: #fff;
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .text-with-boxes-section {
    padding: 0 2rem;
  }
  .text-with-boxes-section .textboxes {
    min-width: fit-content;
    column-gap: 2rem;
    row-gap: 1rem;
    margin-top: 0rem;
  }
  .text-with-boxes-section .textbox {
    grid-template-rows: none;
    grid-row: auto;
  }
  .text-with-boxes-section p {
    font-size: 18px;
  }
  .text-with-boxes-section h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .text-with-boxes-section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .text-with-boxes-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .text-with-boxes-section .title {
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .text-with-boxes-section {
    padding: 0 2rem;
  }
  .text-with-boxes-section .textboxes {
    min-width: fit-content;
    column-gap: 2rem;
    row-gap: 1rem;
    margin-top: 0rem;
    margin-bottom: 4rem;
  }
  .text-with-boxes-section p {
    font-size: 18px;
  }
  .text-with-boxes-section h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .text-with-boxes-section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .text-with-boxes-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .text-with-boxes-section .title {
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .text-with-boxes-section {
    padding: 0 2rem;
  }
  .text-with-boxes-section .textboxes {
    min-width: fit-content;
    column-gap: 2rem;
    row-gap: 1rem;
    margin-top: 0rem;
    margin-bottom: 6rem;
  }
  .text-with-boxes-section p {
    font-size: 18px;
  }
  .text-with-boxes-section h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .text-with-boxes-section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .text-with-boxes-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .text-with-boxes-section .title {
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 576px) {
  .text-with-boxes-section {
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .text-with-boxes-section .textboxes {
    grid-template-columns: 1fr;
    row-gap: 0;
    column-gap: 0;
    margin: 2rem 0 6rem 0;
  }
  .text-with-boxes-section .textbox {
    padding: 0.5rem 1.25rem 1.25rem;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .text-with-boxes-section p {
    font-size: 16px;
  }
  .text-with-boxes-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .text-with-boxes-section h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .text-with-boxes-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .text-with-boxes-section .textbox .textbox-text p,
  .text-with-boxes-section .subtitle p {
    font-size: 16px;
  }
  .text-with-boxes-section .title {
    padding-top: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  .text-with-boxes-section {
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .text-with-boxes-section .textboxes {
    grid-template-columns: 1fr;
    row-gap: 0;
    column-gap: 0;
    margin: 1rem 0 6rem 0;
  }
  .text-with-boxes-section .textbox {
    padding: 0.5rem 1.25rem 1.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    box-sizing: border-box;
    width: 100%;
  }
  .text-with-boxes-section p {
    font-size: 16px;
  }
  .text-with-boxes-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .text-with-boxes-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .text-with-boxes-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .text-with-boxes-section .textbox .textbox-icon img {
    margin-bottom: 0;
  }
  .text-with-boxes-section .textbox .textbox-text p,
  .text-with-boxes-section .subtitle p {
    font-size: 16px;
  }
  .text-with-boxes-section .title {
    padding-top: 4rem;
  }
  .text-with-boxes-section .title h1 {
    word-wrap: break-word;
    hyphens: auto;
  }
}
