@charset "utf-8";
/* CSS Document */

/*body {
  font-family: Arial, Helvetica, sans-serif;
}*/

.flip-box {
  background-color: transparent;
  width: 260px;
  height: 350px;
	clear: both;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
	margin: 20px;
	/*overflow: auto;*/
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
	clear: both;
  text-align: left;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
	clear: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #f1f1f1;
  color: black;
}

.flip-box-back {
  background-color: #fcb827;
  color: black;
  transform: rotateY(180deg);
}

.flip-box-front h3 {
  	font-size: 24px; 
	line-height: 21px;
	color: #111 !important;
	padding: 50px 20px 0;
}

.flip-box-back h3 {
  	font-size: 24px; 
	line-height: 21px;
	color: #111 !important;
	padding: 50px 20px 0;
}

.flip-box-front p {
  	font-size: 18px; 
	line-height: 21px;
	color: #5a5a5a !important;
	padding: 20px;
}

.flip-box-back p {
  	font-size: 18px; 
	line-height: 21px;
	color: #fff !important;
	padding: 20px;
}

.grade {
  	background: #ccc; /*FF7275*/
	width: 100%; 
	padding: 10px 20px; 
	color: #fff; 
	font-weight: 700; 
	position: absolute; 
	bottom: 0;
}

.presentacion {
  	background: #111; 
	width: 100%; 
	padding: 10px 20px; 
	color: #ccc; 
	font-weight: 700; 
	position: absolute; 
	bottom: 0;
}