@media (max-width: 767px) {
  .homepage_service_slider {
    position: relative !important;
    left: auto !important;
    max-width: 100% !important;
    transform: none !important;
    margin: 0px auto !important;
  }
}
.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}
.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}
.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.hovereffect:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.hovereffect h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0,163,195,0.6);
}
.hovereffect a.info {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 1px solid #ffffff;
  padding: 10px 30px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0px;
  position: absolute;
  bottom: 20px;
  -ms-transform: translate(-50%,0px) !important;
  -webkit-transform: translate(-50%,0px) !important;
  transform: translate(-50%,0px) !important;
}
.hovereffect a.info:hover {
  background-color: #ffffff !important;
  border: 1px solid #ffffff;
  color: #00a3c3 !important;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}
.hovereffect a.info,
.hovereffect h2 {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  color: #fff;
  text-transform: uppercase;
}
.hovereffect:hover a.info,
.hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
