.tweets {
	display: block;
	float: left;
	width: 100%;
}
.tweets li {
	width: 10%;
	float: left;
	text-align: center;
	opacity: 0.4;
	transition: all 0.4s;
	cursor: pointer;
}
.tweets li:hover, .tweets li.active {
	opacity: 1;
	transition: all 0.4s;
}
.tweets li:hover img, .tweets li.active img {
	transform: scale(1.2);
	transition: all 0.3s;
}
.tweets li img {
	border-radius: 50%;
	transform: scale(1);
	transition: all 0.3s;
}
.tweet-content {
	padding-top: 20px;
	margin-top: 20px;
	text-align: center;
	width: 100%;
	float: left;
}
.tweet-content li {
	display: block;
}
.tweet-content h4 {
	font-weight: 500;
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 18px;
}
.tweet-content blockquote {
	font-size: 15px;
	line-height: 23px;
	color: #383838;
	font-style: italic;
	margin: 0;
	padding: 0;
	text-align: center;
}