

/*Portfolio*/
#portfolio {
  background: #f1f1f1;
}
/*Portfolio Overlay */
.portfolio-item {
  position: relative;
  margin-bottom:0px;
}
.portfolio-item img {
  width: 100%;
  height:200px;
}
.portfolio-item .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(255,255,255, 0.80);
  display: none;
}
.portfolio-item:hover .overlay {
  position: absolute;
    top: 0;
    width: 96%;
    height: 93%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.80);
    display: block;
    margin-left: 2%;
    margin-top: 2%;
}
.portfolio-item .icons .preview {
  position: absolute;
  left: 40%;
  top: 40%;
  color: #000;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  text-align: center;
  font-size:18px;
  
}
.portfolio-item .icons .preview i:hover {
	background:#000;
	}
.portfolio-item .icons .preview i {
  color: #fff;
  background:#feb209;
  padding:9px 18px;
  font-size:15px;
}













