.product-card {
  background: url("images/product-card-bg.svg") #fff;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 15px;
  padding: 60px;
  /*min-height: 480px;*/
  margin-bottom: 40px;
}
.product-card:hover {
  background-image: url("images/product-card-bg-hover.svg");
}
.product-card.product-card--no-hover:hover {
  background-image: url("images/product-card-bg.svg");
}
.product-card__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-card__title {
  font-family: 'Roboto';
  font-size: 24px;
  line-height: 1;
}
.product-card__description {
  color: #4F4F4F;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 22px;
}
.product-card__advantages {
  border-left: 4px solid #E5E5E5;
}
.product-card__list {
  margin: 0;
  padding-left: 25px;
  list-style: none;
}
.product-card__list-item {
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 22px;
  color: #4F4F4F;
  position: relative;
}
.product-card__list-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.product-card__list-item:before {
  content: "";
  width: 7px;
  height: 7px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F08143), to(#FFB48A));
  background: -o-linear-gradient(top, #F08143 0%, #FFB48A 100%);
  background: linear-gradient(180deg, #F08143 0%, #FFB48A 100%);
  border-radius: 50px;
  position: absolute;
  top: 7px;
  left: -17px;
}
.product-card__svg-block img {
  margin-right: 45px;
}
.product-card--custom {
  padding: 0;
}
.product-card__catalog-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  max-height: 400px;
}
.product-card__catalog-list li:not(:last-of-type) a {
  display: inline-block;
  margin-bottom: 15px;
}
.product-card__catalog-list a {
  font-family: Roboto;
  font-size: 18px;
  line-height: 22px;
  color: #4F4F4F;
  text-decoration: underline;
}
.catalog-section-list img{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  max-height: 100%;
}
.catalog-small-card--gallery .catalog-small-card img{
  right: 15px;
}