.testimonial-wrapper
{
	overflow: hidden;
}

.wrapper
{
	display: flex;
	align-items: center;
}


@media screen and (max-width: 991px)
{
	.wrapper
	{
		display: block;
		text-align: center;
	}
}

.image-container
{
	/* width: 100%;
	max-width: 320px;
	margin: 15px auto; */
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	
}

.image-container img
{
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;	
	object-fit: cover;
	max-width: 488px;
}

@media screen and (max-width: 768px)
{
	.image-container img
	{
		display: none;
	}	
}

.testimonial_reviews_row
{
	text-align: right;
}

@media screen and (max-width: 991px)
{
	.testimonial_header_row,	
	.testimonial_reviews_row
	{
		text-align: center;
	}	
}

.testimonials-container
{
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;

}

.swiper-container-horizontal.bottom-margin
{
	/* max-width: 400px; */
	display: flex;
    align-items: center;
    /* margin-bottom: -230px; */
    height: 100%;
    height: 450px;
}

@media screen and (max-width: 768px)
{
	.swiper-container-horizontal.bottom-margin
	{
		margin-top: 50px;
	}	
}

.testimonials-container .swiper-container-horizontal
{
	overflow: hidden;
}


.testimonials-container .swiper-slide
{
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 768px)
{
	.testimonials-container .swiper-slide
	{
		justify-content: center;
		margin-left: 0;
	}
}

.testimonials-container .swiper-slide .single-testimonial
{
	position: relative;
	max-width: 460px;
	background-color: #ffffff;
	padding: 60px 30px 40px 30px;
    margin-bottom: 30px;    
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	z-index: 1;
}

.testimonials-container .swiper-slide .single-testimonial::before
{
	content: url('/images/quote-icon.png');
	display: block;
	position: absolute;
	right: 20px;
	top: 30px;
	color: green;
}

@media screen and (max-width:1200px)
{
	.testimonials-container .swiper-slide
	{
		max-width: none;
	}
}

.swiper-arrow
{
	height: 40px;
	width: 40px;
	cursor: pointer;
	outline: none;
	transition: transform 200ms;
	background-color: #35A565;
	position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    display: block;
}

.swiper-arrow img
{
	position: relative;
    left: 10px;
    top: 7px;
}

.swiper-arrow.swiper-button-disabled
{
	cursor: not-allowed;
	opacity: 0.5;
}


.swiper-arrow.prev:not(.swiper-button-disabled):hover
{
	transform: translateX(-4px);
}

.swiper-arrow.next
{
    right: 300px;
    z-index: 1;
}

.swiper-arrow.prev
{
    right: 370px;
    z-index: 1;
}

.swiper-arrow.next:not(.swiper-button-disabled):hover
{
	transform: translateX(4px);
}

@media screen and (max-width:991px)
{
	.swiper-arrow
	{
		display: none;
	}
}

.testimonials-controls .testimonials-pagination
{
	position: absolute;
	z-index: 100;
	bottom: -30px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	display: none;
}

.testimonials-controls .testimonials-pagination .swiper-pagination-bullet
{
	width: 12px;
	height: 12px;
	background: #CFCFD0;
	/* filter: drop-shadow(0 0 5px rgba(0,0,0,0.8)); */
	opacity: 0.8;
	margin-right: 18px;
	transition: all 200ms;
}

.testimonials-controls .testimonials-pagination .swiper-pagination-bullet:hover
{
	opacity: 1;
}

.testimonials-controls .testimonials-pagination .swiper-pagination-bullet:last-of-type
{
	margin-right: 0;
}

.testimonials-controls .testimonials-pagination .swiper-pagination-bullet-active
{
	background: #f79b2e;
	opacity: 1;
}

.testimonials-controls .testimonials-pagination .swiper-pagination-bullet-active:hover
{
	background: #F9B971;
	opacity: 1;
}

.view-all-testimonials-wrapper
{
	display: flex;
	justify-content: flex-end;
}

@media screen and (max-width: 991px)
{
	.view-all-testimonials-wrapper
	{
		justify-content: center;
	}
}

.testimonials-name
{
	font-size: 14pt;
	font-family: 'Roboto-Regular';
	color: #000000;
	position: relative;
	line-height: 1.1;
	padding-left: 10px;
	display: flex;
	align-items: center;
}

.testimonials-name::before
{
	content: '';
    position: absolute;
    display: block;
    width: 3px;
    height: 35px;
    background: #2B6D49;
    left: 0;
    /* top: 5px; */
}

.testimonials-review
{
	font-size: 14pt;
	font-family: 'Roboto-Regular';
	color: #373F51;
	text-align: left;
}


.testimonials-content
{
	padding-top: 100px;
}