* {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif; /* Standard Schriftart auf Ubuntu setzen */
}

body,
html {
    font-family: 'Ubuntu', sans-serif; /* Auch für den Body die Ubuntu-Schriftart setzen */
}


h5 {
	font-weight:200;
	font-size:12pt;
  }


  h3 {
	font-weight:300;
	font-size:25pt;
  }


  h2 {
	font-weight:300;
	font-size:35pt;
  }


  p {
	font-weight:200;
	font-size:12pt;
  }


.navbar {
  position: relative;
  z-index: 1000;
}


.nav-link {
  font-weight: 100;
}




.left-column {
    background-color: #B0263D;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.right-column {
    background: url('/images/home/lkw.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.menu {
    position: absolute;
    top: 20px;
    right: 20px;
}

.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.text-area {
    text-align: center;
    max-width: 80%;
}

/* Transparenter Hintergrund für Navbar und Top-Bar */
.navbar {
    background-color: transparent !important; /* Transparent für die Navbar */
    color: white !important; /* Textfarbe in der Navbar auf Weiß setzen */
	font-size:15pt;
}

.navbar .nav-link {
    color: white !important; /* Textfarbe der Nav-Links auf Weiß setzen */
}



/* Vergrößern des Abstands zwischen den Navbar-Elementen, aber kein Abstand beim letzten Element */
.navbar .nav-item:not(:last-child) {
    margin-right: 30px; /* Abstand zwischen den nav-items vergrößern */
}




.custom-outline {
    border: 2px solid white;
    background-color: transparent;
    color: white;
  }

  .btn {
	border-radius:0;
  }


  .btn-outline-dark {
	color:#B0263D;
	border-color:#B0263D;
  }

  .btn-outline-dark:hover {
	background-color:#B0263D;
	color:white;
	border:none;
  }
  

  .bg-grey {
	background-color:#EDEDED;
	}


	a {
		color: #212529;
		text-decoration: none;
	}

	a:hover {
		color: #B0263D;
		text-decoration: none;
	}



	.card {
		flex-direction: column;
		min-width: 0;
		height: var(--bs-card-height);
		word-wrap: break-word;
		border:0;
		border-radius: 0;
	}


  .navbar-toggler {
    background-color: white;
}



/* Transparent für die Top-Bar */
.top-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    padding: 10px;
    z-index: 1000; /* Sicherstellen, dass sie über der Navbar bleibt */
}

/* Top-Bar Inhalt: Telefonnummer, E-Mail und Sprache */
.top-bar span,
.top-bar a,
.top-bar select {
    color: white !important; /* Textfarbe der Top-Bar-Elemente auf Weiß setzen */
    margin-right: 20px; /* Abstand zwischen den einzelnen Elementen */
}

/* Verhindert das Überlappen der Navbar durch Top-Bar */
.right-column .navbar {
    margin-top: 20px; /* Sicherstellen, dass die Navbar genug Platz unter der Top-Bar hat */
}

/* Styling für das E-Mail-Icon */
.email-icon {
    text-decoration: none;
    color: white !important; /* E-Mail-Icon-Text auf Weiß setzen */
}

.email-icon i {
    margin-right: 8px;
}

/* Sprachauswahl Styling */
.language-select {
    padding: 5px;
    font-size: 14px;
    background-color: transparent; /* Transparenter Hintergrund für die Sprachauswahl */
    color: white; /* Textfarbe in der Sprachauswahl auf Weiß setzen */
    border: 1px solid white; /* Weißer Rand für die Sprachauswahl */
}


.bg-container {
	position: relative;
	background: url('/images/home/stapler.jpg') no-repeat center center;
	background-size: cover;
	min-height: 300px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(176, 38, 61, 0.7); /* Dunkles Overlay */
    z-index: 1;
}

.row {
    position: relative;
    z-index: 2; /* Höher als das Overlay */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.text-white {
    color: white;
}



       /* Container für das Karussell */
       .carousel-container {
        position: relative;
        width: 100%;
      }
  
      /* Verhindern, dass der Carousel-Slider zu groß wird */
      .carousel-inner {
        display: flex;
      }
  
      /* Position der Pfeile außerhalb des Karussells */
      .carousel-control-prev,
      .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 5%;
        height: 100%;
        background-color: transparent; /* Pfeil-Hintergrund transparent */
        border: none; /* Kein Rahmen um die Pfeile */
      }
  

  
      /* Stil der Pfeile */
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 50px; /* Größe der Pfeile anpassen */
        height: 50px;
        border-radius: 0%; /* Kein Kreis, nur Rechteck */
      }


      .top-bar {
        position: fixed;
        top: 0;
        width: 100%;
        height: 40px; /* Falls nötig, passe die Höhe an */
        z-index: 1050; /* Höher als die Navbar */
    }
    

    .navbar.fixed-top {
      position: fixed;
      top: 40px; /* Direkt unter der Top Bar */
      width: 100%;
      z-index: 1030;
  }
  



  .timeline {
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #0d6efd;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}
.timeline-item .timeline-content {
    width: 48%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.timeline-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0d6efd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
}
    
    
    
    

/* MEDIA QUERIES */
@media (max-width: 980px) {
}

/* MEDIA QUERIES FÜR IPAD 3 & 4 – LANDSCAPE */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
}

/* MEDIA QUERIES FOR IPAD MINI */
@media only screen and (min-device-width: 1023px) and (max-device-width: 1025px) and (orientation: landscape) {
}

/* IPAD AIR */
@media only screen and (min-device-width: 1180px) and (max-device-width: 1181px) and (orientation: landscape) {
}

@media (min-width: 1900px) {
}
