/******* FICHA CURSO ******/
.ficha-curso {
  display: inline-block;
  height: auto;
  /* width: 33.3333333333333%; */
  width: 33%;
  cursor: pointer;
  position: relative;
	margin-bottom: 35px;
	vertical-align: top;
}
.ficha-curso .top {
  position: relative;
}
.ficha-curso .top .text {
  position: absolute;
  top: 0;
  text-align: center;
  padding: 10%;
  color: #f4fafa;
  display: none;
  z-index: 10;
  line-height: 35px;
  font-size: 14px;
}
/* inicio modificacion Raul temporal */
/* modificación pr el log navideño */
.ficha-curso .top .info {
  position: absolute;
  bottom: 0;
  height: 55px; /* se hace mas grande el log */
  line-height: 55px;
  padding-left: 22px;
  width: 100%;
  background-color: #f4fafa;
  color: #3d3f45;
  display: none;
  z-index: 10;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 16px;
}
.ficha-curso .top > img {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
	width: 100%;
}

/* modificación Raúl */
.ficha-curso h3 {
  font-family: 'QueulatSoft-Medium, sans-serif';
  color: #3d3f45;
  font-size: 16px;
	text-align: left;
	padding: 15px 15px 0 15px;
	margin: 0;
	overflow: hidden;
}
.ficha-curso:hover .top {
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.65);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.ficha-curso:hover .top .info {
  display: block;
  border-radius: 0 0 5px 5px;
}
.ficha-curso:hover .top .text {
  display: block
}
.ficha-curso:hover .top:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: rgba(0,0,0, 0.25);
  -webkit-transition: background .3s linear;
  transition: background .3s linear;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}