.smki-gallery {
  margin: 0;
  padding-bottom: 0;
}
.smki-gallery-item {
  position: relative;
  height: 20rem;
  width: 31.1%;
  border-radius: 2px;
  overflow: hidden;
  margin-left: -3px;
  margin-right: 3.3%;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  display: inline-block;
  margin-bottom: 3%;
}
.smki-gallery-item:nth-child(3n) {
  margin-right: 0;
}

.smki-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.smki-gallery-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.5);
  padding: 20%;
}

.smki-gallery-content p {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffffee;
  text-transform: uppercase;
  text-align: center;
}

.smki-gallery-content .smki-gallery-icon {
  top: 60%;
}

.smki-gallery-pagination {
  width: 94.5%;
  margin-left: 2.5%;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.smki-gallery-pagination li {
  margin: 0;
  padding: 0;
}

/* Hover Section */
.smki-gallery-content {
  opacity: 0;
  transition: 0.5s all;
}

.smki-gallery-item:hover .smki-gallery-content {
  opacity: 1;
  transition: 0.5s all;
}

.smki-gallery-item img {
  transform: scale(1);
  transition: 0.5s all;
}

.smki-gallery-item:hover img {
  transform: scale(1.5);
  transition: 0.5s all;
}
