.recent_reviews .card {
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.03);
    border-radius: 80px;
    padding: 50px 0px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.recent_reviews .card .user-img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.recent_reviews .card .user-img i {
    color: #ffffff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 48px;
    /* background: #263f87; */
    background: var(--navigation_color);
    border-radius: 100%;
}

.recent_reviews .card .user-img img {
    color: #ffffff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 48px;
    /* background: #263f87; */
    background: var(--navigation_color);
    border-radius: 100%;
}

.review_content {
    height: 124px;
    overflow: hidden;
}

@media screen and (max-width: 576px) {
    .recent_reviews .card .user-img i,
    .recent_reviews .card .user-img img {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 30px;
    }
}