.aboutUsTitleBar {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 75px 12% 40px 12%;
}
.aboutUsTitleBar h2 {
  color: white;
  /* font-size: 42px; */
  font-weight: 800;
}
.aboutUsTitleBar p {
  color: #9a9a9a;
  font-weight: 200;
  font-style: 16px;
}
.aboutUsTitleBar img {
  width: 100%;
}

.teamMembers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  padding: 0 12%;
  margin-bottom: 80px;
}
.teamMembers .memberProfile {
  width: 100%;
}
.teamMembers .memberProfile img {
  width: 100%;
  max-height: 500px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 5px;
}
.teamMembers .memberImg {
  position: relative;
}
.teamMembers h3 {
  color: white;
  font-size: 26px;
  margin-top: 5px;
}
.teamMembers h4 {
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 200;
}
.teamMembers a {
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  transition: all ease 100ms;
}
.teamMembers a:hover {
  color: white;
}
.teamMembers .linkedinLink {
  position: absolute;
  left: 10px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  padding: 8px;
  border-radius: 50%;
  background-color: #1c1c1c;
  transition: 150ms all ease;
}
.teamMembers .linkedinLink svg {
  width: 100%;
  height: 100%;
}
.teamMembers .linkedinLink svg path {
  fill: #9a9a9a;
  transition: 150ms all ease;
}
.teamMembers .linkedinLink:hover {
  background-color: #9a9a9a;
}
.teamMembers .linkedinLink:hover svg path {
  fill: #1c1c1c;
}

@media (max-width: 1200px) {
  .teamMembers {
    grid-template-columns: repeat(3, 1fr); /* 2 per row on tablet */
  }
}
@media (max-width: 768px) {
  .teamMembers {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}
@media (max-width: 480px) {
  .teamMembers {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/*# sourceMappingURL=aboutus.css.map */
