* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

#testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-heading h1 {
    font-size: 16px;
    font-weight: 500;
    background-color: #202020;
    color: #ffffff;
    padding: 10px 20px;
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;

}
.reviews svg{
    fill: red;
}
.testimonial-box {
     width: 47%;
    box-shadow: 2px 2px 30px rgb(0, 0, 0, 0.1);
    padding: 10px;
    margin: 5px;
    min-height: 201px;
    background: white;
    border-radius: 8px;
}



.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile {
    display: flex;
    align-items: center;

}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.name-user span {
    font-size: 14px;
    /* color: #bc8a1b; */
}

.reviews {
    color: #bc8a1b;
    font-size: 20px;

}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comment p {
    font-size: 14px;
    color: #4b4b4b;
}


@media(max-width:1060px){
    .testimonial-box {
        width: 45%;
        min-height: 190px;
       
      
    }
}
@media(max-width:690px){
    .testimonial-box{
        width: 100%;
        min-height: 190px;
      
      
    }
    
}
@media(max-width:790px){
    .box-top{
      flex-wrap: wrap;
      margin-bottom: 10px;
      
    }
}
