.testimonial-container{
 padding-bottom: 50px;
    
}

.testimonial-cards-grid {
    display: grid;
    width: 100%;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    
}
.testimonial-card {
    width: 100%;
    height: auto;
    margin-bottom: 44px;

}
.testimonial-user-img{
    width: 218px;
    margin-top: 20px;
    height: 218px;
    
}
.testimonial-user-img img{
    width: 100%;
    height: 100%;
    border-radius: 13px;
}
.testimonial-details{
    width: 60%;
}
.start-svg{
    width: 110px;
    height: 16px;
}
.mt-16{
    margin-top: 16px;
}
.mt-28{
    margin-top: 28px;
}

@media (max-width: 1400px) {
    .testimonial-user-img{
        height: 185px;
        width: 185px;
    }
}

@media (max-width: 1200px) {
    .testimonial-user-img{
        height: 165px;
        width: 165px;
    }
}

@media (max-width: 992px) {
    .testimonial-user-img{
        height: 155px;
        width: 155px;
    }
}

@media (max-width: 768px) {
    .testimonial-cards-grid {
        gap: 10px;
        grid-template-columns: repeat(1, 1fr);
        
    }
    .testimonial-card {
        margin-bottom: 14px;
    
    }
    .testimonial-user-img{
        width: 150px;
        height: 150px; 
    }
    .start-svg{
        width: 70px;
        height: 12px;
    }
    .mt-16{
        margin-top: 8px;
    }
    .mt-28{
        margin-top: 14px;
    }
}
