/* Testimonial */

.module.testimonials{
	padding-top: 60px;
	padding-bottom: 50px;
}

.open-quote{
	width: 89px;
	position: absolute;
	left: 70px;
	top: 20px;
}
.close-quote{
	width: 110px;
	position: absolute;
	right: 70px;
	bottom: 0px;
}

.testimonials .quote{
	font-family: var(--heading);
	font-weight: bold;
	font-size: var(--font-lg);
	line-height: 1.3em;
}

.quote-by h5{
	font-weight: 400;
}

@media screen and (max-width: 991px){
	.testimonials .quote{
		font-size: var(--font-md);
	}
	.open-quote{
		left: 20px;
		width: 75px;
		top: 0;
	}
	.close-quote{
		width: 90px;
		right: 30px;
	}
}

@media screen and (max-width: 767px){
	.testimonials .quote, .testimonials .quote-by{
		padding-left: 30px;
		padding-right: 30px;
	}
	.open-quote{
		width: 50px;
		left: 5px;
	}
	.close-quote{
		width: 70px;
		right: 10px;
		bottom: -10px;
	}
}



