.detail_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team_box {
  flex: 0 0 calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 3);
}
.team_title{
  background-color: var(--blue);
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-family: Poppins_Bold, Arial, sans-serif;
  margin-bottom: 10px;
}
.team_img{
  width: 100%;
  display: block;
}
@media screen and (max-width: 1219px) {
  .team_box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
