.client-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #f1f1f1;
}

.client-reviews-content {
    display: block;
    width: 85%;
}

.reviews-scroll-arrows {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto 20px;
}

.reviews-scroll-left,
.reviews-scroll-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: solid 1px #b8967e;
}

.reviews-scroll-left:hover,
.reviews-scroll-right:hover {
    background: #b8967e;
}

.reviews-scroll-left:hover #left-arrow,
.reviews-scroll-right:hover #right-arrow {
    content: url(../../icons/right-arrow-white.png);
}

.reviews-scroll-left img,
.reviews-scroll-right img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.reviews-scroll-left {
    position: absolute;
    left: 0;
    transform: rotate(180deg);
}

.reviews-scroll-right {
    position: absolute;
    right: 0;
}

.reviews-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
    position: relative;
    left: 50%;
    margin: 50px auto;
    transform: translateX(-50%);
}

.reviews-container::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.reviews-container::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.reviews-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.client-remark {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.review-centered {
    display: block;
    width: 80%;
    height: fit-content;
}

.client-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.client-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    border: solid 3px #b8967e;
}

.client-review {
    display: block;
    width: 100%;
    height: fit-content;
}

.comment {
    display: block;
    margin: auto;
    width: 100%;
}

.comment p {
    font-size: 30px;
    line-height: 36px;
    color: #0a1e35;
    font-family: 'dragon-serialregular';
    letter-spacing: .0175in;
    text-align: start;
    width: 100%;
}

.quotation-mark {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: relative;
    bottom: 10px;
    left: 0;
}

.client-name {
    color: #b8967e;
    font-family: 'dragon-serialregular';
    letter-spacing: .01in;
    font-size: 30px;
    text-align: center;
    padding-top: 30px;
}

.client-prof {
    color: #0a1e35;
    font-family: 'Montserrat';
    font-size: 15px;
    text-align: center;
    padding-top: 10px;
}

@media screen and (max-width: 768px) {

    .reviews-scroll-left,
    .reviews-scroll-right {
        width: 25px;
        height: 25px;
    }

    .reviews-scroll-left img,
    .reviews-scroll-right img {
        width: 15px;
        height: 15px;
    }

    .client-img img {
        width: 100px;
        height: 100px;
    }

    .quotation-mark {
        width: 35px;
        height: 35px;
    }

    .comment p {
        font-size: 22px;
        line-height: 26px;
    }

    .client-name {
        font-size: 25px;
    }

    .client-prof {
        font-size: 12px;
    }
}

@media screen and (max-width: 425px) {

    .reviews-scroll-left,
    .reviews-scroll-right {
        width: 18px;
        height: 18px;
    }

    .reviews-scroll-left img,
    .reviews-scroll-right img {
        width: 12px;
        height: 12px;
    }

    .quotation-mark {
        width: 28px;
        height: 28px;
    }

    .review-centered {
        width: 100%;
    }

    .comment p {
        font-size: 18px;
        line-height: 22px;
    }

    .client-name {
        font-size: 20px;
    }

    .client-prof {
        font-size: 10px;
    }
}