.fca-card {
  width: 100%;
  max-width: 100%;
    height: 28.59vw;
  perspective: 1000px;

}

.fca-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.fca-card:hover .fca-inner {
  transform: rotateY(180deg);
}

.fca-front,
.fca-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  backface-visibility: hidden;
  overflow: hidden;
  /*color: #fff;*/
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 26px;
}

.fca-front {
  padding: 20px;
}

.fca-back {
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
 
}
.card-3 .fca-back {
     border: 1px solid #5A0A32;
}
.fca-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
}

.fca-arrow img {
  width: 100%;
}

.fca-heading {
  margin: 0;
  font-size: 42px;
}

.fca-sub {
  margin: 0;
  font-size: 20px;
}

.fca-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
.card-1 .fca-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11.11vw;
}
/* Responsive */
@media(max-width: 767px) {
  .fca-card {
    max-width: 100%;
    height: 470px;
  }
  .card-1 .fca-img {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 178px;
    }
}