.reviews-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin: 0;
	padding: 0 !important;
	justify-content: space-between;
}
.reviews-section ul li{
    flex: 0 0 calc(33.333% - 20px);
}
.reviews-section p{
	margin:0 !important;
	display: -webkit-box;        /* Creates a flexible box for text */
  -webkit-box-orient: vertical; /* Vertical orientation */
  -webkit-line-clamp: 5;       /* Number of lines to show */
  overflow: hidden;             /* Hide overflowing text */
  text-overflow: ellipsis;
}
@media (max-width: 768px){
	.reviews-section ul{
		flex-direction: column;
	}
}