
.testimonial-container {
    display: flex;
    flex-wrap: wrap; /* Allow testimonials to wrap onto multiple lines */
    gap: 10px; /* Space between testimonials */
    background-color: #f9f9f9;
    padding: 5px;
	width:80%;
	margin:auto;
}

.testimonial {
flex: 1; /* Allow testimonials to grow and fill the space */
min-width: 250px; /* Minimum width of a testimonial */
display: flex;
flex-direction: column; /* Stack content vertically */
align-items: center;
padding: 20px;
border: 1px solid #eee;
background-color: white;
width:80%;
margin:auto;
}

.testimonial img {
border-radius: 50%; /* Make the image circular */
width: 100px;
height: 100px;
margin-bottom: 20px;
}

.testimonial p {
flex-grow: 1; /* Allow the testimonial text to take up available space */
text-align: center; /* Center-align the testimonial text */
}

.testimonial .name {
font-weight: bold;
margin-top: 20px;
}

@media screen and (max-width: 600px) {
	.testimonial-container {
    flex-direction: column;
	padding:0px;
	
}