.page-header {
  position: relative;
  color: #ffffff;
  background: transparent;
}
.page-header__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  gap: 10px;
}
.page-header__title {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
}
.page-header__content {
  text-align: center;
  font-size: 14px;
}

.team {
  position: relative;
}
.team__title {
  position: relative;
  padding: 50px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Oswald", sans-serif;
  color: #0054a3;
}
.team__title::before {
  content: "";
  position: absolute;
  top: calc(100% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.team__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 50px 0;
  gap: 50px;
}
.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  color: #ffffff;
  text-align: center;
  gap: 16px;
}
.team__item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team__item__image {
  width: 180px;
  height: 240px;
}
.team__item__title {
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}
.team__item__description {
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  .team__item__content {
    max-width: 150px;
  }
}
@media screen and (min-width: 992px) {
  .page-header__title {
    font-size: 90px;
  }
  .page-header__content {
    font-size: 40px;
  }
  .team__wrapper {
    align-items: flex-start;
    padding: 100px 0;
    gap: 70px;
  }
}