.testimonials--container {
	padding: 60px 30px;
}

.testimonials--lg-title,
.testimonials--sm-title {
	text-align: center;
}

.testimonials--title {
	font-weight: 700;
}

.testimonials--name {
	margin-bottom: 0;
	font-style: normal;
}

.testimonials--company,
.testimonials--position {
	font-weight: 400;
	margin-bottom: 0;
	font-style: normal;
}

@media (max-width: 991px) {
	.testimonials--row {
		margin-top: 60px;
	}

	.testimonials--col {
		margin-bottom: 45px;
	}

	.testimonials--card {
		position: relative;
	}

	.testimonials--background {
		position: relative;
		background-color: var(--theme-light-blue);
		margin: -30px;
		padding: 45px 15px;
		overflow: hidden;
	}

	.testimonials--background:before,
	.testimonials--background:after {
		content: "";
		position: absolute;
		top: -1px;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 100vw 30px 0;
		border-color: transparent #fff transparent transparent;
	}
	.testimonials--background:after {
		top: auto;
		bottom: -1px;
		left: auto;
		right: 0;
		border-width: 30px 0 0 100vw;
		border-color: transparent transparent transparent #fff;
	}

	.testimonials--card-inside {
		background: #fff;
		padding: 15px;
		border-radius: 10px;
	}
}

@media (min-width: 992px) {
	
	.testimonials--section {
		overflow: hidden;
	}
	
	.testimonials--row {
		position: relative;
		margin-bottom: 60px;
		margin-top: 60px;
	}
	
	.testimonials--col {
		margin-top: 45px;
		margin-bottom: 45px;
	}
	
	.testimonials--background-desktop {
		position: absolute;
		width: 100vw;
		top: 0;
		bottom: 0;
		left: calc(50% - 50vw);
		background-color: var(--theme-light-blue);
		margin: -45px 0;
	}
	
	.testimonials--card {
		background: #fff;
		padding: 20px;
		border-radius: 10px;
		margin-bottom: 0;
	}
	
	.testimonials--background-desktop:before,
	.testimonials--background-desktop:after {
		content: "";
		position: absolute;
		top: -1px;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 100vw 60px 0;
		border-color: transparent #fff transparent transparent;
	}
	.testimonials--background-desktop:after {
		top: auto;
		bottom: -1px;
		left: auto;
		right: 0;
		border-width: 60px 0 0 100vw;
		border-color: transparent transparent transparent #fff;
	}	
	
}

@media (min-width: 1400px) {
	.testimonials--background-desktop:before {
		border-width: 0 100vw 90px 0;
	}
	
	.testimonials--background-desktop:after {
		border-width: 90px 0 0 100vw;
	}
	
	.testimonials--col {
		margin-top: 75px;
		margin-bottom: 75px;
	}
}