@charset "UTF-8";

.carousel {
  position: relative; /* Required for absolute positioning inside */
  max-width: 990px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .carousel {
   max-width: 90%;
  }
}
.item {
	display: none;
	text-align: center;
	overflow: hidden;
    min-height: 280px;
}

.item.active {
      display: block;
    }

.testimonial {	
	padding: 10px 0 10px;
	font-family: PTSans-Italic;
	font-size: 24px;
}

@media (max-width: 700px) {
  .testimonial {
   font-size: 20px;
  }
}

.overview {	
	text-align: center;
	padding-bottom: 5px;
	font-family: Arial, sans-serif;
	font-size: 18px;
}
.overview b {
	color: #333;
	font-size: 18px;
	text-transform: uppercase;
	display: block;	
	padding-bottom: 5px;
}



.control {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* allows clicks only on children */
}

.control-left {
  padding-left: 10px;
  color: #6C6C6C;
  font-size: 30px;
  cursor: pointer;
  pointer-events: all;
}

.control-right {
  padding-right: 10px;
  color: #6C6C6C;
  font-size: 30px;
  cursor: pointer;
  pointer-events: all;
}
