.team-grid {
  text-align: left;
  padding: 2rem 0 0;
}
.team-grid .team-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
  justify-content: left;
  transition: opacity 0.3s ease-out;
}
.team-grid .team-wrap.out {
  opacity: 0;
}
.team-grid .employee {
  position: relative;
  width: calc(33.33% - 2rem);
  margin-bottom: 1rem;
  opacity: 0.08;
  transform: translateY(36px) scale(0.98);
  transition: opacity 180ms ease-out, transform 280ms ease-out;
  will-change: opacity, transform;
}
.team-grid .employee:nth-of-type(3n+2) {
  top: 2rem;
}
@media (max-width: 800px) {
  .team-grid .employee:nth-of-type(3n+2) {
    top: 0;
  }
}
@media (max-width: 800px) {
  .team-grid .employee {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.team-grid .employee .employee-image {
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.team-grid .employee .employee-image div[style*=background] {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 2;
}
.team-grid .employee .employee-info {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .team-grid .employee .employee-info {
    flex-flow: column;
    align-items: center;
  }
}
.team-grid .employee .employee-info p, .team-grid .employee .employee-info span {
  font-size: 16px;
  width: 50%;
}
@media (max-width: 1200px) {
  .team-grid .employee .employee-info p, .team-grid .employee .employee-info span {
    width: 100%;
  }
}
.team-grid .employee .employee-info p {
  font-weight: 600;
  margin: 0;
}
.team-grid .employee .employee-info span {
  display: block;
  font-weight: 300;
  text-align: right;
}
@media (max-width: 1200px) {
  .team-grid .employee .employee-info span {
    text-align: left;
  }
}
.team-grid .employee .employee-quote {
  margin-top: 1rem;
  text-decoration: underline;
}
.team-grid .employee .employee-quote p {
  font-size: 1.1rem;
}/*# sourceMappingURL=bg-team-grid.css.map */