/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-family: 'Montserrat', sans-serif;
	color: #fff;
}
.timeline-box {
	padding: 50px 0;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.timeline {
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
}
.timeline ul {
	list-style: none;
}
.timeline ul li {
	padding: 20px;
	background-color: #fff;
	color: #000;
	border-radius: 10px;
	margin-bottom: 20px;	
	transition: all ease-in-out .5s;
}
.timeline ul li:last-child {
	margin-bottom: 0;

}
.timeline-content h1 {
	font-size: 25px;
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 10px;
	text-align: justify;

}
.timeline-content > div {
	font-size: 16px !important;
	line-height: 30px;
	font-weight: 300;
	display: none;
}
.timeline-content .date {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

@media only screen and (min-width: 768px) {
	.timeline:before {
		content: '';
		position: absolute;
		height: 100%;
		width: 4px;
		left: 50%;
		transform: translateX(-50%);
		background-color: #00C851;
	}
	.timeline ul li {
		width: 50%;
		margin-bottom: 50px;
		position: relative;
	}
	.timeline ul li:nth-child(odd) {
		float: left;
		clear: right;
		transform: translateX(-30px);
		border-radius: 20px 0 20px 20px;
		box-shadow: -1px 1px 3px 1px #00c851;
	}
	.timeline ul li:nth-child(odd):hover {
		box-shadow: -2px 2px 10px 3px #FF8800;
	}
	.timeline ul li:nth-child(even) {
		float: right;
		clear: left;
		transform: translateX(30px);
		border-radius: 0 20px 20px 20px;
		box-shadow: 1px 1px 3px 1px #00c851;
	}
	.timeline ul li:nth-child(even):hover {
		box-shadow: 2px 2px 10px 3px #FF8800;
	}
	.timeline ul li:after {
		content: '';
		position: absolute;
		height: 20px;
		width: 20px;
		background-color: #00C851;
		border-radius: 50%;
		top: 0;
		transition: all ease-in-out .5s;
	}
	.timeline ul li:nth-child(odd):after {
		right: -30px;
		transform: translate(50%, -50%);
	}
	.timeline ul li:nth-child(even):after {
		left: -30px;
		transform: translate(-50%, -50%);
	}
	.timeline ul li:hover:after {
		background-color: #FF8800;
	}
	.timeline-content .date {
		position: absolute;
		top: -30px;
	}
	.timeline-content-item.show {
		display: block;
	}
} */


/* More */
#more {
	transition: all .4s;
	position: fixed;
	top: 100px;
	left: -20px;
	width: 100%;
	border: none;
	outline: none;
	z-index: 999;
}
#more > a {
	position: absolute;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	text-decoration: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #007b5e;
	color: #FF8800;
	cursor: pointer;
	z-index: 1;
}
#more > a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 40px;
}
#more > a i {
	transition: all .4s;
}
#more > div {
	position: absolute;
	left: 40px;
	top: 0;
	background-color: #007b5e;
	border-radius: 10px;
	visibility: hidden;
	opacity: 0;
	transition: all linear .4s;
}
#show-more h5 > a:hover {
	color: #FF8800 !important;
	transform: scale(1.2, 1.2) !important;
}
#more .show-item > ul {
	display: none;
}
#more .show-item > ul li {
	padding-left: 20px;
}
#more.active {
	left: 0;
}
#more.active > a i {
	transform: rotate(45deg);
}
#more > div.show {
	visibility: visible;
	opacity: 1;
	z-index: 0;
}
#more .show-item > ul.show {
	display: initial;
}
.show-item > a > i {
	transition: all .4s;
}
.show-item > a > i.active {
	transform: rotate(90deg);
}