.about-section {}

.timeline {
	position: relative;
	padding: 30px 0;
}

.timeline:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #ffc107;
	left: 50%;
	margin-left: -2px;
}

.timeline-item {
	position: relative;
	margin-bottom: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
	float: right;
	text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
	float: left;
	text-align: right;
}

.timeline-content {
	width: 45%;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 10px;
}

.timeline-item:nth-child(even) .timeline-pic {
	float: left;
	text-align: right;
}

.timeline-item:nth-child(odd) .timeline-pic {

	float: right;
	text-align: left;
}

.timeline-pic {
	width: 45%;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 10px;
}

.timeline-pic img {
	max-height: 15rem;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

.timeline-point {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #ffc107;
	border-radius: 50%;
	top: 30px;
	left: 50%;
	margin-left: -10px;
}

.timeline-date {
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.timeline:before {
		left: 30px;
	}

	.timeline-item:nth-child(even) .timeline-content,
	.timeline-item:nth-child(odd) .timeline-content {
		float: right;
		text-align: left;
		width: calc(100% - 60px);
		margin-left: 60px;
		padding-bottom: 0;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.timeline-point {
		left: 30px;
	}

	.timeline-item:nth-child(even) .timeline-pic,
	.timeline-item:nth-child(odd) .timeline-pic {
		float: right;
		text-align: left;
		width: calc(100% - 60px);
		margin-left: 60px;
		padding-top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.honors-section p {
		margin-bottom: 0;
	}

	.timeline-pic img {
		max-height: none;
		max-width: 100%;
	}
}