.bord-member-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 0.5rem;
  flex-direction: row;
}
@media (max-width: 1150px) {
  .bord-member-container {
    grid-template-columns: auto auto auto;
  }
}
@media (max-width: 700px) {
  .bord-member-container {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 450px) {
  .bord-member-container {
    grid-template-columns: auto;
  }
}
.bord-items {
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  align-items: center;
}
.bord-img-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  background: #60b135;
}
.bord-img-container a > img {
  width: 100%;
  height: 100%;
  contain: content;
}
.bord-img-container a > img:hover {
  background: var(--text-color);
  transition: all 200ms ease-in;
  filter: opacity(0.3);
}
.bord-name {
  margin: 0.5rem auto;
}
.bord-name h5 {
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  color: var(--text-color);
}
.bord-posts {
  margin: 0;
}
.bord-posts p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  line-height: 25px;
  color: #898b92;
}

.heading__secondary {
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #60b135;
  line-height: 27px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Roboto Slab;
  font-size: 25px;
}
.heading__secondary span:nth-child(1) {
  width: 50%;
  display: table-cell;
  position: relative;
}
.heading__secondary span:nth-child(2) {
  display: table-cell;
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
}
.heading__secondary span:nth-child(3) {
  width: 50%;
  display: table-cell;
  position: relative;
}
.heading__secondary span:nth-child(1):before,
.heading__secondary span:nth-child(3):before {
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  height: 2px;
  background: #eee;
  display: block;
}
.mebers-title {
  margin: 2rem auto;
}

.table-container {
  margin-bottom: 5rem;
}
.staffs-img-container {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.staffs-img-container > img {
  width: 100%;
  height: 100%;
  contain: content;
}
.staffs-name a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}
.staffs-name > a,
.staffs-img-container > img:hover {
  transform: translateY(-1px);
  cursor: pointer;
}
