.portfolio-card-effect {
  background-color: #fff;
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}

.portfolio-card-effect *, .portfolio-card-effect *:before, .portfolio-card-effect *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.portfolio-card-effect img {
  backface-visibility: hidden;
  max-width: 100%;
}

.portfolio-card-effect figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  padding: 5%;
  height: 100%;
}

.portfolio-card-effect figcaption:before, .portfolio-card-effect figcaption:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFDB00;
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);*/
  content: '';
  opacity: 1;
  z-index: -1;
  height: 6px;
}

.portfolio-card-effect figcaption:before {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.portfolio-card-effect figcaption:after {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.portfolio-card-effect h3, .portfolio-card-effect p {
  opacity: 0;
}

.portfolio-card-effect h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
  color: #FFF;
}

.portfolio-card-effect p {
  font-size: 1em;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #FFF;
}

.portfolio-card-effect a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.portfolio-card-effect:hover h3, .portfolio-card-effect.hover h3, .portfolio-card-effect:hover p, .portfolio-card-effect.hover p {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  color: #FFF;
}

.portfolio-card-effect:hover figcaption:before, .portfolio-card-effect.hover figcaption:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition-delay: .01s;
  transition-delay: .01s;
}

.portfolio-card-effect:hover figcaption:after, .portfolio-card-effect.hover figcaption:after {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition-delay: .01s;
  transition-delay: .01s;
}

.zoom {
  overflow: hidden;
  position: relative;
}

.zoom img {
  transition: all .4s ease;
}

.zoom:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  content: '';
  opacity: .65;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .3s ease;
}

.zoom:hover .overlay {
  transition-delay: 0.1s;
  opacity: .9;
}

.card-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 30%;
}

.card-labels h3 {
  opacity: 1;
  text-shadow: 0px 1px 2px #333;
}

.card-labels:hover h3 {
  transition: all .3s ease;
  opacity: 0;
}

.text-center.paddsection.middle {
  padding-top: 50px;
  padding-bottom: 50px;
}

