#portfolio {
  height: auto;
}

#portfolio-container {
  height: auto;
  padding: 20px 0 56px 0;
}

#portfolio-title {
  padding: 56px 0 20px 0 !important;
}

#portfolio-title h4.subtitle {
  margin-bottom: 0 !important;
}

.item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 10px 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  justify-content: center!important;
  transition: all 300ms linear;
}

.item img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.item .mask {
  position: absolute;
  background: rgba(0,0,0,.8) 
	url('../images/plus.png') no-repeat center center;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.item:hover .mask {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.item h5 {
  position: absolute;
  bottom: -100px;
  z-index: 100;
  color: #fff;
  opacity: 0;
  text-align: center;
  width: 100%;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.item:hover h5 {
  bottom: 20px;
  opacity: 1;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  transition-delay: 300ms;
}

