/* Fonts */
:root {
  --default-font: "Funnel Sans",  system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Funnel Display",  sans-serif;
  --nav-font: "Funnel Display",  sans-serif;
}

:root { 
  --rot: #db022b;
  --rot2: #EE0000;
  --rot3: #AABDCF;
  --blau: #AABDCF;
  --dblau: #424B57;
  --grau: #29343a;
  --dgrau: #060818;
  --hell: #B3C2D2;
  --weiss: #ffffff;
  --weiss04: rgba(255,255,255,0.4);
  --weiss08: rgba(255, 255, 255, 0.75);
  --weiss09: rgba(255, 255, 255, 0.88);
  --gruen: #77DF2B;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--weiss09);
  background-color: var(--dblau);
  font-family: var(--default-font);
}

.light-background {
  --dblau: rgba(255,255,255,0.5);
  --dgrau: #424B57;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--weiss09);
  background-color: var(--dblau);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.white-background {
  background-color: #fff;
  --weiss09: #29343a;
  --dblau: #4f5b68;
  --dgrau: #060818;
}

.dark-background {
  --dblau: #060606;
  --weiss09: #ffffff;
  --blau: #ffffff;
  --dgrau: #252525;
  --weiss: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

p > a::before, blockquote > a::before, article > a::before, a.arrow::before {
  font-family: bootstrap-icons; /* Font-Family von Bootstrap Icons */
  content: "\f138"; /* Unicode für 'arrow-right' */
  display: inline-block;
  margin-right: 5px;
  font-size: 1em; /* ggf. anpassen */
  vertical-align: middle;
  color: var(--rot2);
}

a.noarrow::before {
  content: "" !important;
  margin-right: 0 !important;
}

a:hover {
  opacity: 0.75;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blau);
  font-family: var(--heading-font);
}

h1.small {
  font-size: 21px; 
}

h1#hero-heading {
  color: var(--blau);
}

h4, .h4, .section-title h3.h4 {
  font-size: 1.5rem;
  color: var(--weiss09);
}

h5, .h5 {
  font-size: 1.25rem;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--dgrau);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--rot);
  border-top-color: var(--dgrau);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--weiss09);
  background-color: transparent;
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--weiss09);
  border-radius: 0 0 25px 25px;
  padding: 5px 24px 5px 24px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0;
}

.logo {
  background: var(--weiss09);
  border-radius: 0 0 25px 25px;
  padding: 0 30px 12px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-height: 90px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--weiss);
  background: var(--rot2);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--weiss);
  background: color-mix(in srgb, var(--rot), transparent 15%);
}

@media (max-width: 1199.98px) {
  .header .header-container {
    background: transparent;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }
  .logo {
    border-radius: 0 0 25px 0;
    padding: 0 30px 12px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin: 0 30px 0 0;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--dblau);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--rot2);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--grau);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--weiss08);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--blau);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .navmenu {
    padding: 0 0 0 60px;
    z-index: 0;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: relative;
    inset: 60px 20px 20px 20px;
    padding: 20px;
    margin: 0;
    border-radius: 6px;
    background-color: var(--dblau);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--weiss08);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--rot2), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--rot);
    color: var(--weiss);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--blau);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--rot2);
    color: var(--weiss);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--grau);
    border: 1px solid color-mix(in srgb, var(--weiss09), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-toggle {
    all: unset;
    position: absolute;
    font-size: 32px;
    top: 5px;
    right: 15px;
  }
  
  .mobile-nav-active .mobile-nav-toggle {
    right: 32px;
  }

  .mobile-nav-toggle i {
    color: #fff;
    font-size: 32px;
    margin-right: 0;
    z-index: 9999;
    line-height: 0;
    cursor: pointer;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: inline-block;
  }
}
.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
  background: var(--hell);
}

.btn-user {
  background-color: var(--rot2);
  border-color: var(--rot2);
  padding: 0;
  margin: 0 0 0 30px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  color: var(--weiss);
}

.btn-user:hover, .btn-user:focus, .btn-user:focus-visible, .btn-user:active {
  color: var(--weiss);
  background: color-mix(in srgb, var(--rot), transparent 15%);
}

.mobile-nav-active .btn-user {
  position: fixed;
  right: 90px;
}
.btn-sm {
  padding: 3px 12px !important; 
}
.btn-sm i {
  font-size: 20px; 
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--weiss09);
  background-color: var(--dblau);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--weiss09), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 120px;
}

