#topbox {
    height: unset !important;
}


#timeline {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #ad7e00;
    transform: translateX(-50%);
    height: 100%;
}

.timebox {
    position: relative;
    width: 30%;
    margin: 50px 0;
    padding: 40px;
    background-color: rgb(0 0 0 / 80%);
    border-radius: 30px;
    opacity: 0;
    transition: transform 0.5s ease-out 0.5s, opacity 0.5s ease-out 0.5s;
    color: #FFF;
}

.timebox h3{
	color: #ad7e00;
	font-family: 'Lexend';
	font-weight: bold;
	font-style: normal;
	font-size: 300%;
    margin: 10px 0 0 0;
}

.timebox h4{
	color: #FFFFFF;
	font-family: 'Lexend';
	font-weight: bold;
	font-style: normal;
	font-size: 220%;
	margin: 0;
}

.timebox h5{
	color: #000;
	    font-family: 'Lexend';
	    font-weight: bold;
	    font-style: normal;
	    font-size: 100%;
	    margin: 20px 0 0 0;
	    background-color: #343434;
	    display: inline-block;
	    padding: 10px 20px;
	    border-radius: 20px;
}

.timebox h6{
	color: #ad7e00;
	font-family: 'Lexend';
	font-weight: bold;
	font-style: normal;
	font-size: 175%;
    margin: 0;
}

.timeleft {
  transform: translateX(-100%); /* Start außerhalb des Bildschirms links */
  left: 7.5%;
  margin-right: auto;
  text-align: right;
}

.timeright {
  transform: translateX(100%); /* Start außerhalb des Bildschirms rechts */
  right: 7.5%;
  margin-left: auto;
  text-align: left;
}

.timeleft::before,
.timeright::before {
  content: "";
  position: absolute;
  top: 50%; /* Zentriert die Linie vertikal an der Box */
  width: 20%; /* Länge der Linie bis zur Timeline */
  height: 2px; /* Dicke der Linie */
  background-color: #ad7e00; /* Farbe der Linie */
  transform: translateY(-50%);
}

.timeleft::before {
  left: 100%; /* Startet die Linie am rechten Rand des linken Divs */
}

.timeright::before {
  right: 100%; /* Startet die Linie am linken Rand des rechten Divs */
}

.timebox.visible {
  opacity: 1;
  transform: translateX(0); /* Rutscht ins Bild */
}
