.productsPage .products {
  background-color: #008c8d;
}

.bodyContentContainer {
  width: 94%;
  margin: 0 auto;
}

.productsContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin: 10px 0;
}

.productListItem {
  width: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.listImageContainer {
  width: 100%;
  float: left;
  overflow: hidden;
}

.listImageContainer img {
  width: 100%;
  height: 230px;
  transform: scale(1);
  transition: 1.5s ease;
}

.listImageContainer img:hover {
  transform: scale(1.1);
  transition: 1.5s ease;
  overflow: hidden;
}

.productListContainer {
  max-width: 1028px;
  margin: 0 auto;
}

.listProductNameContainer {
  width: 100%;
  float: left;
  text-align: center;
  line-height: 1.4em;
  font-family: Arial;
  color: #222;
  padding: 5px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #eee;
}

.listProductNameContainer span {
  font-size: 14px;
}

.listProductPriceContainer {
  text-align: center;
  font-size: 14px;
  background-color: #eee;
  line-height: 24px;
}

.listProductPriceContainer span {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .productsContainer {
    grid-template-columns: 1fr 1fr;
  }
  .listImageContainer img {
    height: 150px;
  }
}
