@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
body
{
	background: #fff;
}
.timeline
{
	position: relative;
	max-width: 1200px;
	margin: 100px auto;
	
}
.containertimeline
{
	padding: 10px 50px;
	position: relative;
	width: 50%;
	animation: movedown 1s linear forwards;
	opacity: 0;
}
@keyframes movedown
{
	0%
	{
		opacity: 1;
		transform: translateY(-30px);
	}
	100%
	{
		opacity: 1;
		transform: translateY(0px);
	}
}
.containertimeline:nth-child(1)
{
	animation-delay: 0s;
}
.containertimeline:nth-child(2)
{
	animation-delay: 1s;
}
.containertimeline:nth-child(3)
{
	animation-delay: 2s;
}
.containertimeline:nth-child(4)
{
	animation-delay: 3s;
}
.containertimeline:nth-child(5)
{
	animation-delay: 4s;
}
.containertimeline:nth-child(6)
{
	animation-delay: 5s;
}
.containertimeline:nth-child(7)
{
	animation-delay: 6s;
}
.containertimeline:nth-child(8)
{
	animation-delay: 7s;
}
.containertimeline:nth-child(9)
{
	animation-delay: 8s;
}
.containertimeline:nth-child(10)
{
	animation-delay: 9s;
}
.containertimeline:nth-child(11)
{
	animation-delay: 10s;
}
.containertimeline:nth-child(12)
{
	animation-delay: 11s;
}
.containertimeline:nth-child(13)
{
	animation-delay: 12s;
}
.text-box
{
	padding: 20px 30px;
	background: #242b3c;
	position: relative;
	border-radius: 6px;
	font-size: 15px;
}
.left-container
{
	left: 0;
}
.right-container
{
	left: 50%;
}
.containertimeline img
{
	position: absolute;
	width: 40px;
	border-radius: 50%;
	right: -20px;
	top: 32px;
	background: #242b3c;
	z-index: 10; 
}
.right-container img
{
	left: -20px;
}
.timeline::after
{
	content: '';
	position: absolute;
	width: 6px;
	height: 100%;
	background: #242b3c;
	top: 0;
	left: 50%;
	margin-left: -3px;
	z-index: -1;
	animation: moveline 6s linear forwards;
}
@keyframes moveline
{
	0%
	{
		height: 0;
	}
	100%
	{
		height: 100%;
	}
}

.text-box h2
{
	font-weight: 600;
	color: #fff;
}
.text-box small
{
	display: inline-block;
	margin-bottom: 15px;
	color: #fff;
}
.text-box p
{
	color: #fff;
}
.text-box ul{
	color: #fff;
}
.left-container-arrow
{
	height: 0;
	width: 0;
	position: absolute;
	top: 28px;
	z-index: 1;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #242b3c;
	right: -15px;
}
.right-container-arrow
{
	height: 0;
	width: 0;
	position: absolute;
	top: 28px;
	z-index: 1;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 15px solid #242b3c;
	left: -15px;
}

@media screen and (max-width: 600px)
{
	.timeline
	{
		margin: 50px auto;
	}
	.timeline::after
	{
		left: 31px;
	}
	.containertimeline
	{
		width: 100%;
		padding-left: 80px;
		padding-right: 25px;
	}
	.text-box
	{
		font-size: 13px;
	}
	.text-box small
	{
		margin-bottom: 10px;
	}
	.right-container
	{
		left: 0;
	}
	.left-container img, .right-container img
	{
		left: 10px;
	}
	.left-container-arrow, .right-container-arrow
	{
		border-right: 15px solid #242b3c;
		border-left: 0;
		left: -15px;
	}
}

.timeline .timeline-date {
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
	position: relative;
	display: block;
	clear: both;
	width: 290px;
	height: 50px;
	padding: 8px;
	border: 1px solid #E5E5E5;
	margin: 0 auto 50px;
	text-shadow: 0 1px 1px #fff;
	border-radius: 4px;
	background: #FFF;
	z-index: 1;
}

.timeline .timeline-date h3 {
	display: block;
	text-align: center;
	color: #757575;
	font-size: 2em;
	line-height: 32px;
}




