.module--timeline_horizontal {
  display: flex;
	flex-wrap: wrap; 
}
.module--timeline_horizontal .timeline-event {
	line-height: 1.3em;
	text-align: center;
	width: 100%;
}
.module--timeline_horizontal .timeline-event h3,
.module--timeline_horizontal .timeline-event h4 {
	margin-bottom: 5px;
}
.module--timeline_horizontal .timeline-tag {
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
} 
.module--timeline_horizontal .timeline-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.module--timeline_horizontal .timeline-content {
	padding: 30px;
}

@media (min-width: 1024px) {
	.module--timeline_horizontal .timeline-event {
		flex: 1;
	}

	.module--timeline_horizontal .timeline-wrapper:before {
		content: '';
		border-bottom: solid 1px #000;
		display: block;
		left: 0;
		position: absolute;
		height: 1px;
		width: 0;
		z-index: 1;
    /*transition: all 2000ms ease 4000ms; /* Animation on transition */
	}
	.module--timeline_horizontal .timeline-event.aos-animate .timeline-wrapper:before {
		/* show on animate */
		width: 100%;
	}
	.module--timeline_horizontal .timeline-event.aos-animate:first-child .timeline-wrapper:before,
	.module--timeline_horizontal .timeline-event.aos-animate:last-child .timeline-wrapper:before{
		width: 50%;
	}

	.module--timeline_horizontal .timeline-event:first-child .timeline-wrapper:before{
		left: unset;
		right: 0;
	}
}