@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
#chatbot-wrapper {
  --chat-primary: #E31717;
  --chat-bg: #ffffff;
  --chat-text: #333333;
  --chat-secondary-bg: #f5f5f5;
  --chat-hover: #f0f0f0;
  --chat-border: #e0e0e0;
  --chat-radius: 16px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 10000;
  font-family: system-ui, -apple-system, sans-serif;
}

.chat-toggle {
  background: var(--chat-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.chat-toggle:hover {
  transform: scale(1.05);
}

.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  height: 600px;
  background: var(--chat-bg);
  border-radius: var(--chat-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.chat-box.hidden {
  transform: translateY(20px);
  opacity: 0;
}

.chat-header {
  padding: 16px;
  background: var(--chat-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.chat-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.chat-header .close-btn:hover {
  opacity: 0.8;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-messages .message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  line-height: 1.4;
}
.chat-messages .message.user {
  align-self: flex-end;
  background: var(--chat-primary);
  color: white;
  border-bottom-right-radius: 4px;
}
.chat-messages .message.bot {
  align-self: flex-start;
  background: var(--chat-secondary-bg);
  color: var(--chat-text);
  border-bottom-left-radius: 4px;
}

.chat-options {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--chat-border);
}
.chat-options button {
  background: var(--chat-secondary-bg);
  border: 1px solid var(--chat-border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chat-options button:hover {
  background: var(--chat-primary);
  color: white;
  border-color: var(--chat-primary);
}

.chat-input-container {
  padding: 16px;
  border-top: 1px solid var(--chat-border);
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.chat-input-container textarea {
  flex: 1;
  border: 1px solid var(--chat-border);
  border-radius: 24px;
  padding: 12px 16px;
  resize: none;
  max-height: 120px;
  font-family: inherit;
  font-size: 15px;
}
.chat-input-container textarea:focus {
  outline: none;
  border-color: var(--chat-primary);
}
.chat-input-container .send-button {
  background: var(--chat-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.chat-input-container .send-button:hover {
  transform: scale(1.05);
}

.chat-loader {
  display: flex;
  justify-content: center;
  padding: 16px;
}
.chat-loader .loader-dots {
  display: flex;
  gap: 4px;
}
.chat-loader .loader-dots div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chat-primary);
  animation: bounce 0.5s ease-in-out infinite;
}
.chat-loader .loader-dots div:nth-child(2) {
  animation-delay: 0.1s;
}
.chat-loader .loader-dots div:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (max-width: 576px) {
  .chat-box {
    width: 100%;
    height: calc(100vh - 120px);
    position: fixed;
    bottom: 80px;
    right: 0;
    border-radius: 0;
  }
  .chat-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
nav {
  background: black;
  position: fixed;
  z-index: 10000;
  width: 80px;
  height: 100%;
  top: 0px;
  left: 0px;
  transition: width 0.5s ease-in-out;
  overflow: hidden;
}
nav h1 {
  color: yellow;
}
nav > ul {
  /* display: none; */
  position: absolute;
  left: 6000px;
  top: 120px;
  width: 100%;
  height: 50%;
  transition: left 0.5s ease-in-out, right 0.5s ease-in-out;
  list-style-type: none;
}
@media screen and (max-width: 1900px) {
  nav > ul {
    top: 5%;
  }
}
@media screen and (max-width: 1900px) {
  nav > ul {
    height: 100%;
  }
}
nav > ul > li {
  line-height: 40px;
  float: left;
  width: 20%;
  height: 100%;
  color: white;
  margin: 0 10px 0 10px;
  background-color: rgba(178, 34, 34, 0.7); /* crimson */
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 1900px) {
  nav > ul > li {
    width: 40%;
    height: 40%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  nav > ul > li {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
  }
}
nav > ul > li:hover {
  background-color: rgba(255, 255, 255, 0.8); /* crimson */
  color: white;
  transition: all 0.5s ease-in-out;
}
nav > ul > li a {
  font-size: larger;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: color 0.5s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  display: flex;
}
nav > ul > li a > span {
  display: block;
  margin: auto;
}
nav > ul > li a:hover {
  color: #E31717;
  transition: color 0.5s ease-in-out;
}
nav > ul > li a.active {
  color: #E31717;
  transition: color 0.5s ease-in-out;
}
nav .impress-privacy {
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
nav .impress-privacy .container {
  color: white;
  text-align: right;
}
nav .impress-privacy .container a {
  cursor: pointer;
  color: white;
}
nav .impress-privacy .container span.small {
  font-size: 12px;
}
nav.open .impress-privacy {
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}
nav.open {
  width: 20%;
  transition: width 0.5s ease-in-out;
}
nav.open > ul {
  display: block;
  left: 100px;
  transition: left 0.5s ease-in-out;
}
nav .icon-menu {
  color: white;
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  width: 80px;
  left: 0px;
}
nav .icon-menu span.material-symbols-outlined {
  display: block;
  padding: 10px 0;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
}
nav .icon-menu span.material-symbols-outlined:hover {
  background: #E31717;
  transition: background-color 0.5s ease-in-out;
}
nav #nav-icon {
  width: 50px;
  height: 45px;
  position: relative;
  margin: 30px 15px;
  /**    @media (max-device-width: $device-medium) {
        margin: 30px auto;
        width: 30px;
        height: 30px;
      }
  **/
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
nav #nav-icon.dark span {
  background: white;
}
nav #nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 40px;
  background: #E31717;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
nav #nav-icon.open span {
  background: #E31717;
}
nav #nav-icon span:nth-child(1) {
  top: 0px;
}
nav #nav-icon span:nth-child(2), nav #nav-icon span:nth-child(3) {
  top: 13px;
}
nav #nav-icon span:nth-child(4) {
  top: 26px;
}
nav #nav-icon.open span:nth-child(1) {
  top: 13px;
  width: 0%;
}
nav #nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav #nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
nav #nav-icon.open span:nth-child(4) {
  top: 13px;
  width: 0%;
}
nav > ul > li {
  position: relative;
}
nav > ul > li > ul.sub-menu {
  border-radius: 0;
  overflow: hidden;
  transition: background-color 0.25s ease-in-out, height 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  overflow: initial;
  background-color: transparent;
  width: 100%;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  nav > ul > li > ul.sub-menu {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
  }
}
nav > ul > li > ul.sub-menu li {
  list-style-type: none;
  margin: 0;
  border: solid 1px black;
  background-color: rgb(250, 250, 250);
  text-align: center;
  padding: 10px 20px;
  float: left;
  width: 50%;
  height: 33.333%;
  transition: all 0.25s ease-in-out, height 0.5s ease-in-out;
}
@media screen and (max-width: 600px) {
  nav > ul > li > ul.sub-menu li {
    position: relative;
    width: 100%;
    height: auto;
  }
}
nav > ul > li > ul.sub-menu li a {
  color: black;
  font-size: medium;
  font-weight: normal;
  text-align: center;
  word-break: keep-all;
  vertical-align: middle;
  display: flex;
}
nav > ul > li > ul.sub-menu li a > span {
  display: block;
  margin: auto;
  line-height: 1;
}
nav > ul > li > ul.sub-menu li a.active {
  color: red;
}
nav > ul > li > ul.sub-menu li a:hover {
  color: red;
  transition: color 0.5s ease-in-out;
}
nav > ul > li:hover > ul.sub-menu {
  opacity: 1;
  transition: all 0.25s ease-in-out, height 0.5s ease-in-out;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

html {
  height: 100%;
}

body {
  color: #000;
  background: white;
  height: 100%;
}

body#start .container.breadcrumb > div > ul {
  display: none;
}

.topbar-background {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .topbar-background {
    background: rgb(255, 255, 255);
  }
}

section#section-breadcrumb {
  height: auto;
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 1001;
}

.container.breadcrumb {
  margin-top: 15px;
  opacity: 0.35;
  transition: opacity 0.35s ease-in-out;
}
.container.breadcrumb:hover {
  transition: opacity 0.35s ease-in-out;
  opacity: 1;
}
.container.breadcrumb ul li {
  float: left;
  list-style-type: none;
  margin-left: 10px;
  font-weight: lighter;
}
.container.breadcrumb ul li:before {
  content: "/";
  padding: 0 10px 0 0;
  font-weight: lighter;
}
.container.breadcrumb ul li:first-child:before {
  content: "";
  padding: 0;
}
.container.breadcrumb ul li .separator {
  display: none;
}
.container.breadcrumb ul li > a {
  color: black;
  font-weight: lighter;
  text-decoration: none;
}
.container.breadcrumb ul li > a:hover {
  text-decoration: underline;
}

@layer utilities {
  .text-balance {
    text-wrap: balance;
  }
}
.main-logo {
  right: 50px;
  top: 30px;
  z-index: 9999;
  width: 120px;
  position: fixed;
}
.main-logo img {
  display: block;
}
.main-logo img.dark {
  display: none;
}
.main-logo.theme-dark .dark {
  display: block;
}
.main-logo.theme-dark .light {
  display: none;
}

body > section {
  margin-left: 0px;
  padding-left: 80px;
}

body > section > .container {
  display: flex;
  flex-direction: column;
}
body > section > .container div[title=content] h1 {
  font-weight: bolder;
  font-size: calc(2.5rem + 1.25vw);
  padding: 5px 0px;
  margin-bottom: 10px;
  text-align: left;
  width: fit-content;
  float: none;
  margin-left: 0px;
}
body > section > .container div[title=content] p {
  font-weight: lighter;
  /*font-size: 24px; */
  /*width: 60%;*/
  font-size: calc(1.2rem + 0.25vw);
}
body > section > .container div[title=content] h2 {
  font-weight: lighter;
  font-size: calc(1rem + 1vw);
}
body > section > .container div[title=content] .horizontal-list.internal-links ul {
  list-style: none;
  width: 100%;
  margin: 0 0 0 10px;
  padding: 0;
}
body > section > .container div[title=content] .horizontal-list.internal-links ul li {
  float: left;
  width: 20%;
  font-size: 21px;
  padding: 0;
  margin: 0;
  display: block;
  left: 0;
  cursor: pointer;
}
body > section > .container div[title=content] .horizontal-list.internal-links ul li > p {
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}
body > section > .container div[title=content] .horizontal-list.internal-links ul li a.internal-link {
  text-decoration: none;
  background: hsla(0, 0%, 100%, 0.75);
  color: #000;
  padding: 10px 0;
  margin: 0;
  text-align: center;
  display: block;
  width: 100%;
  transition: background 1s ease-in-out, color 0.5s ease-in-out;
}
body > section > .container div[title=content] .horizontal-list.internal-links ul li a.internal-link:hover {
  background: #000;
  color: #fff;
  transition: background 0.5s ease-in-out, color 1s ease-in-out;
}
body > section > .container div[title=content] .col {
  position: relative;
  /* display: flex; */
}
body > section > .container div[title=content] .col .centered-image {
  position: relative;
  display: block;
  margin: auto auto;
}

body > section[title=start] .container {
  /**h2{
    font-size: 4vw;
    font-weight: lighter;
  } **/
}
body > section[title=start] .container div[title=content] {
  display: block;
}
body > section[title=start] .container div[title=content] h1, body > section[title=start] .container div[title=content] h2 {
  /*margin-left: 2vw;*/
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 3.5vw;
  color: red;
  font-weight: bold;
}
body > section[title=start] .container div[title=content] h1 {
  font-weight: 900;
  color: black;
}

body {
  height: 100%;
}
body section {
  width: 100%;
  min-height: 100%;
  display: block;
  margin-bottom: 0px;
  background-position: 80px 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
body section .container {
  width: 90%;
  height: 100%;
}
body section .container .content .col-4 {
  width: 50%;
}
body section.theme-dark .content {
  color: white;
}

#modal-root .modal-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100000;
}
#modal-root .modal-overlay .modal-wrapper {
  height: 80%;
}
#modal-root .modal-overlay .modal {
  width: 80%;
  background: white;
  margin: 5% 10%;
  padding: 20px;
  border-radius: 10px;
  height: inherit;
  position: relative;
}
#modal-root .modal-overlay .modal .modal-header > a {
  position: absolute;
  right: 40px;
  font-size: 60px;
  font-weight: bold;
}
#modal-root .modal-overlay .modal .modal-body {
  height: 90%;
}
#modal-root .modal-overlay .modal .container {
  margin: 0 auto;
  padding: 40px 60px;
  overflow-y: scroll;
  height: 100%;
}
#modal-root .modal-overlay .modal .container p {
  padding: 15px 0;
  font-weight: normal;
}
#modal-root .modal-overlay .modal .container h2 {
  font-weight: lighter;
  font-size: 21px;
  padding: 10px 0 0;
}
#modal-root .modal-overlay .modal .container ul {
  list-style: disc;
  padding: 10px 25px;
}
#modal-root .modal-overlay .modal h1 {
  font-weight: bold;
  font-size: 60px;
}

