.testimonial-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}
.testimonial-container{
    /* width: 80%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.testimonial{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin: 10px 10px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.315);
    border-bottom: 5px solid #0077ff;
}
.testimonial-img{
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    /*border: 2px solid #0077ff;*/
    /* object-fit: cover; */
}
.testimonial-img img{
    
    border-radius: 50%;
    object-fit: contain;
}
.testimonial-desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
}
.testimonial-desc h4,h6{
    color: #000;
}
.testimonial-info{
    color: #111111e3;
}
@media (max-width: 720px){
    .testimonial-container{
        width: 95%;
        flex-direction: column;
        justify-content: center;
    }
    .testimonial{
        width: 85%;
    }
    .testimonial-section{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}