/**
 * Featured article grid specific styles
 * 
 */

/** General */
		.testimonials .container {
			display: block;
		}

		.testimonials .testimonial-grid {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: stretch;
		}

			.testimonials .owl-carousel .owl-stage{
				display: flex;
			}

			.testimonials .testimonial-grid .single-article-wrap {
				flex: 0 50%;
				height: 100%;
				box-sizing: border-box;
				position: relative;
			}
			.testimonials .testimonial-grid .content-wrap {
				padding: 3em 2em 0 2em;
			}
				.testimonials .testimonial-grid .content-wrap::before {
					content: '';
					background-image: url(../../../images/icons/quotes.svg);
					background-size: contain;
					background-repeat: no-repeat;
					height: 40px;
					width: 50px;
					position: absolute;
					z-index: 5;
					top: 0px;
					left: 2em;
				}
					.testimonials .testimonial-grid p.comment {
						position: relative;
						z-index: 10;
					}
					.testimonials .testimonial-grid p.name {
						display: inline-block;
						margin: 0;
						font-size: 14px;
						font-weight: 500;
					}
					.testimonials .testimonial-grid .fa-star {
						color: #fff;
						font-size: 13px;
					}
					.testimonials .testimonial-grid .fa-star.checked {
						color: #f6b976;
					}

	.testimonials .owl-controls {
		width: 100%;
	}
		.testimonials .owl-carousel.include-pagination .owl-dots {
			margin: 3em 0 0;
		}

/** Responsive */
	@media only screen and (max-width: 1024px) {

		.testimonials .testimonial-grid .content-wrap {
			padding: 2em 1.5em;
		}

	}
	
	@media only screen and (max-width: 959px) {
		
			.testimonials .testimonial-grid .single-article-wrap {
				min-width: 350px;
				display: flex;
				flex: 1 0 auto;
				height: 100%;
			}

	}

	@media only screen and (max-width: 500px) {

		.testimonials .testimonial-grid .single-article-wrap {
			flex: initial;
			min-width: 275px;
		}

		.testimonials .testimonial-grid .content-wrap {
			padding: 0;
		}

	}
