@charset "UTF-8";
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v12-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+ */
      url("../fonts/inter-v12-latin-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v12-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+ */
      url("../fonts/inter-v12-latin-700.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/plus-jakarta-sans-v7-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+ */
      url("../fonts/plus-jakarta-sans-v7-latin-700.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body,
html {
  background-color: #f8f9fa;
  text-align: center;
  font-family: Inter;
  margin: 0;
  padding: 0;
  line-height: 156%;
}
.wrapper-title {
  color: #ebefff;
  background: #18272a;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 40px;
  background: linear-gradient(117.93deg, #18272a 0%, #0c181b 98.99%);
}
.content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.wrapper {
  height: 100vh;
  min-height: 800px;
  max-height: 900px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 40px;
}
.hidden {
  display: none; visibility: hidden;
}
.centered {
  text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Plus Jakarta Sans;
}
h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
}
h3 {
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  margin:0px;
  padding: 0px;;
}
.title {
  margin-bottom: 40px;
  width: 100%;
  max-width: 400px;
}
.button {
  margin: 0 auto;
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  width: fit-content;
  background-image: url('../assets/scroll-main.svg');
  background-repeat: no-repeat;
  background-size: 56px;
  background-position: 50% 50%;
  height: 56px;
  width: 56px;
  border-radius: 900px;
  padding: 0px;
  transition: background-color 0.3s ease-in-out; /* Übergangsanimation für die Hintergrundfarbe */
}
.button:hover{background-color: #312E81;
  background-image: url('../assets/scroll-light.svg');}
.cta {
  margin: 0 auto;
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background: #16B364;
/* elevation-1 */

box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
border-radius: 12px;
justify-content: center;
align-items: center;
padding: 16px 24px;
color: #ffffff;
text-decoration: none;
gap: 8px;
  transition: background-color 0.3s ease-in-out; /* Übergangsanimation für die Hintergrundfarbe */
}
.cta:hover{background: #06984E;}
.container {
  display: flex;
  align-items: center; /* Zentrieren Sie den Text und das Bild vertikal */
  justify-content: center;
  flex-direction: row-reverse;
}

.container .image {
  width: 50%; /* Setzen Sie die Breite des Bildes auf 50% */
  /* max-width: 600px; */
  height: auto; /* Skalieren Sie die Höhe des Bildes automatisch */
  margin-left: 32px;
}

.container .teaser {
  width: 450px;
  margin: 0; /* Entfernen Sie den Standardabstand des Absatzes */
}
.subline{font-size: 10px; color:#A8AEAF; margin-top: 120px;text-transform: uppercase;letter-spacing: 4px;}
.fixed-button {
  position: fixed;
  top: 0;
  right: 0;
  margin: 16px;
  color: #06984E;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (max-width: 780px) {
  .wrapper-title{    padding: 24px;}
  .wrapper{    justify-content: flex-start;padding: 24px;}
  .title {
    margin-bottom: 0px;
    width: 100%;
    max-width: 240px;
  }
  h3 {
    font-size: 30px;
  }
  .container {
    flex-direction: column;
  }
  .container .image {
    width: 100%;
    height: auto; /* Skalieren Sie die Höhe des Bildes automatisch */
    margin-left: 0px;
    margin-right: 0px;
  }
  .container .teaser {
    width: 100%;
  }
}
