/** The smaller carousels on index.php **/
.image-container { position: relative; display: inline-block;}
.offer { position: absolute; top: -4px; left: -6px; background: rgba(231, 76, 60, 1); 
	color: #fff; padding: 2px 4px; font-size: 0.625em; font-weight: bold; border-radius: 4px;
	pointer-events: none; text-align: center; text-transform: uppercase;
	font-family: Geneva, Verdana, sans-serif;}

.feedback_carousel {
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  border: none;
  padding: 10px;
  justify-content: center;
  align-items: center;  
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-itemed {
  flex: 1 1 48%;
  margin: 0 10px;
  flex-shrink: 0;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}
.carousel-itemed p {
  font-size: 0.925em;
  margin-bottom: 8px;
  color: #103d5f;
}
.carousel-itemed small {
  font-size: 0.8125em;
  color: #4f4f4f;
  display: block;
  font-style: italic;
  text-transform: italic;
}
.carousel-itemed.active { display: block; }
.carousel-controls {
  margin-top: 15px;
  text-align: center;
}
.carousel-controls button {
  padding: 6px 14px;
  cursor: pointer;
  margin: 0 8px;
  font-size: 1.25em;
  font-weight: bold;
}

@media (max-width: 600px) {
  .feedback_carousel {
    width: 100%;
    padding: 5px;
  }
  .carousel-itemed {
    width: 90vw;
    margin: 0 5px;
  }
}
/** End of smaller carousels **/