.footer .footer-about .logo span {
  color: var(--blau);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about h3 {
  font-size: 20px;
  color: var(--blau);
}

.footer .footer-about p {
  font-size: 16px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--weiss09), transparent 50%);
  font-size: 16px;
  color: var(--weiss09);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--rot);
  border-color: var(--rot);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--weiss09);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--rot);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--weiss09), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--dblau);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--rot2) transparent var(--rot2) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--rot2);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--weiss);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--rot), transparent 20%);
  color: var(--weiss);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--weiss09);
  background-color: var(--dblau);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--weiss09), transparent 50%);
}

.admain {
  margin-top: 120px; 
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 12px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--weiss09);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--rot2);
  margin: 4px 10px;
}

.section-title h3 {
  color: var(--rot3);
  margin: 0;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  height: 74vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background: url(../img/hero.webp) no-repeat right center/cover;
}

.adhero {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0 0 0;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

.hero .agency-name {
  margin-bottom: 0.5rem;
}

.hero .agency-name h2 {
  font-size: 1.33rem;
  font-weight: 600;
  color: var(--weiss09);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
}

.hero .main-heading h1 span {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin: 12px 0 0 0;
  color: var(--weiss09);
}

.hero .description {
  margin: 0 0 0 -16px;
  padding: 16px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--dgrau), transparent 50%);
}

.hero .description p {
  color: var(--weiss09);
  margin: 0;
}

.cta-button .btn,
.btn.btn-outline-secondary,
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--weiss09), transparent 40%);
  color: var(--weiss09);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button .btn span {
  margin-right: 0.5rem;
}

.cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button .btn:hover,
.btn.btn-outline-secondary:hover,
.btn-outline-red:hover {
  background-color: var(--rot2);
  border-color: var(--rot2);
  color: var(--weiss);
}

.btn-outline-red {
  border-color: var(--rot2);
  color: var(--rot2);
}

.cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--dgrau), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--weiss09), transparent 90%);
  border-radius: 10px 0 0 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
  .hero {
    align-items: flex-end;
    background: url(../img/hero.webp) no-repeat 70% center/cover;
    padding: 0;
  }
  .hero .main-heading h1 {
    font-size: 2.7rem;
  }
  .hero .main-heading h1 span {
    font-size: 1.5rem;
  }
  .hero .description {
    width: 100vw;
    padding: 16px 24px;
  }
  .hero .description p {
    line-height: 20px;
  }
  .hero .content-col {
    flex-direction: column;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 2.2rem;
    margin-top: 30vh;
  }
  .section-title h3 {
    font-size: 1.85rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 1.8rem;
  }
}


.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--rot2);
  border-radius: 50%;
  color: var(--weiss);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--rot), transparent 20%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image {
  border-radius: 0;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--rot2);
  color: var(--weiss);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}



.stoerer, #lastschriftForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--rot);
  border-color: var(--rot);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  min-width: 300px;
}
#lastschriftForm {
  background-color: var(--dblau);
}
.stoerer h4 {
  color: #fff !important;
  font-size: 18px;
  text-transform: none;
}
.stoerer h5 {
  color: rgba(255,255,255,0.67) !important;
  font-size: 40px;
}

@media (max-width: 767px) {
  .about .about-image .experience-badge {
    bottom: 20px;
    padding: 1rem 1rem 1rem 30px;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
  .about .about-content h2 {
    font-size: 1.8rem;
  }
  .stoerer h4 {
    font-size: 16px;
  }
  .stoerer h5 {
    font-size: 27px;
  }
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--weiss09);
}

.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--weiss04);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;margin-right: 6px;
  vertical-align: middle;
}

.about .about-content .feature-item i.big {
  display: block;
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--dgrau);
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--dgrau);
}

.about .about-content .feature-item li strong {
  color: var(--dgrau); 
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blau);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--rot2);
}

@media (max-width: 991px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--weiss09);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--rot2);
  color: var(--weiss);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--rot), transparent 15%);
  color: var(--weiss);
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  text-align: center;
  padding: 40px 40px 40px 40px;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background: var(--weiss04);
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.services .service-card.rect .service-icon {
  width: auto;
  height: auto;
}

.services .service-card .service-icon img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.services .service-card.rect .service-icon img {
  border-radius: 0;
  width: 100%;
  height: auto;
  margin: 0;
}

.services .service-card.rect input {
  width: 100px;
  margin:12px auto 0;
}

.services .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--weiss09);
}

.services .service-card h3 a span {
  display: block;
}

.services .service-card h3 a:hover {
  color: var(--rot);
}

