.reference {
  display: flex;
  height: 100px;
  padding: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 3px solid $light_green;
  background: $white;
  box-shadow: $box-shadow-standard;

  @media (min-width: $breakpoint_lg) {
    height: 155px;
  }

  img {
    max-width: 90%;
    max-height: 90%;
  }
}