.catalog-goods {
  display: flex;
  row-gap: 30px;
  column-gap: 50px;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  column-count: 3;
}

.catalog {
  margin-top: 170px;
  margin-bottom: 100px;
}

.goods {
  display: flex;
  flex: 1 1 auto;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;

  break-inside: avoid;
  background: #fcfffc;

  flex: auto;
  max-width: 45vw;
  flex-basis: 20%;
  margin-bottom: 5px;
  justify-content: center;
  padding: 2%;
}
.catalog h1 {
  font-weight: 400;
  font-size: 45px;
  line-height: 134%;

  text-align: center;

  color: #56593d;
}
.goods-label,
.goods-price {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  /* or 135% */

  text-align: center;

  color: #56593d;
}
.goods-label{
  margin-bottom: 10px;
}
.img {
  max-height: 30vh;
  max-width: 40vw;
  margin-bottom: 30px;
}
