#testimonials {
	background-color: #1D1D1D;
	color: #FFF;
}
@media (min-width: 900px)	 {
	#testimonials {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
@media (max-width: 899.99px) {
	#testimonials {
		padding-top: 75px;
		padding-bottom: 75px;
	}
}

/*--------------------------------------------------------------------------------------------------*/

#testimonials > .content-wrapper {
	text-align: center;
}
#testimonials > .content-wrapper > .title {
	max-width: 950px;
	margin: 0 auto 50px;
	
	text-transform: uppercase;
	font-family: 'Stretch Pro';
	font-size: 40px;
}
@media (min-width: 900px)	 { #testimonials > .content-wrapper > .title { font-size: 50px; } }
@media (max-width: 899.99px) { #testimonials > .content-wrapper > .title { font-size: 24px; } }
#testimonials > .content-wrapper > .description {
	max-width: 460px;
	margin: 0 auto;
	
	line-height: 20px;
	font-size: 14px;
	font-weight: 500;
}

/*--------------------------------------------------------------------------------*/

#testimonials > .slider-wrapper {
	position: relative;
	margin-top: 75px;
}

/*--------------------------------------------------------------------------------*/

#testimonials > .slider-wrapper > .swiper { overflow: visible; }
#testimonials > .slider-wrapper > .swiper > .swiper-button-next {}
@media (min-width: 900px) {
	#testimonials > .slider-wrapper > .swiper > .swiper-button-next {
		top: 50%; left: 84vw; transform: translate(-50%, -50%);
		display: block; height: 150px; width: 150px;
		margin: 0;

		background-color: #F2F2F2;
		background-image: url("../../images/emojis/left.png");
		background-position: center;
		background-size: 35% auto;
		background-repeat: no-repeat;
		border-radius: 50%;
	}
	#testimonials > .slider-wrapper > .swiper > .swiper-button-next:after { content: none; }
	.loaded #testimonials > .slider-wrapper > .swiper > .swiper-button-next { transition: background-color .2s ease-out; }
	#testimonials > .slider-wrapper > .swiper > .swiper-button-next:hover { background-color: #FFDA17; }
}
@media (max-width: 899.99px) {
	#testimonials > .slider-wrapper > .swiper > .swiper-button-next { display: none; }
}

/*--------------------------------------------------------------------------------*/

#testimonials > .slider-wrapper > .cta {}
@media (min-width: 900px) {
	#testimonials > .slider-wrapper > .cta {
		position: absolute; top: -120px; left: max(700px, min(75%, 50% + 450px)); z-index: 1;
		
		text-align: left;
		font-family: "Stretch Pro";
		font-size: 15px;
	}
	#testimonials > .slider-wrapper > .cta:before {
		content: '';
		position: absolute; top: -20px; left: -120px; transform: scaleX(-1) rotate(-10deg);
		display: block; height: 130px; width: 130px;
		
		background-color: #FFF;
		
		-webkit-mask-image: url("../../images/arrow.gif");
		mask-image: url("../../images/arrow.gif");
		-webkit-mask-size: contain;
		mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
}
@media (max-width: 899.99px) {
	#testimonials > .slider-wrapper > .cta { display: none; }
}

/*--------------------------------------------------------------------------------------------------*/

#testimonials > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 50px;
}
#testimonials > .cta-wrapper > .jobs-btn {
	display: flex; height: 150px; width: 150px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	padding: 20px;
	
	background-color: #F2F2F2;
	border-radius: 50%;
	
	text-align: center;
	line-height: 18px;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	color: #000;
	
	cursor: pointer;
	
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out;
}
#testimonials > .cta-wrapper > .jobs-btn:hover {
	background-color: #000;
	color: #FFF;
}
#testimonials > .cta-wrapper > .jobs-btn:before {
	content: '';
	display: block; height: 35px; width: 50px;
	
	background-image: url("../../images/emojis/submit.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}