
.containers {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: ;
	padding: 100px 0;
}


.header2 {
	background-color: ;
	text-align: center;
	padding-top: 50px;
  padding-bottom: px;
  margin-bottom:0px;

	font-size: 45px;
  font-weight:700;
  color:#fff;
}
.timeline {
	width: 80%;
	height: auto;
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
}
.timeline h2 {
	font-size: 30px;
	letter-spacing: 5px;
	margin: 50px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.timeline ul {
	list-style: none;
}
.timeline ul li {
	padding: 20px;
	background-color: #1e1f22;
	color: white;
	border-radius: 10px;
	margin-bottom: 20px;
}
.timeline ul li:first-child {
	margin-top: 20px;
}

.timeline ul li:last-child {
	margin-bottom: 0;
}

.timeline-content h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 30px;
}
.lines {
	border-top: 2px dotted rgb(88, 31, 31);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.timeline-content p {
	font-size: 16px;
	line-height: 35px;
	font-weight: 500;
	letter-spacing: 1px;
}

@media only screen and (min-width: 768px) {
	.timeline::before {
		content: '';
		position: absolute;
		top: 20px;
		height: 100%;
		width: 2px;
		left: 51.3%;
		transform: translate(-50%);
		background-color: white;
	}

	.timeline {
		width: 100%;
		padding: 10px;
	}
	.timeline ul li {
		width: 50%;
		margin-bottom: 50px;
		position: relative;
	}
	.timeline ul li:nth-child(odd) {
		float: left;
		clear: right;
		transform: translateX(-30px);
		border-radius: 20px 0px 20px 20px;
		transition: background-color 0.5s ease-out;
	}
	.timeline ul li:nth-child(odd) {
		background-color: rgb(42, 53, 70);
		transition: 1s;
	}

	.timeline ul li:nth-child(even) {
		float: right;
		clear: left;
		transform: translateX(30px);
		border-radius: 0px 20px 20px 20px;
		transition: background-color 0.5s ease-out;
	}

	.timeline ul li:nth-child(even) {
		background-color: #4c5e4c;
	}

	.timeline ul li::after {
		content: '';
		position: absolute;
		height: 20px;
		width: 20px;
		background-color: grey;
		border-radius: 50%;
		top: 0;
	}
	.timeline ul li:nth-child(odd)::after {
		right: -30px;
		transform: translate(50%, -50%);
	}
	.timeline ul li:nth-child(even)::after {
		left: -30px;
		transform: translate(-50%, 50%);
	}
	.timeline ul li:hover::after {
		background-color: #fdd700 ;
	}
}