.product-snippet {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  overflow: hidden;
}

a.flip {
  display: block;
  position: relative;
}
a.flip:hover .flip-inner {
  transform: rotateY(0);
  opacity: 1;
}
a.flip .flip-inner {
  position: absolute;
  z-index: 901;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 59, 142, 0.8);
  opacity: 0;
  transform: rotateY(-90deg);
  transition: 0.3s;
  transform-style: preserve-3d;
  padding: 2rem;
}
@media only screen and (max-width: 810px) {
  a.flip .flip-inner {
    display: none;
  }
}
a.flip .flip-inner p {
  color: white;
}
a.flip .flip-inner h3 {
  color: #f78d5c;
  margin-top: 0 !important;
  margin-right: 1.75rem;
}
a.flip .flip-inner .flip-icon {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  font-size: 24px;
  transition: all 0.5s ease;
  color: white;
}
