/* CSS Document */


/* width */
.testimonial-content::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.testimonial-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.testimonial-content::-webkit-scrollbar-thumb {
  background: grey; 
	opacity: .5;
  border-radius: 10px;
}

/* Handle on hover */
.testimonial-content::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

.testimonial-block {
	border: solid grey 2px;
	padding: 25px;
	border-radius: 10px;
}


.testimonial-img {
	margin: 0 10px 0 0;
	width: 100px;
	float: left;
	border-radius: 10px;
}

.testimonial-img img {
	width: 100%;
}

.testimonial-content {
	display: block;
	position: relative;
}