.pt-250 {
  padding-top: 250px;
}

.brand-img img {
  height: 150px;
}

:root {
  --background-color: #1e3a8a;
  --default-color: #ffffff;
  --accent-color: #e11d48;
  --contrast-color: #000000;
}

.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    var(--background-color) 0%,
    color-mix(in srgb, var(--background-color) 90%, white 10%) 100%
  );
  opacity: 0.5;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 70vh;
  padding-top: 150px;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
}

 
.hero ul {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}

.hero ul li {
  color: #ffffff;
}

.hero h2 {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #ffffff;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero h2 {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* Call to Action */

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.call-to-action p {
  color: #ffffff;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/* Call to Action */

#fahrzeugeiframe {
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
}

.testimonial-item {
  position: relative;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.testimonial-item .fa-star {
  color: var(--accent-color);
}

footer p.h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

/* Footer Logos */
#customer-logos {
  background-color: #001f4d; /* Dunkles Blau, optional */
}

#customer-logos .slick-slide {
  padding: 0 10px;
  display: flex !important;         
  justify-content: center;         
  align-items: center;             
  height: 150px;                   
  box-sizing: border-box;
}

#customer-logos .slick-slide img {
  max-height: 100%;                
  max-width: 100%;                 
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Padding für Section */
#customer-logos.pt-30 {
  padding-top: 30px;
}

#customer-logos.pb-25 {
  padding-bottom: 25px;
}
    /* End Footer Logos */


.bg-color-red  {
  background-color: #d81324;
}