.flip-card {
  background-color: transparent;
  /* width: 300px; */
  /* height: 200px; */
  /* border: 1px solid #f1f1f1; */
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateX(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  /* position: absolute; */
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-card-back{
    position: absolute;
    top:0;
    z-index:999;
}

.flip-card-back a{
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    z-index:9999;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #fff;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: white;
  /* color: white; */
  transform: rotateX(180deg);
}

.img-gradient{
  background: rgb(231,231,231);
  background: linear-gradient(180deg, rgba(242,242,242,0.33) 0%, rgba(196,196,196,0.33) 100%);
}

.img-big-gradient{
  background: rgb(231,231,231);
  background: linear-gradient(180deg, rgba(242,242,242,0.71) 0%, rgba(196,196,196,0.71) 100%);
}