/* Cascading Style Sheet  - Quotes Slider */

.carousel {
	position: relative;
	background-color: #939c59!important;
	/* background-image: linear-gradient(0deg, #7a824a, #939c59) */
}
/* .slide is for reviewer quotes, .summary is for chapter summaries  */
.slide, .summary {
	display: none;
	padding: 1rem 4rem;
	text-align: center;
	max-width: 1024px;
	margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 250px;
  width: auto;
  margin-top: -2rem;
  padding: 1rem;
  color: khaki;
  font-weight: bold;
  font-size: 3rem;
  border-radius: 0 .5rem .5rem 0;
  /* user-select: none; */
}
.next {
	position: absolute;
	right: 0;
	border-radius: .5rem 0 0 .5rem;
}
.prev:hover, .next:hover {
	background-color: khaki;
	color: #c90;
}
.indicators {
	text-align: center;
	padding: 1.25rem;
	background-color: #939c59;
	/* background-color: #7a824a; */
}
.chad, .dot {
  cursor: pointer;
  height: 1rem;
  width: 1rem;
  margin: 0 2px;
  background-color: khaki;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .chad:hover, .dot:hover {
	background-color: #c90;
}
q {
	color: lemonchiffon; 
	font: normal 500 1.1rem 'Montserrat';
}
.reviewer, .chapter {
	color: khaki;
	font-size: 1.33rem;
	font-family: 'Arapey';
}
.reviewer span, .chapter span {
	text-transform: uppercase;
	font-size: larger;
	font-family: inherit;
}





