.services .service-card p {
  color: var(--weiss09);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  /*.services .service-card:not(.rect) {
    padding: 150px 25px 25px;
  }*/

  .services .service-card h3 {
    font-size: 24px;
  }

  /*.services .service-card:not(.rect) .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }*/
  
  .services {
    padding: 70px 0 50px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.light-background h2, .light-background .section-title h2 {
  color: var(--weiss09);
}

.light-background h3, .light-background .section-title h3 {
  color: var(--dgrau);
}

.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--dgrau);
  padding: 40px;
  border-radius: 16px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  margin-bottom: 30px;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info h5 {
  color: var(--blau);
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 16px;
  color: var(--weiss08);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--dgrau);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--weiss09) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--weiss09);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--rot);
  border-color: var(--rot);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--weiss);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 16px;
  font-weight: 500;
  padding: 6px 12px;
  cursor: pointer;
  background: var(--rot2);
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li:first-child {
  border-radius: 30px 0 0 30px;
  padding: 6px 12px 6px 18px;
}

.portfolio .portfolio-filters li:last-child {
  border-radius: 0 30px 30px 0;
  padding: 6px 18px 6px 12px;
}

@media(max-width: 1199px) {
  .portfolio .portfolio-filters li:first-child, .portfolio .portfolio-filters li:last-child {
    border-radius: 0;
    padding: 6px 12px;
  }
}
.portfolio .portfolio-filters li i {
  font-size: 1.25em;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-filters li:hover {
  color: var(--rot);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--rot), transparent 92%);
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--rot);
  color: var(--weiss);
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--weiss04);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio .portfolio-entry {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  padding: 12px 24px;
}

.portfolio .portfolio-entry i {
  font-size: 32px;
  color: #fff;
  text-shadow: 0 0 24px #000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 40, 66, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0 24px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-overlay .entry-meta {
  color: var(--rot2);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-overlay .entry-title {
  color: var(--weiss);
  font-size: 21px;
  font-weight: 600;
  margin: 0;
}

.portfolio .portfolio-entry .entry-overlay .entry-sub {
  color: var(--weiss);
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 0 0;
}

.portfolio .portfolio-entry .entry-overlay .entry-links {
  display: flex;
  justify-content: flex-end;
}

.portfolio .portfolio-entry .entry-overlay .entry-links a {
  width: 60px;
  height: 60px;
  margin-right: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--rot2);
  font-size: 32px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-overlay .entry-links a i {
  font-size: 32px;
  color: var(--rot2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-overlay .entry-links a:hover {
  background: var(--dblau);
  opacity: 1;
}

.portfolio .portfolio-entry .entry-overlay .entry-links a:hover i {
  font-size: 44px;
}

.portfolio .portfolio-entry:hover .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-item {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .portfolio .portfolio-filters li {
    padding: 4px 8px;
    font-size: 15px;
  }
  
  .portfolio .portfolio-entry .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .portfolio .portfolio-item, .portfolio .portfolio-entry {
    aspect-ratio: 3/1;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blau);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--weiss09);
  margin-bottom: 2rem;
}

.faq .faq-container .faq-item {
  background-color: var(--dgrau);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-toggle-btn {
  all: unset;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--blau);
}

.faq-toggle-btn:hover {
  color: var(--weiss09);
}

.faq-toggle-btn:focus-visible {
  outline: 2px solid #000; /* oder Kontrastfarbe deiner Wahl */
  outline-offset: 4px;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}

.faq .faq-container .faq-item.is-open .faq-content {
  max-height: 1000px;
  visibility: visible;
  opacity: 1;
}

.faq .faq-container .faq-item .faq-content p {
  margin-top: 12px;
}

.faq .faq-container .faq-item .faq-toggle-btn i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-toggle-btn i:hover {
  color: var(--weiss);
}

.faq-toggle-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-toggle-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--weiss09);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--rot2), transparent 90%);
  color: var(--rot2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dblau);
}

.contact .contact-info-box .info-content p, .contact .contact-info-box .info-content address {
  margin-bottom: 5px;
  color: var(--dgrau);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--weiss09);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .tab-content.contact-form-wrapper {
  border-radius: 0 0 12px 12px; 
}

.nav-tabs .nav-link {
  background-color: var(--weiss04);
  color: #fff;
  margin: 0 0 0 0;
  border: 3px solid var(--dblau);
}

.nav-tabs .nav-link:hover {
  border: 3px solid var(--weiss04);
}

.nav-tabs .nav-link.active {
  background-color: var(--weiss09);
  color: var(--dblau);
  margin: 0 3px 0 0;
  border: 3px solid transparent;
}

.contact .contact-form-wrapper label, .contact .contact-form-wrapper legend {
  color: var(--dblau);
  font-size: 16px;
}

.contact .contact-form-wrapper h2 {
  margin-bottom: 30px;
  position: relative;
  color: var(--dblau);
}

.contact .contact-form-wrapper p {
  color: var(--grau);
}

