.productimg {
  width: 32%;
  height: 350px;
  margin: 0.2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  position: relative;
}

.productcaption {
  width: 100%;
  height: 13%;
  overflow: hidden;
  background-color: rgba(61, 61, 61, 0.8);
  transition: 0.5s ease;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
}

.productcaption h2 {
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f7f7f7;
}

.productcaption ol {
  padding: 0.5rem 0.5rem;
  font-size: 0.6rem;
  color: #f7f7f7;
}

.productimg:hover .productcaption {
  height: 100%;
}

.productimg:hover h1 {
  color: rgba(61, 61, 61, 0.8);
}
