/*tarjetas*/
.container-item {
  text-decoration: none;
  background-color: #ffffff;  
  box-shadow: 5px 5px 2px #eeeff1;
  border: 1px solid #999999;
  border-radius: 6px;
  box-sizing: border-box;
	height: 450;
}
.container-item:hover {
  box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.4);
}
.container-item-category {
  padding: 10px;
  background-color: darkred;
  color: #ffffff;
  border-radius: 6px 6px 0px 0px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.container-item-img {
  text-align: center;
  padding: 20px 20px 0px;
  font-size: 50px;
  color: darkgoldenrod;
}
.container-item-desc {
  padding: 20px;
  font-size: 14px;
  text-align: justify;
  font-weight: 500;
  color: grey;
}
