.testimonial-section {
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(234,237,230,1) 100%);
	padding: 60px 0;
	position: relative;
	text-align: center;
}

.testimonial-slider__wrapper {
	padding: 0 10px;
}

.testimonial-content p {
	font-size: 16px;
}

.testimonial-slider .btn {
	margin-top: 20px;
}

/* arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	border: none;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 0;
	outline: none;
	cursor: pointer;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);

}

.testimonial-slider .slick-prev {
	left: -15px;
}

.testimonial-slider .slick-next {
	right: -15px;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
	content: "";
	width: 30px;
	height: 30px;
	position: relative;
	display: block;
	background-size: contain;
	background-image: url('../../../img/arrow-next.svg');
	background-repeat: no-repeat;
    background-position: center;
}

.testimonial-slider .slick-prev:before {
	transform: rotate(180deg);
}

.testimonial-slider .slick-slider .slick-track {
	display: flex !important;
}

@media (min-width:768px) {
	.testimonial-slider__wrapper {
		padding: 0 50px;
	}
}

@media (min-width:1025px) {
	.testimonial-section:before,
	.testimonial-section:after {
		background-image: url(https://myhopefortomorrow.com/wp-content/uploads/2021/09/testimonials-bottom-deco.png);
		background-position: center left;
		background-repeat: no-repeat;
		background-size: auto 90%;
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.testimonial-section:after {
		transform: scaleX(-1);
	}

	.testimonial-section .container {
		position: relative;
		z-index: 2;
	}
}