@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
.timeline-section{
	background-color: #fff;
font-family: 'Poppins', sans-serif;
	min-height: 100vh; 
margin: 30px 0px 30px 15px;

}
.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: #2f363e;
	left: 7px;
}
.timeline-item{
	width: 100%;
	position: relative; margin:20px 0px 10px -10px;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child{
    
	text-align: left;
}
.timeline-dot{
	height: 16px;
	width: 16px;
	background-color: #39b5db;
	position: absolute;
	left: 10px;
	border-radius: 50%;
}
.timeline-date{
font-size: 18px;
color: #39b5db;
margin: -4px 0px 5px 35px;
}
.timeline-content{
background-color: #fbfbfb;
padding: 30px;
border-radius: 5px;
border: 1px solid #bbb8b8
}
.timeline-content h3{
    font-size: 20px;
	color: #282727;
	margin:0 0 10px;
	text-transform: capitalize;
	font-weight: 500;
}
.timeline-content p{
    color: #606060;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}
.timeline-content img{
    width:100%;
}

