/* Gallery */
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item:hover {
  color: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.gallery-item:hover .gallery-item-overlay {
  visibility: visible;
  opacity: 1;
}
.gallery-item img {
  width: 100%;
}
.gallery-item-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  opacity: 0;
  background-color: rgba(193, 129, 76, 0.85);
}
.gallery-item-overlay svg {
  width: 30px;
  height: 30px;
}
.gallery-item-overlay svg path{
  fill: currentColor;
  stroke: currentColor;
}
	
	
	
