.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  bottom: 15px;
  left: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius:10px;
}

.hovereffect:hover .overlay {
  background:url(../images/overlayimg.png) no-repeat center / cover;
}

.hovereffect img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}


/*square-effect1*/
.square-effect1 {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.square-effect1 img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.square-effect1:hover img {
  transform: scale(1.08);
  transition: all 1.5s ease 0s;
  filter: grayscale(100%);
}
.square-effect1 .square-img1 {
  width: 80%;
  height: 80%;
  display: inline-block;
  border: 1px solid #ffffff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 auto 0;
  position: absolute;
  top: 50%;
  border-radius:50%;
  right:0;
  bottom: 0;
  left: 0;
}
.square-effect1:hover .square-img1 {
  opacity: 1;
  filter: alpha(opacity=100);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
}