/* HOME ITEM */

#microservices {
  display: flex;
  flex-wrap: wrap;
justify-content: center;
  width: 92%;
  margin: auto;
  /*max-width: 1400px;*/
  margin-top: 20px;
  margin-bottom: 50px;
}

#microservices a {
  text-decoration: none;
  color: #999999;
  font-size: 12px;
  line-height: 16px;
}

/* PRODUCT ITEM HOME */

.home-product-item {
  flex: 1;
  margin: 20px 10px;
  max-width: 300px;
  border:1px solid #eee;
    border-radius:5px;
}

.home-product-item .product-price p:first-child {
  font-size: 14px;
  line-height: 18px;
  color: #111111;
  font-weight: bold;
  font-family: "Maison Neue Bold", sans-serif;
}

.home-product-item .product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.home-product-item div:first-child {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  padding-left: 5px;
  overflow-wrap: break-word;
}

.home-product-item img:first-child {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.home-product-item img:nth-child(2) {
  width: 300px;
  height: 355px;
  object-fit: cover;
border: 1px solid #eee;
}

/* RESPONSIVE DESIGN */

@media (max-width: 570px) {
  #microservices {
    width: 100%;
  }

  #microservices > a {
    flex: 40%;
  }

  .home-product-item img:nth-child(2) {
    width: 100%;
    height: 215px;
  }

  .home-product-item div:first-child {
    padding-left: 0px;
  }

  .home-product-item div:first-child {
    padding-left: 0px;
  }

  .home-product-item img:first-child {
    margin-right: 6px;
  }
}
