.testimonials-tabs__container {
	margin: 0 auto;
	padding: 0 20px;
}

.testimonials-tabs__header {
	margin-bottom: 40px;
}

.testimonials-tabs__heading {
	color: #2B2B3C;
	text-align: center;
}

.testimonials-tabs__subheading {
	max-width: 770px;
	margin: 24px auto 0;
	color: #2B2B3C;
	text-align: center;
}

.testimonials-tabs .tabs__titles {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
  margin-bottom: 50px;
}

.testimonials-tabs .tabs__title {
	margin: 5px 20px;
	position: relative;
	color: #6D6D81;
	transition: all 0.3s ease;
	cursor: pointer;
}

.testimonials-tabs .tabs__title:after {
	content: '';
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 0;
	transform: scaleX(0);
	background: #5BBB57;
	transition: all 0.3s ease;
}

.testimonials-tabs .tabs__title--active {
	color: #000000;
}

.testimonials-tabs .tabs__title--active:after {
	transform: scaleX(1);
}

.testimonials-tabs .tab-content {
	display: none;
	align-items: center;
}

.testimonials-tabs .tab-content--active {
	display: flex;
	justify-content: center;
}

.tab-content--reverse {
	flex-direction: row-reverse;
}

.testimonials-tabs .testimonial {
	width: 50%;
}

.testimonials-tabs .media {
	width: 50%;
}

/*.testimonials-tabs .testimonial + .testimonials-tabs .media {*/

.testimonial__content + .author {
	margin-top: 24px;
}

.testimonials-tabs .author {
	display: flex;
	align-items: center;
}

.testimonials-tabs .author__info {
	width: calc(100% - 64px - 16px);
}

.testimonials-tabs .author__picture {
	margin-right: 16px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
}

.testimonials-tabs .author__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.testimonials-tabs .author__name {
	font-size: 18px;
}

.testimonials-tabs .author__position {
	font-size: 16px;
}

.testimonials-tabs .media__picture {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 530px;
	margin-left: 45px;
	height: 100%;
}

.testimonials-tabs .media__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}



@media (max-width: 1200px) {
	.testimonials-tabs__heading {
		font-size: 30px;
	}

	.testimonials-tabs__subheading {
		font-size: 16px;
	}

	.testimonials-tabs .tabs__title {
		margin: 5px 10px;
		font-size: 18px;
	}

	.testimonials-tabs .tab-content {
		flex-direction: column;
	}

	.testimonials-tabs .testimonial {
		width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
    margin-
	}

	.testimonials-tabs .media {
		width: 100%;
	}
	
	.testimonials-tabs .testimonial__content {
		font-size: 22px;
	}

	.testimonials-tabs .author__picture {
		margin-right: 12px;
		width: 50px;
		height: 50px;
	}

	.testimonials-tabs .author__info {
		width: calc(100% - 50px - 12px);
	}

	.testimonials-tabs .author__name {
		font-size: 16px;
	}

	.testimonials-tabs .author__position {
		font-size: 14px;
	}

	.testimonials-tabs .media__picture {
		min-height: unset;
		height: 300px;
	}

}

