.timeline {
    display: flex;
    flex-direction: column;
	
	overflow: visible;
    gap: 40px;
    padding: 0px 20px;
    position: relative;
    max-width: 1400px;
	
    &:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 30.9%;
        width: 3px;
        background: linear-gradient(180deg, transparent, #ef7d00 10%, #ef7d00 90%, transparent);
        transform: translateX(-50%);
    }
}

.timeline-placeholder-top {
	height: 250px;
}
.timeline-placeholder-bottom {
	height: 300px;
}
.timeline-grid {
    display: grid;
    grid-template-columns: 35% 65%; /* Links: 25%, Rechts: 75% */
    gap: 40px;
    position: relative;
	height: auto;
}

.timeline-dates {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
	
}

.timeline-events {
	flex: 1;
	position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.event-container {
	margin-left: 10%;
	height: auto;
    width: 75%;
    pointer-events: none;
	filter: blur(5px) grayscale(100%);
    transition: opacity 0.3s ease-in-out, transform 1s ease;
	transform-origin: 50% 50%;
    position: absolute;
    top: 0;
	opacity: 0;
	transform: translateY(0%) scale(0.2);
}

.event-container.onv_visible {
    pointer-events: all;
	opacity: 1;
	filter: blur(0) grayscale(0%);
	transform: translateY(-40%) scale(1);
}


.title-container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 25px;
    text-transform: uppercase;
	line-height: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 5% 0% 2% 0%;
	color: #4e4d4d;
	text-align: center;
}

.title-container.onv_visible {
    opacity: 1;
    transform: translateY(0);
}

.onv_timelineDate {
    font-size: 30px;
    font-weight: 700;
    z-index: 2;
    margin: 5px 20px;
    color: #ef7d00;
    transition: all 0.6s ease-out;
    text-align: right;
    padding-right: 40px;
	padding-top: 45px;
	height: 120px; 
	opacity: 0.5;
    transform: scale(0.8);
}

.onv_timelineDate.onv_visible {
    font-size: 140px;
    color: #ef7d00;
    opacity: 1;
	
}



.description, .long-description {
    margin: 5px 0;
}

.description {
	font-weight: 300;
	font-size: 18px;
	margin-bottom: 2%;
	text-align: center;
}

.onv-timelineBtn, .onv-btn-read-more {
    background-color: #ef7d00;
	display: inline-block;
    color: white !important;
    border: none;
    cursor: pointer;
    border-radius: 4px;
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
	transition: all 0.5s;
	font-weight: bold;
	padding: 10px 15px;
	margin-top: 10px;
	
    
    &:hover {
        background-color: white;
		border: 1px solid #ef7d00;
		border-radius: 3px;
        color: #ef7d00 !important;
    }
	
	&:hover a {
        color: #ef7d00 !important;
    }
}

.onv-timelineBtn a{
	color:white;
}

.picture-container {
    position: relative;
   
	padding: 10px 5px;
	text-align: center;
}



.picture-container img {
     max-width: 540px;
	height: auto;
    object-fit: cover;
	border-radius: 8px;
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

/*ImageSlider*/
.onv-timeline-picture-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
	max-width: 460px;
}

.onv-single-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.onv-single-slide img{
    max-width: 450px;
	height: auto;
    object-fit: cover;
	border-radius: 8px;
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.onv-active-slide {
    display: block;
    opacity: 1;
}

.onv-slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ef7d00;

    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
	transition: color 0.3s ease-in;
}
.onv-slider-button:hover {
    background-color: white;
	color: #ef7d00;
	border: 1px solid #ef7d00;
}

.onv-prev-button {
    left: 10px;
}

.onv-prev-button::before {
	content: "\f053"; 
    font-family: 'FontAwesome';
}

.onv-next-button::before {
    content: "\f054"; 
    font-family: 'FontAwesome';
}

.onv-next-button {
    right: 10px;
}

/* No Shadow*/
.onv-noShadow img {
	box-shadow: none !important;
}
/*Video Style*/

.onv-timeline-video-container iframe {
	border-radius: 8px;
}


/* Timeline dots */
.onv_timelineDate {
    &::before {
        content: '';
        position: absolute;
        left: 100%;
        width: 20px;
        height: 20px;
        background: #ef7d00;
        border-radius: 50%;
        transform: translateX(-50%) translateY(50%);
        z-index: 10;
        box-shadow: 0 0 0 4px rgba(239, 125, 0, 0.2);
		 pointer-events: auto;
    cursor: pointer;
		
    }
    
    &::after {
        content: '';
        position: absolute;
        left: 100%;
        width: 40px;
        height: 40px;
        background: rgba(239, 125, 0, 0.1);
        border-radius: 50%;
        transform: translateX(-50%);

		 pointer-events: none;
		
    }
}

