#teachers {
  background-color: hsla(200, 100%, 98%);
}
.container {
  width: 70%;
  max-width: 1280px;
}
.container * {
  box-sizing: border-box;
}
.row {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.row .col-lg-3 {
  flex: 0 1 300px;
  aspect-ratio: .6;
  background-color: white;
  padding: 0;
  margin: 0;
  border: 4px solid white;
  border-radius: 10px;
  box-shadow: 1px 1px 4px hsla(0, 0%, 0%, .3);
  overflow: hidden;
}
.our-team {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.row .team-img {
  flex: 1;
  width: 100%;
  overflow: hidden;
}
.row .team-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
#staffCon .team-content {
  background-color: hsla(0, 0%, 100%);
}