#web-products {
  text-align: center;
  padding: 20px 0;
  width: 100%;
}

#mobile-products {
  padding-top: 20px;
}

.product-card {
  justify-content: center;
}

.card-title {
  font-family: "LG Smart Regular", sans-serif !important;
  font-size: 18px;
  color: #000;
}

.card-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 230px;
  height: 200px;
}

.card-subtitle {
  font-family: "LG Smart Regular", sans-serif !important;
  font-size: 15px;
  color: #8D8D8D;
}

@media (min-width: 544px){
  #mobile-products {
    display: none;
  }
}

@media (max-width: 768px){
  .card-title {
    font-size: 17px;
    margin: 5px 0;
  }

  .card-image-container {
    height: 150px;
  }
}

@media (max-width: 543px){
  .card-title {
    font-size: 18px;
    margin: 15px 0;
  }

  .card-image-container {
    height: 180px;
  }

  #web-products {
    display: none;
  }
}