.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;
}

.contentWrapper {
  margin: 5rem 0;
}

.contentFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contentCard {
  width: 30%;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.contentCard:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contentCard img {
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
}

.contentCard .noImage {
  width: 156px;
  height: 156px;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
  margin-bottom: 2rem;
}

.contentCard h3 {
  font-size: 1.5rem;
  color: #748093;
  text-align: center;
}

.contentCard p {
  font-size: 0.875rem;
  color: #748093;
  text-align: center;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .contentCard {
    width: 45%;
  }
}

@media (max-width: 476px) {
  .contentCard {
    width: 100%;
  }
}
