.bold {
  font-weight: bold;
}
strong {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.font-primary {
  color: #004f7c;
}
.font-white {
  color: #ffffff;
}
.font-grey {
  color: #636363;
}
.font-12 {
  font-size: 12px;
}
.pointer {
  cursor: pointer;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.text-shadow {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
.product {
  margin-bottom: 40px;
}
.product__image {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.product__title {
  margin-bottom: 15px;
}
.product__description {
  color: #636363;
}
.product:hover .product__image {
  box-shadow: 0 14px 16px 0 rgba(84, 84, 84, 0.4);
}
