/* 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-multiple-images-section {
  position: relative;
  background: #fff;
  min-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-multiple-images-section .text-box {
  background: #e6e6e6;
  border-radius: 12px;
  max-width: 40rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  padding: 2rem 4rem;
  overflow: hidden;
}
.text-multiple-images-section .text-box .title {
  min-height: fit-content;
  max-height: fit-content;
  margin-bottom: 1rem;
}
.text-multiple-images-section .text-box .title h1 {
  font-size: 3rem;
  margin: 0;
  padding-top: 0 !important;
}
.text-multiple-images-section .text-box .text {
  width: 100%;
}
.text-multiple-images-section .text-box .text p {
  font-size: 18px;
}
.text-multiple-images-section .text-box .text li {
  font-size: 18px;
}
.text-multiple-images-section .text-box .buttons {
  display: flex;
}
.text-multiple-images-section .imageTopLeft,
.text-multiple-images-section .imageBottomRight {
  position: absolute;
  z-index: 1;
  display: inline-block;
}
.text-multiple-images-section .imageTopLeft img,
.text-multiple-images-section .imageBottomRight img {
  display: block;
  width: 850px;
  height: auto;
  max-width: 100%;
}
.text-multiple-images-section .imageTopLeft {
  right: calc(50% + (40% / 2) - 445px);
  bottom: calc(50% + (40% / 2) - 400px);
}
.text-multiple-images-section .imageBottomRight {
  left: calc(50% + (40% / 2) - 445px);
  top: calc(50% + (40% / 2) - 400px);
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .text-multiple-images-section {
    min-height: 1000px;
  }
  .text-multiple-images-section .text-box {
    padding: 2rem;
  }
  .text-multiple-images-section .imageTopLeft img,
  .text-multiple-images-section .imageBottomRight img {
    width: 800px;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .text-multiple-images-section {
    min-height: 800px;
    padding: 2rem;
  }
  .text-multiple-images-section .text-box .title h1 {
    font-size: 3rem;
  }
  .text-multiple-images-section .text-box .text p {
    font-size: 18px;
  }
  .text-multiple-images-section .imageTopLeft img,
  .text-multiple-images-section .imageBottomRight img {
    width: 750px;
  }
}
@media only screen and (max-width: 992px) {
  .text-multiple-images-section {
    min-height: auto;
    flex-direction: column;
    padding: 3rem 1rem;
  }
  .text-multiple-images-section .text-box {
    width: 100%;
    padding: 2rem 4rem;
  }
  .text-multiple-images-section .text-box .title {
    margin-bottom: 2rem;
  }
  .text-multiple-images-section .text-box .text p {
    font-size: 18px;
    margin: 0rem;
  }
  .text-multiple-images-section .imageTopLeft,
  .text-multiple-images-section .imageBottomRight {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .text-multiple-images-section .text-box {
    padding: 2rem;
  }
  .text-multiple-images-section .text-box .title h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  .text-multiple-images-section .text-box .text p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .text-multiple-images-section {
    padding: 3rem 1rem;
  }
  .text-multiple-images-section .text-box .title h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  .text-multiple-images-section .text-box .text p {
    font-size: 16px;
  }
}
