
.img-1 {
  background-image: url(/assets/img/gallery/1-light-purple-chrome.jpg);
}

.img-2 {
  background-image: url(/assets/img/gallery/2-ombre-dip-powder-acrylic-nails.jpg);
}

.img-3 {
  background-image: url(/assets/img/gallery/3-halloween-nails.jpg);
}

.img-4 {
  background-image: url(/assets/img/gallery/4-face-nail-art.jpg);
}

.img-5 {
  background-image: url(/assets/img/gallery/5-cute-gel-nail-design.jpg);
}

.img-6 {
  background-image: url(/assets/img/gallery/6-gel-ombre-nails.jpg);
}

.img-7 {
  background-image: url(/assets/img/gallery/7-acrilycs-pastel-design.jpg);
}

.img-8 {
  background-image: url(/assets/img/gallery/8-mexican-fiesta-nails.jpg);
}

.img-9 {
  background-image: url(/assets/img/gallery/9-groovy-nails.jpg);
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  height: auto;
}

.gallery-item > span {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  transition: transform 400ms ease;
}

.gallery-item:hover > span {
  transform: scale(1.125) rotate(-6deg);
}

.gallery-box {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
}

.gallery-box .gallery-item {
  display: block;
  width: 100%;
}

.gallery-box .gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-clip: border-box;
  background-origin: padding-box;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  transition: all 400ms;
}

.gallery-box .gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  color: #fff;
  font-weight: 500;
  max-height: 60px;
  padding: 5px;
  overflow: hidden;
}

.gallery-box:hover .gallery-image,
.gallery-box:focus .gallery-image {
  transform: scale(1.0625);
}

/* End Gallery */
