/* Enter Your Custom CSS Here */

.portfolio-item.podcast:hover img {
	transform: scale(1.0);
  opacity: 0.25;
  transition: .5s ease;
}

.portfolio-item.podcast .portfolio-content {
 	display:table-cell;
  
  max-height: 100%;  
  max-width: 100%;
  width: 250px;
  height: 250px;

  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  
  margin: auto;
  
	text-align: center;
  vertical-align: middle;
  
	opacity: 0;
  
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio-item.podcast:hover .portfolio-content {
		bottom: -150px;
  	opacity: 1;
}

.portfolio-item.podcast .portfolio-content h4 {
	font-weight:600;
}