
.product-category-container {
  width: 84%;
  margin-left: 8%;
  margin-right: 8%;
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
}

.product-category-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 100px;
  font-weight: bold;
  color: rgb(223, 140, 45);
}

.product-category-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.product-category-list-item {
  width: 24%;
  cursor: pointer;
  border: .0625rem solid rgb(236, 236, 236);
  border-bottom: .375rem solid rgb(253, 115, 32);
  transition: all .3s;
}

.product-category-list-item:hover > .product-category-list-text {
  background-color: rgb(253, 115, 32);
  color: white;
}

.product-category-list-img {
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-category-list-img > img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
}

.product-category-list-text {
  height: 3rem;
  background-color: rgb(248, 248, 248);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  letter-spacing: .1rem;
  font-weight: bold;
  transition: all .3s;
}

@media screen and (max-width: 1300px) {
  .product-category-list {
    flex-wrap: wrap;
  }

  .product-category-title {
    font-size: 38px;
  }
  
  .product-category-list-item {
    width: 49%;
    border: 1px solid rgb(236, 236, 236);
    border-bottom: 6px solid rgb(253, 115, 32);
    margin-bottom: 30px;
  }
  
  .product-category-list-img {
    height: 400px;
  }
  
  .product-category-list-text {
    height: 50px;
    font-size: 18px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 767px) { 
  .product-category-list-item {
    width: 100%;
  }
}

@media screen and (max-width: 550px) { 
  .product-category-list-item {
    width: 100%;
  }

  .product-category-list-img {
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

