#clients_main {
	width: 1200px;
	height: 150px;
	position: relative;
	border: 0; /* рисуем линию снизу div */
	overflow: hidden;
	margin: 20px auto 0;
}
#carousel {
}
#carousel div {
	vertical-align: middle;
	text-align: center;
	width: 200px;
	height: 150px;
	float: left;
	position: relative;
}
#carousel div img {
	border: none;
}
#carousel div span {
	display: none;
}
#carousel div:hover span {
	background-color: #3e3e7c;
	color: #fff;
	font-family: Arial, Geneva, SunSans-Regular, sans-serif;
	font-size: 14px;
	display: inline-block;
	width: 200px;
	padding: 2px 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}
@media (max-width: 768px) {
	#clients_main {
	width: 100%;
	height: 150px;
	position: relative;
	margin-top: 12px;
	overflow: hidden;
}
#carousel div {
	vertical-align: middle;
	text-align: center;
	width: 150px;
	height: 150px;
	float: left;
	position: relative;
}
#carousel div img {
	border: none;
}
#carousel div span {
	display: none;
}
#carousel div:hover span {
	background-color: #3e3e7c;
	color: #fff;
	font-family: Arial, Geneva, SunSans-Regular, sans-serif;
	font-size: 14px;
	display: inline-block;
	width: 150px;
	padding: 2px 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}
}