.flip-section{
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    /* flex-wrap:wrap; */
}
@media (max-width: 991px) {
    .flip-section{
        display: flex;
        flex-direction: row;
        flex-wrap:wrap;
        justify-content: center;
    }
    
}
.flip-card {
    /* background-color: #FFFCFC;; */
    width: 300px;
    height: 315px;
    perspective: 1000px;
    padding:10px
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border: 1px solid #912790;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  
  .flip-card-front {
    /* background-color: white; */
    color: black;
  }

  .flip-card-front .flip-text{
   
   
    font-weight:700;
    font-size: 20px;
    line-height: 150%;
    padding-top:30px;
    text-align: center;
    color: #3D087B;
  }

  .flip-card-back {
    background: #912790;
    color: white;
    text-align: center;
   padding-top:60px;
   padding-left:20px;
   padding-right:20px;
   padding-bottom:10px;
    font-size: 16px;
    transform: rotateY(180deg);
  }
