.timeline-section{
	background-color: var(--bg-primary);
	padding: 1em;
	margin-top: 1em;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: var(--bg-secondary);
	left: calc(50% - 1px);
	animation: zoomIn 0.7s ease-in;
}
.timeline-item{
	margin-bottom: 1.5em;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
  	padding-right: calc(50% + 25px);
	text-align: right;
	animation: fadeOut 0.9s ease-in-out;
}
.timeline-item:nth-child(even){
  	padding-left: calc(50% + 25px);
	animation: fadeIn 1.2s ease-in-out;
}
.timeline-dot{
	height: 14px;
	width: 14px;
	background-color: var(--fa-p);
	position: absolute;
	left: calc(50% - 8px);
	border-radius: 50%;
	top:10px;
}
.timeline-date{
	font-size: 18px;
	color: var(--fa-p);
	margin:6px 0 15px;
}
.timeline-content{
	background-color: var(--bg-secondary);
	padding: 1em 1.5em;
	border-radius: 8px;
}
.timeline-content h3{
  font-size: 20px;
	color: var(--text-secondary);
	margin:0 0 10px;
	font-weight: 500;
	/*text-transform: capitalize;*/
}
.timeline-content p{
  color: var(--text-primary);
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}

.timeline-location{
	font-size: 1em;
	color: var(--text-primary);
	font-weight: bold;
	text-transform: uppercase;
	margin:-4px 0 15px;
}

.level {
	font-size: .8em;
	color: var(--text-primary);
}

.list-dot {
	font-size: 1.25em;
	font-weight: bolder;
	margin-right: .5em;
	color: var(--fa-p);
}

@keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateX(25px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
}

@keyframes fadeOut {
	from {
	  opacity: 0;
	  transform: translateX(-25px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
}


/* responsive */
@media(max-width: 767px){
	.timeline-items::before{
		left: 7px;
	}
	.timeline-item:nth-child(odd){
		padding-right: 0;
		text-align: left;
	}
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even){
		padding-left: 37px;
	}
	.timeline-dot{
		left:0;
	}
}