/* Milestone styling */
.event-container.milestoneEvent {
    .title-container .title {
      
        position: relative;
        text-align: left;
    }
	
	/*
    
    .title-container {
        position: relative;
        z-index: 1;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
        transition-delay: 0.3s;
    }
    
    .title-container.onv_visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    
    
    .onv_timelineDate {
        font-size: 40px;
		opacity: 0.8;
		transform: scale(0.8);
    }
    
    .onv_timelineDate.onv_visible {
        font-size: 100px;
        color: #ef7d00;
		transform: scale(1.5);
    }*/
    

}

/* Customer styling */
.event-container.onv-customer-event {
  display: flex;
  align-items: center;
	
	.customer-event-layout {
		display: flex;
  align-items: center;
  width: 100%;
	gap: 20px;
	}
	.customer-logo {
  max-width: 50%;
  margin-right: 20px;
	}
	.customer-logo img {
  max-width: 100%;
  height: auto;
	border-radius: 8px;
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
	}
	
	.title-container {
		flex-grow: 1;
		width: 100%;
		   display: block;
	}
	.title {
		margin: 5% 0%;
		text-align: left !important;
	}
	
	.description {
		margin: 4% 0%;
		font-size: 18px;
		font-weight: 300;
		text-align: left;
		line-height: 25px;
	}
	
}

@media only screen and (max-width:600px) {
	.timeline {
		
		&::before {
			left: 25.8%;
			width: 2.5px;
		}
	}
	.timeline-grid {
		grid-template-columns: 25% 75%;
	}
	.onv_timelineDate {
		margin: 0px;
		padding-right: 20px;
		padding-left: 0px;
		height: 100px;
		justify-content:left;
		color: transparent;
		&::before {
			width: 15px;
			height: 15px;
		}
		
		&::after {
			display: none;
		}
	}
	
	.onv_timelineDate.onv_visible {
		font-size: 30px !important;
		display: block;
		
	}
	
	.event-container.onv-customer-event {
		.customer-event-layout {
		display: block;
			width: 100%;
	}
		.description {
     line-height: normal;
		font-size: 16px;
	font-weight: 300;
	}
		
	}
    
	
	.title {
		font-size: 18px;
		letter-spacing: 0px;
		line-height: 30px;
	}
	
	.description {
        line-height: 24px !important;
		font-size: 16px;
		font-weight: 300;
	}
	

	.picture-container img {
		max-width: 220px;
		border-radius 4px;
	}
	.onv-timeline-video-container iframe {
    width: 220px;
    height: auto;
}
	.onv-single-slide img {
		max-width: 220px;
	}
	
	.slider-button {
		font-size: 10px;
		padding: 5px;
	}
	
	.next-button {
		right: 20px;
	}
	
	.timeline-grid {
		gap: 0px;
	}
	.event-container {
		width: 100%;
	}
	
	
.event-container.milestoneEvent {
		.title-container .title {
			font-size: 20px;
		}
		
		.description {
			font-size: 16px;
		}
		
	}
}

@media (min-width: 600px) and (max-width: 768px) {
	.timeline {
		
		&::before {
			left: 26%;
		}
	}
	.timeline-grid {
		grid-template-columns: 30% 70%;
	}
		
	
	
	.onv_timelineDate.onv_visible {
		font-size: 65px !important;
		
	}
	.onv_timelineDate.onv_visible {
	
		&::after {
			display: none;
		}
	}
	
	
	.event-container.onv-customer-event {
		.customer-event-layout {
		display: block;
			width: 100%;
	}
	
	}
    

	.picture-container img {
		max-width: 380px;
		border-radius 4px;
	}
	.onv-timeline-video-container iframe {
    width: 380px;
    height: auto;
}
	.onv-single-slide img {
		max-width: 380px;
	}

	.timeline-grid {
		gap: 0px;
	}
	.event-container {
		width: 90%;
	}
	
	

}


@media (min-width: 1024px) and (max-width: 2560px)   {

.timeline-placeholder-bottom {
	height: 500px;
}
}


@media (min-width: 769px) and (max-width: 1024px)   {
	.timeline {
		&::before {
			left: 23.6%;
		}
	}
	.timeline-grid {
		grid-template-columns: 25% 75%;
	}
	.onv_timelineDate {
		margin: 0px;
		padding-left: 0px;
		justify-content:left;
		
		&::after {
			display: none;
		}
	}
	
	.onv_timelineDate.onv_visible {
		font-size: 90px !important;
		
	}
	
	.event-container.onv-customer-event {
		.customer-event-layout {
		width: 90%;
	}
		.description {
     margin: 4% 2%;
	}

	}
   
	



}