/* Social media btns */
.wpp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 35px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  z-index: 100;
}
.i-wpp {
  margin-top: 8px;
  color: white;
}
.wpp:hover {
  background-color: #33ab60;
}

.facebook {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 110px;
  right: 35px;
  background-color: #4267b2;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  z-index: 100;
}
.i-fb {
  margin-top: 10px;
  color: white;
}
.facebook:hover {
  background-color: #415680;
}

.products-container {
  display: flex;
  list-style: none;
  flex-flow: row wrap;
  justify-content: space-around;
}
.products-container_img {
  width: 160px;
  margin-top: 30px;
}

@media only screen and (min-width: 500px) {
  .products-container_img {
    width: 200px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .products-container_img {
    width: 250px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 990px) {
  .products-container {
    flex-flow: nowrap;
  }
  .products-container_img {
    width: 240px;
    margin-top: 30px;
    padding: 10px;
  }
}
