.efb-box-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.efb-card {
  position: relative;
  width: 33%;
  height: 500px;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.efb-front, .efb-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  border-radius: 16px;
  text-align: center;
}

.efb-front {
  z-index: 2;
  background-size: cover;
  background-position: center;
}

.efb-title {
  font-family: 'Ubuntu', 'Poppins', sans-serif;
  font-size: 40px;
	font-weight: 600;
	color: #fff !important;
	position: absolute;
	top: 30px;
	left: 30px;	
	text-shadow: #b10000 0px 0px 5px, #b10000 0px 0px 10px, #b10000 0px 0px 15px, #6b0000 0px 0px 20px, #6b0000 0px 0px 30px, #6b0000 0px 0px 40px, #6b0000 0px 0px 50px, #6b0000 0px 0px 75px;
}

.efb-back {
  transform: rotateY(180deg);
  opacity: 0;
  background-size: cover;
  background-position: center;
}

.efb-card.flipped .efb-front {
  opacity: 0;
}

.efb-card.flipped .efb-back {
  opacity: 1;
  transform: rotateY(0);
}

/*
.efb-button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #fff;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
*/