body section#overview .row > .col-12 p {
  font-size: calc(1rem + 0.25vw);
}

body section#technology .row .card .card-text {
  font-size: 16px;
}

section.section:first-child {
  margin-top: -60px;
}

.bottombar-background {
  background-color: rgba(255, 255, 255, 0.5);
  animation-duration: 0.5s;
  transition-duration: 0.5s;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  height: 60px;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bottombar {
  /*background-image: linear-gradient(90deg in hsl shorter hue, rgba(255,255,255,0), white 40%, rgba(255,255,255,0) );*/
  height: 60px;
  position: fixed;
  z-index: 1001;
  bottom: 0;
  left: 0;
  width: 100%;
}
.bottombar .container {
  text-align: center;
}
.bottombar .container ul {
  list-style-type: none;
  display: inline-block;
}
.bottombar .container ul li {
  float: left;
  color: darkgray;
  font-size: small;
  padding: 0 10px;
  cursor: pointer;
  line-height: 60px;
}
.bottombar .container ul li a {
  color: black;
  font-size: small;
  font-weight: normal;
}

.btn-primary {
  border-radius: 5px;
  border: solid 0;
  background: #E31717;
  transition: background-color 0.25s ease-in-out;
  margin-bottom: 25px;
}
.btn-primary:hover {
  background: white !important;
  transition: background-color 0.25s ease-in-out;
  color: #E31717 !important;
}

footer {
  background-image: url("/static/img/default_bg_2_1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 100px 0 100px 80px;
}
footer > .container {
  width: 90%;
}
footer h3 {
  text-transform: uppercase;
  font-size: 21px;
}
footer > ul {
  margin-left: 10px;
}
footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  line-height: 24px;
}
footer ul li a {
  color: black;
}

@media screen and (max-width: 576px) {
  nav {
    height: 70px;
    width: 100%;
  }
  nav.open {
    height: 100%;
    width: 100% !important;
  }
  nav.open > ul {
    left: 20px;
  }
  nav .icon-menu {
    display: none;
  }
  nav #nav-icon {
    margin-top: 20px;
  }
  body > section {
    padding: 0;
    background-position: 0 0;
  }
  body > section[title=start] .container div[title=content] h1, body > section[title=start] .container div[title=content] h2 {
    font-size: 60px;
  }
  body > section > .container div[title=content] h1,
  body > section > .container div[title=content] h2 {
    font-size: calc(1.375rem + 1.5vw);
  }
  body > section > .container div[title=content] p {
    font-size: calc(1rem + 0.5vw);
  }
  footer {
    padding: 50px 0;
    width: 100%;
  }
  footer > .container {
    width: 100%;
  }
}
#section-breadcrumb {
  height: 60px;
  min-height: 60px;
}

a {
  text-decoration: none;
  color: red;
}

.mk2-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease; /* Sanfter Übergang bei Opazitätsänderungen */
}
.mk2-background-container canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .mk2-background-container canvas {
    animation: none;
    opacity: 0.1;
  }
}

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