
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 280px;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;

  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 283px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .flip-card-front img{
      width: 100%;
  }
  
  .flip-card-back {
    background: #429cfe;
    color: #fff;
    padding: 30px;
    font-size: 16px;
    transform: rotateY(180deg);
  }

  .flip-card-back p {
    text-align: justify;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
}
  .flip-card-back a {
    color: #000;
    background: #ffffff;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 1s;
  } 


  .flip-card-back a:hover{
    color: #fff;
    background-color: #2b2d2f;

  }
  
  
  