.p-products__inner + .p-products__inner {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-products__inner + .p-products__inner {
    margin-top: 8rem;
  }
}
.p-products-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-products-list {
    justify-content: space-between;
  }
}
.p-products-list__item {
  width: calc((100% - 10rem) / 5);
}
@media screen and (max-width: 767px) {
  .p-products-list__item {
    width: calc((100% - 2.5rem) / 2);
  }
}
.p-products-list__item a {
  display: block;
  height: 100%;
  position: relative;
  border: 1px solid #B3B3B3;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1rem;
}
.p-products-list__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 32, 31, 0.1);
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.p-products-list__item a img {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-products-list__item a:hover {
    border: 1px solid #1E201F;
    opacity: 1;
  }
  .p-products-list__item a:hover::before {
    opacity: 1;
  }
  .p-products-list__item a:hover img {
    transform: scale(1.1);
  }
}
.p-products-list__txt {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem -1rem 0;
}
@media screen and (max-width: 767px) {
  .p-products-list__txt {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-products-list__img {
  overflow: hidden;
  width: 19.8rem;
  height: 15.8rem;
}
@media screen and (max-width: 767px) {
  .p-products-list__img {
    width: 100%;
    height: 11rem;
  }
}
.p-products-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}