.diamond-grid .diamond-row {
  display: flex;
  position: relative;
  width: 100%;
}
.diamond-item-box {
  position: relative;
  transform: rotate(45deg);
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: all 0.2s ease-in-out;
}

.diamond-content {
  transform: rotate(-45deg);
  text-align: center;
}

.diamond-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.diamond-text {
  display: block;
}