.team {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 60px;
  gap: 54px;
}
@media (max-width: 699px) {
  .team {
    padding-top: 21px;
    padding-bottom: 21px;
    gap: 24px;
  }
}
.team__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 699px) {
  .team__header {
    gap: 16px;
  }
}
.team__header h1 {
  margin: 0;
  color: #040B2F;
  font-family: "Exo 2";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 699px) {
  .team__header h1 {
    color: #040B2F;
    font-family: "Exo 2";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
  }
}
.team__header p {
  margin: 0;
  width: 446px;
  color: rgba(4, 11, 47, 0.85);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 699px) {
  .team__header p {
    width: 100%;
  }
}
.team__top {
  display: flex;
  gap: 18px;
}
@media (max-width: 699px) {
  .team__top {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}
.team__top__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 699px) {
  .team__top__item {
    gap: 16px;
  }
}
.team__top__item .separator {
  display: flex;
  width: 100%;
  height: 1px;
}
.team__top__item__text {
  color: #040B2F;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 326px;
}
@media (max-width: 699px) {
  .team__top__item__text {
    max-width: unset;
    width: 100%;
    align-self: stretch;
    color: #040B2F;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 19.6px */
  }
}
.team carousel-block.team__carousel {
  width: 100%;
  height: 510px;
}
@media (max-width: 699px) {
  .team carousel-block.team__carousel {
    height: 285px;
  }
}
.team carousel-block.team__carousel .team__car-item {
  width: 410px;
  height: 410px;
  object-fit: cover;
}
@media (max-width: 699px) {
  .team carousel-block.team__carousel .team__car-item {
    width: 231px;
    height: 285px;
  }
}
.team carousel-block.team__carousel .team__car-item.current {
  animation: currentCarousel 0.5s;
  height: 502px;
}
@media (max-width: 699px) {
  .team carousel-block.team__carousel .team__car-item.current {
    animation: none;
    height: 285px;
  }
}
.team carousel-block.team__carousel .team__car-item.prev {
  animation: prevCarousel 0.5s;
  height: 410px;
}
@media (max-width: 699px) {
  .team carousel-block.team__carousel .team__car-item.prev {
    animation: none;
    height: 285px;
  }
}
@keyframes currentCarousel {
  from {
    height: 410px;
  }
  to {
    height: 502px;
  }
}
@keyframes prevCarousel {
  from {
    height: 502px;
  }
  to {
    height: 410px;
  }
}
/*# sourceMappingURL=team.css.map */