.box-item {
  background-color: #f3f1eb;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}
.box-item:hover {
  opacity: 0.8;
}
.box-item > img {
  width: 160px;
  height: 120px;
  object-fit: contain;
}
.box-item p {
  text-align: center;
  height: 2.5em;
  display: flex;
  align-items: center;
  margin: 0.5em 0;
  font-weight: 500;
}
.box-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent white transparent transparent;
}
.box-item::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: #d4d4d4;
  line-height: 1em;
}

/*# sourceMappingURL=box-item.css.map */
