body.modal-open {overflow: hidden;}
.team-section_tab_name--flex{
  list-style: none;
  display: flex;
  background
  background : transparent;
  gap: 3px;
  margin-bottom:24px;
}
.team-section_tab_name{
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  flex: 1;
  color: #333;
  font-weight: 600;
  border-radius:12px;
}
.team-card_main .team-card-flex  {
  display: none;
  animation: fade .4s ease;
}
.team-card-flex.current {
  display: flex;
}

@keyframes fade{
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}