@charset "UTF-8";
/* CSS Document */
.testimonials { position: relative; }
.testimonials .grid { margin-top: 0; }
.testimonials .column { padding: 0; }
.testimonials .slidetext h1, .testimonials .slidetext h2, .testimonials .slidetext h3, .testimonials .slidetext h4, .testimonials .slidetext h5, .testimonials .slidetext h6 { color: var(--heading-color); }
.testimonials .slidetext p { color: var(--paragraph-color); }
.testimonials .slidetext {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
	bottom: auto;
	width: 100%;
}
.testimonials .slide {
	opacity: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	left: 100%;
	background-color: transparent;
}
.testimonials .slide.prevSlide {
	left: -100%;
	opacity: 0;
}
.testimonials .slide.curSlide, .testimonials .slidetext.curText {
	left: 0;
	opacity: 1;
}
.quote, .testHead { text-align: center; }
@media (min-width: 768px) {
	.testimonials .quote {
		text-align: left;
		border-left: 6px solid var(--light_panelTint);
		padding-left: 2rem;
		padding-top: 0.75rem;	
	}
	.testimonialGap { gap: 2rem; }
}
/* CONTROLS */
.testimonials .sliderControls {
	justify-content: center;
	left: 0;
	top: auto;
	bottom: 0;
	padding-right: 0;
	height: auto;
	overflow: visible;
}
.testimonials .prevButton, .testimonials .nextButton {
	height: auto;
	background-color: #ffffff;
	width: auto;
	margin: 0;
	background-image: none;
	display: flex;
	justify-content: center;
	gap: 1rem;
	cursor: pointer;
	padding: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transform-origin: 50% 50%;
}
.testimonials .prevButton:hover, .testimonials .nextButton:hover { transform: scale(1.05); }
.testimonials .prevButton p, .testimonials .nextButton p {
	align-self: center;
	margin: 0 10px 0 0;
}
.testimonials .prevButton p, .testimonials .nextButton p { margin-left: 10px; }
.testimonials .prevButton img, .testimonials .nextButton img {
	width: 12px;
	height: 22.5px;
}
.testimonials .nextButton img { rotate: 180deg; }
@media (max-width: 550px) {
	.testimonials .prevButton img, .testimonials .nextButton img {
		width: 8px;
		height: 15px;
	}
}