.lp-review {
  padding: 60px 0 0;
}

/*review block styles*/
.review {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-left: 140px;
  min-height: 110px;
  font-family: "Lato", sans-serif;
}
.review .review-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
}
.review .review-img img {
  width: 100%;
}
.review .review-box {
  font-size: 18px;
  line-height: 24px;
  background-color: #F2F2F2;
  color: #1F1F1F;
  padding: 10px;
  position: relative;
}
.review .review-box:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: inherit;
  position: absolute;
  left: -10px;
  top: 50%;
  margin-top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.review .review-name {
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .review {
    padding: 0;
    display: block;
    
  }
  .review .review-img {
    width: 74px;
    height: 74px;
    display: block;
    position: inherit;
    margin: 0 auto 20px;
    transform: translateY(0);
  }
  .review .review-text ,
  .review .review-name {
    text-align: center;
  }
  .review .review-box:before {
    left: 50%;
    top: -10px;
    margin: 0 0 0 -10px;
  }
}
