.staff-card-container {
  border: var(--not-so-light-grey) solid 1px;
  border-radius: 10px;
  display: flex;
  /* flex-direction: row; */
  width: 35%;
  height: 125px;
  /* flex-wrap: wrap; */
  /* height: 150px; */
  /* min-height: 150px; */
  /* max-width: 400px; */
  min-width: 360px;
  /* background-color: red; */
  padding: 15px;
  gap: 25px;
  background-color: white;
}
.image-wrapper {
  height: 100%;
  min-width: 100px;
  aspect-ratio: 1;
}
.image-cover {
  /* border: green solid 2px; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.staff-card-container .image-wrapper {
  display: flex;
  max-width: 125px;
  /* padding-right: 5px; */
  aspect-ratio: 1;
  overflow: hidden;
  justify-content: center;
  border-radius: 10px;
  /* height: 100%; */
}

.staff-card-container .staff-details {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-top: 5px;
  /* gap: 5px; */
}
.staff-card-container .staff-details .name {
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 5px;
}
.staff-card-container .staff-details .email,
.staff-card-container .staff-details .phno {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  gap: 10px;
  margin-bottom: 5px;
  /* margin-top: -5px; */
  /* align-items: center; */
  /* justify-content: center; */
}
.staff-card-container .staff-details .designation {
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}
.icon,
.text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon {
  /* border: black solid 2px; */
  aspect-ratio: 1;
  width: 25px;
}

@media only screen and (max-width: 800) {
    .staff-card-container {
        width: 80%;
    }
}

.office-staff-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--body-color);
}

.office-staff-container > .section-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    /* margin: 0; */
    width: 100%;
    margin-bottom: 30px;
    /* border: red solid 2px; */
}

.office-staff-container .title:first-child {
    margin-top: 30px;
}

.office-staff-container .staff-card-wrapper {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    /* border: black solid 2px; */
    /* height: 500px; */
    justify-content:space-around;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0% 10%;
    margin-bottom: 30px;
}