.flip-card {
    background-color: transparent;
    width: 225px;
    height: 225px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1.4s;
  transform-style: preserve-3d;
  border-radius: 50%;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  border-radius: 50%;
}

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

.flip-card-front {
  background-color: transparent;
  color: black;
}

.flip-card-back {
  background-color: #EF3514;
  color: #ffffff;
  transform: rotateY(180deg);
}
.benefits-title{
    margin: 30px 10px 0px 10px;
    font-size: 22px;
    font-family: 'Shadows Into Light',serif;
    font-weight: 700;
    letter-spacing: 0px;
    color: #000000;
    text-align: center;
}
.benefits-text{
    margin: 35px 10px 0px 10px;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
}