/** REVIEWS ROTATOR **/
.review {
    transition: all 0.3s linear;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 10%;
    min-height: 195px;
    color: #555;
    justify-content: center;
}

.homeReviews h1 {
    /* color: #fff; */
}

.author {
	margin-bottom: 20px;
	text-transform: capitalize;
	font-weight: 300;
	letter-spacing: 1px;
	font-size: 2rem;
	color:var(--midGreen);
}

.date {
  display: none;
}

.info {
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
}

.prev-btn,
.next-btn {
	fill: #555;
	width: 1.25rem;
	background: transparent;
	border-color: transparent;
	margin: 0;
	transition: all 0.3s linear;
	cursor: pointer;
}

.next-btn {
    margin-right: 50px;
}

.prev-btn:hover,
.next-btn:hover {
	fill: #fff;
}

button svg {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    padding: 10px;
    transition: .3s;
    background:#6dc8b4;
    fill:#fff;
}

button svg:hover {
    background: #f598a2;
    fill: #fff;
}

.homeReviews p {
	color: #555;
}

/** MOVE REVIEW CONTROLS **/
.button-container {
    position: absolute;
    width: 100%;
    margin: auto;
    left: 0;
    z-index: 10;
    display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.homeReviews {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: center;
    width: 100%;
    background: #def3ef;
    overflow-x: hidden;
    margin-bottom:5rem;
}

@media (max-width: 767px) {
    .button-container {
        position: relative;
    }
}

/** REVIEW DOTS **/
#reviewDots {
  gap: 0px 5px;
  display: inline-flex;
}

.reviewDot {
  height: 15px;
  width: 15px;
  display: inline-block;
  border: none;
  border-radius: 100px;
  background: #fff;
}

.reviewDot.active {
  background: #f598a2;
}
.starBlock .fa{color:gold;}