.seccion-clientes{
	width: 100%;
	background: white;
	padding: 80px 0px;
}
.seccion-clientes-in{
	width: 1200px;
	max-width: 100%;
	background: white;
	margin: 0 auto;
	padding: 50px;
	text-align: center;
	border-radius: 20px;
}
.seccion-clientes-in h3{
	font-weight: 900;
	font-size: 50px;
	margin-bottom: 20px;
}
.seccion-clientes-in .cliente-seccion-clientes{
	position: relative;
	display: inline-block;
	width: 250px;
	background: transparent;
	box-shadow: 0px 0px 5px #d2d2d2;
	transition: all 0.8s;
	margin: 10px 10px 80px 10px;
}
.seccion-clientes-in span{
	position: absolute;
	bottom: -40px;
	width: 100%;
	height: 40px;
	background: rgba(209, 158, 102 ,1);
	left: 0;
	font-weight: 900;
	font-size: 21px;
	line-height: 40px;
	color: white;
	text-shadow: 0px 0px 1px white;
	box-shadow: 0px 0px 10px black;
}
.cliente-seccion-clientes img{
	width: 100%;
}
.seccion-clientes-in .cliente-seccion-clientes:hover{
	transform: scale(1.1);
}