.flip-card {
  background-color: transparent;
  width: 230px;
  height: 230px;
  /*overflow: hidden;*/
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg) scale(1.1);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 40px;
}

.flip-card-front {
  /*background-color: #CA2A2D;*/
  border: solid #CA2A2D;
}

.flip-card-back {
  background-color: #CA2A2D;
  color: white;
  transform: rotateY(180deg);
}

.flip-card-back p {
  font-size: 11px;
}

.flip-card-back h6 {
  font-size: 1.2rem;
}

.solutions-wrapper .col {
  margin: 20px auto;
}

