.team-section .team-section__list-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 19.125rem;
}

.team-section .team-section__item {
  text-align: center;
  justify-self: center;
}

.team-section .team-section__item-image {
  width: 16.625rem;
  height: 21.4375rem;
  overflow: hidden;
}

.team-section .team-section__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-section{
	margin-top: 9.625rem;
}
.team-section .team-section__title{
  color: var(--light);
  margin-bottom: 5.625rem;
  margin-top: 3rem;
}
.team-section .team-section_text_block {
  margin-top: 1.25rem;
  color: var(--light);
}
.team-section .team-section_text_block .title_name{
  font-family: "Mingolia Display";
  font-weight: 400;
}
@media (max-width: 767px) {
  .team-section__list {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;   
    width: 100%;
  }

  .team-section__list-content {
    display: flex;
    flex-direction: row;
    width: max-content; 
  }

  .team-section__item {
    flex: 0 0 auto !important;  
    margin-right: 1.7rem; 
    grid-column: auto !important; 
    grid-row: auto !important;
    margin-top: 0 !important;
  }
}


