a{
    text-decoration: none;
}
#testimonials{

    width:  100%;
    margin-top: 30px;
    margin-bottom: 30px;
}


.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: z;
    flex-wrap: wrap;
    width:100%;
    
}
.testimonial-box{
    width:500px;
    box-shadow: 5px 5px 35px rgba(0,0,0,0.1);
    background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    padding: 30px;
    margin: 20px;
    height:auto;
    cursor: pointer;
    border-radius: 8px;
}

.profile-img img {
    width: 50px;
    border-radius: 50%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    margin-right: 10px;
}

.profile{
    display: flex;
    align-items: center;
   
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #bfbfbf;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 15px;
}
.reviews{
    color: #f9d71c;
}

.reviews i{
    font-size:17px;
    margin-top:10px;
}

.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 15px;
    color: #737373;
}
.testimonial-box:hover{
    transform: scale(1.1);
    transition: all ease 0.4s;
    
    
}