*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.average {
	margin-left: -5em;
    margin-bottom: 1rem;
}

.average span{
	font-size: 1.5rem;	
}

.testimonios{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.testimonios_header{
	margin: 50px 0px;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.testimonios_header h1{
	font-size: 2.9rem;
	font-weight: 500;
	background-color: #202020;
	color: white;
	padding: 10px 20px;
}

.testimonios_header span{
	font-size: 2.2rem;
	color: #252525;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.testimonios_contenedor{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.testimonios_caja{
	display: table;
	width: 1000px;
	/*box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	background-color: white;*/
	padding-top: 5px;
	margin: 5px;
	border-top: solid;
    border-top-width: 1px;
    border-top-color: #00000030;
}

.container-centered{
	display: table-cell;
	vertical-align: middle;
	text-align: -webkit-center;
	width: 70px;
}

.testimony-contain{
	margin: 0px 10px;
}

.perfil_img{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	/*margin-right: 0.5em;*/
}

.perfil_img img{
	width: 100%;
	height: 100%;
	object-fit: center;
	margin-top: 0!important;
}

.perfil{
	display: flex;
	align-items: center;
}
/*Necesitamos una versiÃ³n movil para estos css*/
.name_user{
	display: flex;
	flex-direction: row;
}

.name_user strong{
	color: #3d3d3d;
	font-size: 1rem;
	padding: 0px 5px;
}

.name_user span{
	color: #979797;
	font-size: 0.9rem;
}

.resena{
	color: #fcb900;
	display: flex;
}

.caja_top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
}


.comentario_clientes p{
	color: #4b4b4b;
	text-align: justify;
}

.origin{
	display: flex;
	align-items: center;
	justify-content: end;
}

.origin-mobile{
	display: none;
}

.origin img{
	width: 80px;
	height: auto;
}
/*read more function*/
  .read-more-state {
	display: none;
  }

  .read-more-target {
	opacity: 0;
	max-height: 0;
	font-size: 0;
	transition: .25s ease;
  }
  
  .read-more-state:checked~.read-more-wrap .read-more-target {
	opacity: 1;
	font-size: inherit;
	max-height: 999em;
  }
  
  .read-more-state~.read-more-trigger:before {
	content: '... read more';
  }
  
  .read-more-state:checked~.read-more-trigger:before {
	content: '... read less';
  }
  
  .read-more-trigger {
	cursor: pointer;
	display: inline ;
	color: #ffb606;
  }

/*styles for mobile devices*/
@supports (max-width: 480px) {
	.testimonios_caja{
		display: flex;
		/*box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
		background-color: white;*/
	}

	.container-centered{
		display: flex;
		justify-content: center;
		width: 50px;
	}
	
	.perfil{
		display: flex;
		align-items: center;
	}
	/*Necesitamos una versiÃ³n movil para estos css*/
	.name_user{
		flex-direction: column;
	}

	.name_user strong{
		padding: 0px 0px;
	}
	
	.origin{
		display: none;
	}

	.origin-mobile{
		display: flex;
		align-items: center;
		justify-content: end;
	}
	
	.origin-mobile img{
		width: 80px;
		height: auto;
	}
}