.prod.sm img {
  height: 215px;
  width: 100%;
  object-fit: cover;
}
.prod.bm img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.prod {
  position: relative;
  overflow: hidden;
}

.prod-name {
  position: absolute;
  bottom: -160px;
  text-align: center;
  padding: 10px 20px;
  width: 100%;
  border-radius: 0 0 15px 15px;
  z-index: 2;
  background: #00000047;
  transition: all 0.5s;
}

.prod-name a {
  color: #fff;
  font-size: 19px;
}

.prod-img {
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 15px;
}

.prod-img:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  /* background: #00000047; */
  transition: all 0.5s;
  z-index: 1;
  border-radius: 15px;
}

.prod:hover .prod-img img {
  transform: scale(1.08);
  border-radius: 20px;
}

.prod-img img {
  transition: all 0.5s;
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
}

.prod:hover .prod-name {
  bottom: 0;
}
