.fe_flipcard_box {
	background-color: transparent;
	width: 100%;
	perspective: 1000px;
	aspect-ratio: 3 / 2;
    border-radius: 9px 9px 9px 9px;
}

.fe_flipcard_box_inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 9px 9px 9px 9px;
}

.fe_flipcard_box:hover .fe_flipcard_box_inner,
.fe_flipcard_box:focus .fe_flipcard_box_inner{
  transform: rotate3d(0, 1, 0, 180deg);
}

.fe_flipcard_box_front, .fe_flipcard_box_back {
  position: absolute;
  margin: 0px;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 9px 9px 9px 9px;
}

.fe_flipcard_box_front {
  -webkit-transform:translate3d(0,0,0);
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
}

.fe_flipcard_box_back {
  color: white;
  transform: rotateY(180deg);
}

.fe_flipcard_box_front h2 {
	font-size: 18px !important;
	position: absolute;
	margin: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	color: white;
	text-align: center;
	padding: 10px;
	height: 30px;
	font-weight: 700;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8);
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.21);
	box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(14.2px);
	-webkit-backdrop-filter: blur(14.2px);
	line-height: 30px;
	border-radius: 0px 0px 9px 9px;
	z-index: 1000;
}

.fe_flipcard_box_back div {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin: 0px;
	text-align: center;
	font-size: 16px !important;
	color: white;
	height: calc(100% - 60px);
	border-radius: 9px 9px 0px 0px;
	border-bottom: 1px solid white;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
}

.fe_flipcard_box_back a {
	padding: 5px;
	display: block;
	margin: 0px;
	font-size: 16px !important;
	color: white;
	height: 16px;
	border-radius: 0px 0px 9px 9px;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
}

.fe_flipcard_box_back a:hover {
	color: white;
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.8);
	
}