.teams_grid p {
  color: var(--text_clr_secondary) !important;
}
.card_team_item {
  box-shadow: 0px 0px 100px 0px #0000000f;
  margin: 15px;
}
.team_card::after {
  border-block: none !important;
  width: 100% !important;
}
.team_card::before {
  border-inline: 0 !important;
  height: 100% !important;
}
.team_card::after,
.team_card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  border: 1px solid var(--border_clr_06);
  transition: 0.5s ease-in-out;
}
.team_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team_card h4 {
  margin-top: 22px;
  margin-bottom: 8px;
}
.team_img {
  margin: 0 auto;
}
.text-white {
  color: var(--clr_white) !important;
}
.full_team {
  position: relative;
  margin-block-end: -300px;
}
.full_team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.pagination .next.page-numbers {
  width: 80px;
}
.pagination .prev.page-numbers {
  width: 95px;
}
.pagination .page-numbers {
  color: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
}
.pagination .page-numbers:hover {
  background: var(--bg_secondary_01);
  color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
}
.pagination .page-numbers.current {
  background: var(--bg_secondary_01);
  color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
}
@media (max-width: 639px) {
  .full_team {
    margin-block-end: -190px;
  }
}
