/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 24 2025 | 04:03:20 */
/* Container for the flip card */
.flip-card {
  background-color: transparent;
  width: 255px;
  height: 450px;
  perspective: 1000px;
  margin: 0 auto;
	font-size:13px;
}

/* The flip card inner */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

/* Show the card's front */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* The front and back of the card */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align:center;
	
}

/* The front of the card */
.flip-card-front {
  background-color: #bbb;
  color: white;
}

/* The back of the card */
.flip-card-back {
  color: white;
  transform: rotateY(180deg);
  padding: 10px;
  box-sizing: border-box;
}


