.product__item {
  margin-bottom: 35px;
  border: thin solid #dadada;
}
.nombre_producto {
  font-size: 16px;
  color: black;
}


.product__item__pic {
  height: 215px;
  position: relative;
  overflow: hidden;
}
.set-bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.product__item__text {
  position: relative;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 5px;
  padding-right: 5px;
  border-top: #eaeaea 1px solid;
  overflow: hidden;
  z-index: 1;
  font-size: 1rem;
  background-color: #eaeaea;
}

.product__item__text::after {
  content: "";
  background-color: #084892;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.product__item:hover .product__item__text::after {
  height: 100%;
}

.product__item:hover .product__item__text .product__price,

.product__item:hover  .product__item__text h3 {
  color: white;
}
.product__item__text h3 {
  font-family: "Roboto-Medium";
}

.product__item__text .product__price {
  color: #692077;
  font-family: "Roboto-Medium";
}

@media only screen and (min-width: 700px) {
  .product__item__text {
    height: 7rem;
  }
}

@media only screen and (max-width: 992px) {
  .product__item__pic {
    height: 150px;
  }
  .product__item__text {
    height: 7rem;
  }
}
