/*
 * v1.0
 */
ul li {
	list-style:none;
}
.linha-do-tempo {
	position: relative;
	height: auto;
	padding: 0px;
	margin: 0px auto;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.marcador {
	width: 50%;
	float: left;
	height: 100%;
	position: absolute;
	z-index: -1;
	border-right: 4px solid rgb(0, 0, 0);
	box-sizing: border-box;
}
.ano {
	background-color: #fff;
	text-align: center;
	margin: 35px auto 0 auto;
	clear: both;
	width: 100%;
}
.ano p {
	margin-bottom: 0;
}
.item {
	width: 44%;
	margin: 0 auto;
	padding: 1%;
	float: right;
}
.item .item-img {
	height: 100%;
	width: 100%;
	background: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.item:nth-of-type(2n) {
	float: left;
	margin: 4% auto;
	padding: 1%;
}

@media all and (max-width: 991px) {
	.marcador {
		width: 25px;
		float: initial;
	}
	.ano {
		text-align: left
	}
	.item {
    	width: 100%;
    	margin-left: 50px !important;
    	float: initial;
	}
	.item .item-img {
    	height: 400px;
	}
}

@media all and (max-width: 650px) {
	.item {
		width: 80%;
	}
}