.module-history .timeline {
	position: relative;
	margin: 0 auto;
	padding-top: 50px;
}
.module-history .module-heading {
	text-align: center;
}
.module-history .timeline-item .year {
	margin: 0 0 15px;
	font-size: 77px;
	color: var(--fifth-background-color);
	font-weight: 500;
	transition: color 0.3s ease;
}
.module-history .timeline-item .title {
	margin: 0 0 15px;
	font-size: 18px;
	font-weight: 500;
}
.module-history .timeline-item p {
	margin: 0;
	color: var(--fifth-text-color);
}
.module-history .timeline-item:nth-child(odd):after {
	content: '';
	position: absolute;
	width: 3px;
	background-color: var(--fifth-background-color);
	top: 0;
	bottom: 0;
	right: -3px;
	transform: translateX(-50%);
	transition: background-color 0.3s ease;
}
.module-history .timeline-item:nth-child(even):after {
	content: '';
	position: absolute;
	width: 3px;
	background-color: var(--fifth-background-color);
	top: 0;
	bottom: 0;
	left: 0;
	transform: translateX(-50%);
	transition: background-color 0.3s ease;
}
.module-history .timeline-item:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	right: -10px;
	background-color: var(--fifth-background-color);
	top: 0;
	border-radius: 50%;
	z-index: 1;
	transition: background-color 0.3s ease;
}
.module-history .timeline-item.active .year {
	color: var(--secondary-background-color);
}
.module-history .timeline-item.active:nth-child(odd):after,
.module-history .timeline-item.active:nth-child(even):after,
.module-history .timeline-item.active:before,
.module-history .timeline-item.active + .timeline-item:before {
	background-color: var(--secondary-background-color);
}
.module-history .timeline-item {
	padding: 15px;
	position: relative;
	width: 50%;
}

.module-history .timeline-item .content {
	margin-top: -50px;
	position: relative;
}

.module-history .timeline-item.left {
	left: 0;
	padding-right: 100px;
}

.module-history .timeline-item.right {
	left: 50%;
	padding-left: 100px;
}

.module-history .timeline-item.left .content {
	text-align: right;
}

.module-history .timeline-item.right .content {
	text-align: left;
}
.module-history .timeline-item.right:before {
	left: -10px;
}

@media screen and (max-width: 991px) {
	.module-history .module-heading {
		text-align: left;
	}
	.module-history .timeline {
		display: flex;
		overflow-x: auto;
		padding-top: 20px;
	}
	.module-history .timeline-item {
		width: 255px;
		padding: 0 !important;
		left: unset !important;
		right: unset !important;
		flex-shrink: 0;
	}
	.module-history .timeline-item .content {
		margin-top: 30px;
		text-align: left !important;
	}
	.module-history .timeline-item .year {
		font-size: 36px;
		color: var(--secondary-background-color);
	}
	.module-history .timeline-item .title {
		font-size: 16px;
	}
	.module-history .timeline-item:nth-child(odd):after {
		content: '';
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: var(--fifth-background-color);
		top: 0;
		bottom: 0;
		right: 0;
		left: 15px;
		transform: none;
		transition: background-color 0.3s ease;
	}
	.module-history .timeline-item:nth-child(even):after {
		content: '';
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: var(--fifth-background-color);
		top: 0;
		bottom: 0;
		right: 0;
		left: 15px;
		transform: none;
		transition: background-color 0.3s ease;
	}
	.module-history .timeline-item.right:before {
		left: 15px;
	}
	.module-history .timeline-item:before {
		content: '';
		position: absolute;
		width: 15px;
		height: 15px;
		right: unset;
		background-color: var(--fifth-background-color);
		top: -6px;
		border-radius: 50%;
		z-index: 1;
		transition: background-color 0.3s ease;
	}
}