.eff-zoom {
  display                    : inline-block;
  vertical-align             : middle;
  -webkit-transform          : perspective(1px) translateZ(0);
  transform                  : perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration        : 0.3s;
  -webkit-transition-property: transform;
  transition-property        : transform;
}

.eff-zoom:hover,
.eff-zoom:focus,
.eff-zoom:active {
  -webkit-transform: scale(1.2);
  transform        : scale(1.2);
}

.bg-gradient-light {
  background: rgb(242, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(242, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(242, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
  background: linear-gradient(180deg, rgba(242, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
  filter    : progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2ffff", endColorstr="#f5f5f5", GradientType=1);
}