.aboutUsPage .about {
  background-color: #008c8d;
}

.productListItem {
  width: 96%;
  margin: 15px 2%;
  float: left;
  box-sizing: border-box;
  padding: 6px;
}

.productListItem:nth-child(even) .listImageContainer {
  float: right;
}

.listImageContainer {
  width: 40%;
  float: left;
  overflow: hidden;
  background-color: #eee;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 5px;
}

.listImageContainer img {
  width: 100%;
  height: 250px;
  transform: scale(1);
  transition: 1.5s ease;
}

.listImageContainer img:hover {
  transform: scale(1.05);
  transition: 1.5s ease;
  overflow: hidden;
}

.listTextContainer {
  width: 60%;
  float: left;
  overflow: hidden;
  padding: 0 15px;
  box-sizing: border-box;
}

.aboutUsPage .imageGallery {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.aboutUsPage .productListCont {
  display: flex;
  flex-wrap: wrap;
}

.aboutUsPage .productListCont .productCont {
  width: 23%;
  float: left;
  margin: 1%;
}

.productsPage .imgContainer {
  width: 30%;
}

.imgContainer img {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .listImageContainer,
  .listTextContainer {
    width: 100%;
    float: left;
    padding: 0;
  }
  .listImageContainer {
    padding: 5px;
  }
  .aboutUsPage .productListCont .productCont {
    width: 98%;
  }
}
