.headerBg {
  background-color: white;
  margin-top: 0;
  position: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.headerBg .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0.4rem 0;
}

.headerBg nav a {
  color: #f6966f !important;
}
.productsWrapper {
  margin: 2rem auto;
}

.productsWrapper h2 {
  color: #00307e;
  font-weight: bold;
  margin: 23px 0;
  font-size: 2rem;
}

.productsList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}

.productsList .singleProduct {
  padding: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  width: calc((100% / 4) - 3rem);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .productsList .singleProduct {
    width: calc((100% / 2) - 3rem);
  }
}

@media (max-width: 472px) {
  .productsList .singleProduct {
    width: 100%;
  }
}

.singleProduct img {
  width: 100%;
}

.singleProduct p {
  color: #003f75;
  text-align: center;
}
