#homearea {
  background: #34495e;
  color: #fff;
}
#homearea .btn {
  margin-right: 20px;
}
#homearea img {
  max-width: 100%;
}
#homearea p {
  padding: 50px 0;
}

/*Products*/
#product {
  background: #fff;
}
/*product Overlay */
.product-item {
  position: relative;
  margin-bottom: 15px;
}
.product-item img {
  width: 100%;
}
.product-item .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.product-item:hover .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
}
.product-item .icons .preview {
  position: absolute;
  left: 40%;
  top: 40%;
  color: #fff;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.product-item .icons .preview i {
  color: #e74c3c;
}

#news {
  background: #fff;
}

#services {
  background: #f1f1f1;
}

#contact .contact-info p {
  font-size: 14px;
}

#contact .social i {
  color: #fff;
  padding: 10px;
  margin-right: 5px;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  text-align: center;
  background: #b7b7b7;
}

#contact .social .fa-instagram:hover {
  background: #d85656;
  color: #fff;
}