
/*=============================================
MENSAJE DICHO
=============================================*/
.centroPriM{

	margin: 20px auto;
}

.mennCC{
	margin: 30px auto;
}

.menCentt{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 30px;
}

.menCentt h3{
	font-weight: bold;
	font-size: 20px;
	color: #91D851;
}

.menCentt h2{
	font-weight: bold;
	font-size: 25px;
	color: grey;
}

.menCentt hr{
}

.menCentt2{
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 25px auto;
}

.menCentt2 span{
	font-size: 14px;
	color: rgba(0, 0, 0, .7);
}
/*=============================================
ICONOS
=============================================*/

.secMenDes{
	cursor: pointer;
}

.secIconDes{
	display: flex;
	justify-content: center;
}

.secTi{
	display: flex;
	justify-content: center;
}

.secPara{
	display: flex;
	justify-content: center;
	text-align: center;
	margin: auto 40px;
}


.secPara2{
	display: flex;
	justify-content: center;
	text-align: center;
	max-width: 650px;
	margin: auto;
}


.secPara p{
	font-size: 14px;
	color: rgba(0, 0, 0, .7);
}

.secTi h3{
	font-weight: bold;
	font-size: 18px;
	color: grey;
}

.secIconDes i{
	cursor: pointer;
	color: #91D851;
	font-size: 60px;
	margin: 10px auto;
    transition: all 500ms ease;
}

.secIconDes i:hover{
	color: grey;
}

.secPara strong{
	
}

/*===============================
=            CLIENTE            =
===============================*/

.cliente{

	display: flex;
	justify-content: center;
	text-align: center;
}

.cliente h5{
	font-weight: bold;
	color: grey;
	font-size: 17px;
}

@keyframes slide{
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

.logoCli{
	overflow: hidden;
	padding: 30px 0;
	white-space: nowrap;
	position: relative;
}

.logoCli:before,
.logoCli:after {
	position: absolute;
	top: 0;
	width: 200px;
	height: 100%;
	content: "";
	z-index: 2;
}

.logoCli:before {
	left: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logoCli:after {
	right: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logoCli:hover .logosCli-slide{
	animation-play-state: paused;
}

.logosCli-slide{
	display: inline-block;
	animation: 50s slide infinite linear;
}

.logosCli-slide img{
	height: 50px;
	width: 160px;
	margin: 0 20px;
}