.landing_product_section .product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 0.2rem solid var(--light-color);
  padding: 2rem 1rem;
  width: 250px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  align-items: center;
  text-align: center;
  margin-bottom: -30px;
}
.landing_product_section .product-card .product-img {
  margin-bottom: 0.5rem;
  text-align: center;
  height: 100px;
}
.landing_product_section .product-card .product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}
.landing_product_section .product-card h3 {
  color: var(--primary-text);
  margin: 0;
  margin-bottom: 10px !important;
  text-align: center;
}
.landing_product_section .product-card span {
  margin-top: 10px;
  font-size: 1.3rem !important;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}
.landing_product_section .product-card .old {
  text-decoration: line-through;
}
.landing_product_section .product-card .new {
  color: #007113;
}
@media (max-width: 575px) {
  .landing_product_section .all-card {
    align-items: center;
  }
  .landing_product_section .all-card .product-card {
    width: 100%;
  }
}
