/** TESTIMONIALS **/
.testimonial-page {
	padding: 60px 0px;
}

.testimonial {
	width: 100%;
	max-width: 550px;
	clear: both;
}

.testimonial-post {
	clear: both;
	padding: 40px;
	position: relative;
}

.testimonial-post-odd {
	float: left;
}

.testimonial-post-even {
	float: right;
}

.testimonial-post.tp-image .image {
	position: absolute;
	width: 50%;
	overflow: hidden;
	text-align: center;
	top: 0;
	bottom: 0;
	right: 0;
}

.testimonial-post.tp-image .image img {
	width: 100%;
	height: auto;
}

.testimonial-post.tp-image .text-wrapper {
	float: left;
	width: 45%;
}

.testimonial-post .name {
	color: var(--primaryColour);
}

.testimonial .tail {
	margin: 0px 0px 20px 30px;
}

.testimonial .tail:after {
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 30px 0px 0px 60px;
	border-color: var(--seconderyColour) transparent transparent transparent;
}

.testimonial .tail img {
	width: 100%;
	max-width: 81px;
	max-height: 41px;
}

.testimonial-post {
	background-color: var(--seconderyColour);
	color: #FFFFFF;
}



/** STATIC FORMS **/
.footer-arrow {
	display: none;
}



/** RESPONSIVE **/
@media screen and (max-width:760px) {

	.testimonial {
		max-width: none;
	}

	.testimonial-post-odd,
	.testimonial-post-even {
		float: none;
	}

	.testimonial-post {
		padding: 0px;
	}

	.testimonial-post.tp-image .image {
		position: static;
		float: none;
		width: 100%;
		height: 200px;
	}

	.testimonial-post.tp-image .text-wrapper,
	.testimonial-post .text-wrapper {
		float: none;
		width: auto;
		padding: 20px;
	}

	.testimonial .tail {
		margin: 0px 0px 20px 20px;
		width: 40px;
	}

}