.svg-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: url('../img/svg/quotes_g.svg') no-repeat center center;
  background-size: contain;
}

.svg-wrapper2 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: url('../img/svg/google.svg') no-repeat center center;
  background-size: contain;
}

.star-rating {
  font-size: 2em;
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.star {
  color: lightgray;
  position: relative;
  display: inline-block;
}

.star.filled {
  color: gold;
}

.star.half-filled::before {
  content: '★';
  color: gold;
  position: absolute;
  overflow: hidden;
  width: 50%;
}