

/*Portfolio*/
#portfolio {
  background: #f1f1f1;
}
/*Portfolio Overlay */
.portfolio-item {
  position: relative;
  margin-bottom:0px;
}
.portfolio-item img {
  width: 100%;
  height:auto;
}
.portfolio-item .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  
  display: none;
}
.portfolio-item:hover .overlay {
  position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color:rgb(1 20 41 / 58%);
    display: block;
    margin-left:0;
    margin-top:0;
}
.portfolio-item .icons .preview {
  position: absolute;
  right: 10%;
  bottom: 10%;
  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 {
	
	}
.portfolio-item .icons .preview i {
  color: #fff;
  background:#fcad44;
  padding: 22px 22px;
  border-radius: 50%;
  font-size:25px;

}













