/* TEAM BIO  */
.team-bio-container {
  /* display: flex; */
  padding: 50px 100px;
}

.team-bio-card {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding: 50px;
  width: 100%;
  /* background-color: #f5f5dc; */
  /* background-color: whitesmoke; */
  transition: 0.3s all linear;
  cursor: pointer;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0px 0px 4px 2px #cccaca;
}

.team-bio-card:hover {
  transition: 0.3s all linear;
  border-left: 4px solid var(--primary-color);
}

.team-bio-img {
  width: 30%;
  aspect-ratio: 4/3;
}

.team-bio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-bio-contents {
  width: 60%;
  margin-top: 20px;
}

.team-bio-contents h2 {
  margin-bottom: 10px;
  font-family: var(--fire-font);
}

.team-bio-contents p {
  font-family: var(--fire-font);
  line-height: 1.2;
  color: var(--secondary-black);
  margin-top: 10px;
}
/* OUR TEAM */
.our-team-container {
  padding: 50px 100px;
}

.team-head-wrapper {
  text-align: center;
}

.team-head-wrapper h2 {
  font-family: var(--fire-font);
  font-size: 1.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-head-wrapper p {
  font-family: var(--popins-font);
}

/* Team Picture */

.team-members-wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
}

.team-member-card-wrapper {
  border-radius: 24px;
  overflow: hidden;
  width: 25%;
  position: relative;
  /* box-shadow: 0px 0px 4px 2px rgb(167, 162, 162); */
}

.team-img-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.team-pic-wrapper {
  width: 100%;
  height: 100%;
  /* aspect-ratio: ; */
  overflow: hidden;
  transition: 0.2s all linear;
}

.team-pic-wrapper img {
  width: 100%;
  object-fit: cover;
  font-family: var(--popins-font);
  height: 100%;
  transition: 0.2s all linear;
}

.team-pic-wrapper img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.team-details-wrapper {
  /* background-color: wheat; */
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 20px;

  line-height: 25px;
}

.team-details-wrapper p {
  font-family: var(--fire-font);
  color: #fff;
  font-weight: 600;
}

.team-details-wrapper span {
  font-family: var(--popins-font);
  color: var(--secondary-black);
  color: #cac6c6;
}

@media (max-width: 867px) {
  .team-bio-container {
    padding: 50px 20px;
  }

  .team-bio-card {
    /* display: block; */
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .team-bio-img {
    width: 100%;
  }

  .team-bio-contents {
    width: 100%;
  }
  .our-team-container {
    padding: 50px 20px;
  }
  .team-members-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .team-member-card-wrapper {
    width: 75%;
  }
}
