 .flip-box {
  background-color: transparent;
  width: 370px;
  height: 270px;
  /*border: 1px solid #f1f1f1;*/
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin-bottom: 17px !important;
}

/* This container is needed to position the front and back side */
.flip-box-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-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

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

/* Style the front side (fallback if image is missing) */
.flip-box-front {
  /*background-color: #bbb;*/
  color: white;
}

/* Style the back side */
.flip-box-back {
  background-color: #efb844;
  color: black;
  transform: rotateY(180deg);
} 

.flip-box-front h2 {
    position: absolute;
    color: white;
    text-align: center;
    width: 370px;
    top: 40%;
    /*padding-left: 3.5%;*/
}

.flip-box-back p {
	padding: 15px;
	max-width: 370px;
}

@media screen and (max-width: 480px) {
	.flip-box {
	  width: 300px !important;;
	  height: 270px;
	}

	.flip-box-front h2 {
	    width: 300px;
	    top: 30%;
	}
	.celr_padding_mobile {
	    padding-left: 0px !important;
	    padding-right: 0px !important;
	}
}
