.customer-reviews {
    background-color: #C3852D;
    color: #FFF;
    padding: 20px;
}
.customer-reviews hr {
    border: 2px solid #FFF;
}
.table {
    table-layout: fixed;
    width: 100%;
}
.table-custom th {
    font-size: 1.4em;
    font-weight: normal;
}
.table-custom td {
    font-size: 1.1em;
    font-weight: bold;
    white-space: nowrap;
    align-items: center;
}
.table-custom td p {
    display: inline-block;
    margin: 0 5px;
}
.star-rating {
    display: inline-block;
}
.star-rating .star {
    font-size: 1.2em;
    height: 21px;
}
.relevant-customer-reviews {
    position: relative;
    background-image: url('../images/customer-testimonial.jpg');
    height: 92vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: #FFF;
    padding: 40px;
}
.relevant-customer-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.relevant-customer-reviews-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.relevant-customer-reviews-content h2 {
    font-size: 3em;
    font-weight: bolder;
}
.testimonial-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background-color: rgba(195, 133, 45, 0.8);
    padding: 20px;
    margin-top: 40px;
    border: 1px solid #FFF;
    border-radius: 4px;
}
.testimonial-box-content h2 {
    font-size: 1.6em;
    font-weight: bolder;
    margin-top: -5px;
}
.testimonial-box-content p {
    text-align: right;
}
.customer-review hr {
    border: 2px solid #000;
}
.customer-review h2 {
    background-color: #FFF;
    color: #C3852D;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: -10px;
    font-size: 2.3em;
    text-align: left;
}
.review-box hr {
    width: 40%;
    border: 1px solid #DEDEDE;
}

@media (max-width: 992px) {
    .relevant-customer-reviews {
        height: 165vh;
    }
}
@media (max-width: 768px) {
    .table-custom th {
        font-size: 0.8em;
    }
    .table-custom td {
        font-size: 0.6em;
    }
    .star-rating .star {
        font-size: 0.8em;
        height: 10px;
    }
    .relevant-customer-reviews {
        height: 205vh;
    }
}
