.testimonial_card{
  background: var(--bgColor2);
  padding: 20px;
  border-radius: 15px;
}

.testimonial_card .header{
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial_card .header .image{
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--brandingColor1);
}
.testimonial_card .header .image img{
  width: 100%;
}

.testimonial_card .header .details{
  margin-top: -2px;
}
.testimonial_card .header .name{
  font-size: 18px;
  font-family: var(--fontFamily1);
  font-weight: 750;
  color: var(--textColor1);
}
.testimonial_card .header .designation{
  font-size: 12px;
  font-family: var(--fontFamily1);
  font-weight: 750;
  color: var(--textColor3);
  margin-top: 2px;
}

.testimonial_card .content{
  margin-top: 15px;
}
.testimonial_card .content p{
  color: var(--textColor2);
}
.testimonial_card .content .icon{
  display: flex;
  justify-content: right;
}
.testimonial_card .content .icon img{
  width: 50px;
  margin-top: 10px;
}