.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    margin-right: 20px;
}

.testimonial-avatar img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial h3 {
    margin-top: 0;
}

.testimonial p {
    margin: 5px 0;
}

.testimonial .star {
    color: var(--primary-color);
    font-size: 20px;
}
.testimonial__author img
{
	border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}
.testimonial__author p
{
	margin-left: 10px;
}
.testimonial__author
{
	display: flex;
	align-items: center;
	margin-top: 30px;

}
/* Media Query for Mobile Devices */
@media (max-width: 549px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .testimonial-content {
        width: 100%;
        font-size: 15px;
    }
    .row-testi .testimonial-content {
		text-align: left;
    }
	.home .testimonial-content
	{
		padding: 0 10px;
	}
}