.contact .contact-form-wrapper .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dblau);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-control, .contact .contact-form-wrapper .form-select {
  border-radius: 8px;
  padding: 12px 15px 12px 15px;
  height: 3.5rem;
  color: var(--dblau);
  background-color: var(--weiss);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--weiss09), transparent 80%);
}

.contact .contact-form-wrapper .input-with-icon .form-control, .contact .contact-form-wrapper .input-with-icon .form-select {
  padding: 12px 15px 12px 45px;
}

.contact .contact-form-wrapper .form-select.noicon {
  border-radius: 8px;
  padding: 12px 15px 12px 15px;
  height: 3.5rem;
  color: var(--dblau);
  background-color: var(--weiss);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--weiss09), transparent 80%);
}

.contact .contact-form-wrapper .form-control:focus, .contact .contact-form-wrapper .form-select:focus {
  border-color: var(--rot2);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--rot2), transparent 90%);
}

.contact .contact-form-wrapper .form-control::placeholder, .contact .contact-form-wrapper .form-select::placeholder {
  color: color-mix(in srgb, var(--dblau), transparent 25%);
}

.contact .contact-form-wrapper textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--rot2);
  border: none;
  color: var(--weiss);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--rot2), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--rot), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--rot), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--rot), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

.tab-pane hr {
  color: var(--dblau);
  border-top-width: 3px;
  width: calc(100% + 104px);
  margin: 50px -52px 0;
  opacity: 1;
}

@media (max-width: 991px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
  
  .tab-pane hr {
    width: calc(100% + 84px);
    margin: 40px -42px 0;
  }
}

@media (max-width: 767px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }
  
  .tab-pane hr {
    width: calc(100% + 74px);
    margin: 40px -37px 0;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
  
  .tab-pane hr {
    width: calc(100% + 64px);
    margin: 40px -32px 0;
  }
}

.btn-primary {
  background-color: var(--rot2);
  border-color: var(--rot2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--weiss);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--rot), black 10%);
  border-color: color-mix(in srgb, var(--rot), black 10%);
}

.btn-secondary {
  background-color: var(--blau);
  border-color: var(--blau);
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  color: var(--weiss);
}

.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--blau), black 10%);
  border-color: color-mix(in srgb, var(--blau), black 10%);
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--rot2);
  color: var(--weiss);
}

.btn-outline-primary:hover {
  border-color: color-mix(in srgb, var(--rot), black 10%);
}

.max768 {
  max-width: 767px; 
}

.active>.page-link, .page-link.active {
  background-color: var(--blau);
  border-color: var(--blau);
}
.text-dblau {
  color: var(--dblau) !important; 
}
.text-hblau {
  color: var(--blau) !important; 
}
.text-gruen {
  color: var(--gruen) !important; 
}
.text-rot, .text-blau {
  color: var(--rot2) !important;
}
.remove-btn {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  z-index: 2;
  color: var(--rot2);
  font-size: 24px;
  cursor: pointer;
}
#add-btn {
  all: unset;
  cursor: pointer;
  color: var(--blau);
  display: flex;
  align-items: center;
}
#add-btn i {
  color: var(--blau);
  font-size: 24px;
  margin-right: 6px;
}
.tn:first-child .remove-btn {
  display: none; 
}
.alert-success {
  background: var(--gruen); 
  border: none;
  color: var(--dgrau);
}
.alert-danger {
  background: var(--rot2); 
  border: none;
  color: var(--dgrau);
}
.list-group {
  border-radius: 0;
  border: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 12px;
  text-decoration: none;
  background-color: var(--weiss09);
  border: none;
  margin: 1px 0 0 0;
  font-size: 20px;
  color: var(--dblau);
}
.alert h2 {
  color: #fff; 
}
img.imgleft {
  display: inline;
  float: left !important;
  margin: 0 1em 1em 0 !important
}
img.imgright {
  display: inline;
  float: right !important;
  margin: 0 0 1em 1em !important
}
img.img-100 {
  max-width: 100px;
  height: auto
}
img.img-150 {
  max-width: 150px;
  height: auto
}
img.img-200 {
  max-width: 200px;
  height: auto
}
img.img-250 {
  max-width: 250px;
  height: auto
}
img.img-half {
  max-width: 50%;
  height: auto
}
img.img-full {
  max-width: 100%;
  height: auto
}
.actions {
  white-space:nowrap;
}
ul.pagination li {
  display: inline-block;
}
.progress {
  background-color: var(--grau);
}
.progress-bar {
  background-color: var(--rot2);
}
.progress-bar.success {
  background-color: var(--gruen);
}

.table-primary {
  --bs-table-striped-bg: #ffddcc;
  --bs-table-bg: #ffddcc;
}