#testamonials a{
    text-decoration: none;
}

#testamonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.testamonial-heading{
    letter-spacing: 1px;
    margin: 30px 0px 5px 0;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testamonial-heading h2{
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    padding: 10px;
    text-shadow: 1px 1px 2px black;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 700;
    font-size: 35px;
}
.testamonial-heading span{
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

}
.testamonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;

}
.testamonial-box{
    display: none;
    width: 500px;
    min-width: 500px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    background-color: #fff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
    height: 200px;

}

.profile-img{
    width: 50px;
    height: 50px;
    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: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    font-size: 0.8rem;
    color: #979797;
}
.reviews{
    color: #f9d71c;

}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment{
    font-size: 0.9rem;
    color: #4b4b4b;
}

@media (max-width:700px){
    .testamonial-box{
        width: 80vw;
        min-width: auto ;
    }
}