#featuredReviews {
    background-color: #d5d5d5;
    border: solid 1px #dfdfdf;
    width: 100%;
}

.spotlight {
    margin: 0px;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: 1fr;
}

.spotlight-head {
    grid-column-start: 2;
    grid-row-start: 1;
    width: 100%;
    height: 4rem;
    align-items: center;
}

.spotlight h2 {
    display: inline;
}

.spotlight h3 {
    display: inline;
}

.spotlight h2,
h3,
h4 {
    font-weight: bold;
    letter-spacing: 0em;
}

.spotlight p {
    text-align: center;
}

.mySlides {
    grid-column-start: 2;
    grid-row-start: 2;
    justify-self: center;
}

.review-wrap {
    margin: 1em;
    text-align: center;
}

.prev,
.next {
    cursor: pointer;
    position: relative;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #A9A9A9;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next {
    border-radius: 3px 0 0 3px;
    grid-column-start: 3;
    grid-row-start: 2;
    height: 40px;
    text-align: center;
}

.prev {
    grid-column-start: 1;
    grid-row-start: 2;
    height: 40px;
    text-align: center;
}

.prev:hover,
.next:hover {
    color: rgba(0, 0, 0, 8);
}

.dotbox {
    margin: 1rem;
    grid-row-start: 3;
    grid-column-start: 2;
    background-color: #d5d5d5;
    text-align: center;
    display: flex;
    justify-content: center;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #A9A9A9;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.customActive,
.dot:hover {
    background-color: #000;
}
