.products {
  width: 95%;
  max-width: var(--main-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.products-container {
  background: #F2F3F4;
  padding: 40px 0;
}
.products__item {
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0px 6px 20px rgba(63, 62, 62, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}
.products__item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.products__item-title {
  text-align: center;
}
@media (min-width: calc(767px + 1px)) {
  .products__item:hover {
    transform: scale(1.05);
  }
}
.products__item-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products__item-image:after {
  content: "";
  display: block;
  padding-top: 68%;
}
.products__item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products__item-image:after {
  padding-top: 90%;
}
.products__item-image > div {
  width: 80%;
  height: 80%;
  position: absolute;
}
.products__item-image img {
  object-fit: contain;
}
.products__item-info {
  background: #007A33;
  padding: 30px 36px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.products__item-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 133%;
}
.products__item-meta {
  margin: 30px 0 0;
}
.products-meta {
  display: flex;
  width: 100%;
}
.products-meta__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 700;
}
.products-meta__item:after {
  content: "";
  display: block;
  height: 20px;
  width: 1px;
  background: #D2D5D4;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.products-meta__item:nth-last-child(1):after {
  display: none;
}
.products-meta__title {
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 1309px) {
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 12px;
  }
  .products__item {
    border-radius: 9px;
  }
  .products__item-title {
    font-size: 13px;
    line-height: 123%;
  }
  .products__item-info {
    padding: 16px 20px;
  }
}
@media (max-width: 767px) {
  .products__item-meta {
    display: none;
  }
  .products-container .load-more-button {
    margin: 24px auto 8px;
  }
}

/*# sourceMappingURL=products.css.map */
