/*======================================*/
/*Testimonios*/
/*======================================*/
.testimonio{
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    height: auto;
    float: left;
    margin: 30px 0 0 0;
    overflow: hidden;
    padding: 40px 0 20px;
    position: relative;
    width: 100%;
}
	.testimonio .testimonio-capa{
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 1;
	}
	.testimonio .testimonio-titulo{
		box-sizing: border-box;
		margin: 0px auto;
		position: relative;
		width: 90%;
		z-index: 2;
	}
	.testimonio .testimonio-titulo-cl{}
	.testimonio .testimonio-introduccion{
		box-sizing: border-box;
		margin: 20px auto;
		position: relative;
		width: 90%;
		z-index: 2;
	}
	.testimonio .testimonio-introduccion-cl{}
	.testimonio .testimonio-contenedor{/*Contenedor General*/
		height: 300px;
		margin: 60px auto 40px;
		position: relative;
		width: 100%;
	}
		.testimonio .testimonio-contenedor .testimonio-elementos{
			float: left;
			height: 350px;
			margin: 0px auto;
			position: relative;
			transition: left 1s ease-in-out 0s;
			-webkit-transition: left 1s ease-in-out 0s;
			-moz-transition: left 1s ease-in-out 0s;
			-ms-transition: left 1s ease-in-out 0s;
			-o-transition: left 1s ease-in-out 0s;
			z-index: 2;
		}
		.testimonio .testimonio-contenedor .testimonio-elementos-visible{/*Mostrar testimonio rotacion*/
			left: 0%;
			position: absolute;
			top: 0;
			z-index: 2;
		}
		.testimonio .testimonio-contenedor .testimonio-elementos-hidden{/*Ocultar testimonio rotacion*/
			left: 100%;
			position: absolute;
			top: 0;
			z-index: -1;
		}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento{
				box-sizing: border-box;
				padding: 0 15%;
				position: relative;
			}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-imagen{
	            display: inline-block;
			    margin: 0 2% 0 0;
			    width: 80px;
			    height: 80px;
			}
				.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-imagen img{
					height: auto;
					width: 100%;
					max-width: 100%;
				}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-imagen-cl{
				display: inline-block;
			}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-titulo-in{
		        box-sizing: border-box;
			    display: inline-block;
			    margin: 0 auto;
			}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-titulo-in-cl{}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-texto{
				box-sizing: border-box;
				margin: 0px auto;
				padding: 20px 0px;
				width: 100%;
			}
			.testimonio .testimonio-contenedor .testimonio-elementos .testimonio-elemento .testimonio-texto-cl{}
		.testimonio .testimonio-contenedor .testimonio-elementos-cl{
			clear: both;
		}
