/* EXAMPLE USAGE
@media (max-width: @screen-xs) { display: none; }
*/
@media (min-width: 601px) {
  display: none;
}
/* ==========================================================================
   People List
========================================================================== */

.people-list {
  padding: 0 0 6.8vw;
}
.people-list h2 {
  font-size: 42px;
  font-family: var(--sans-serif);
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 40px;
  padding: 0 0 40px;
  position: relative;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1520px) {
  .people-list h2 {
    font-size: 34px;
    margin: 0 0 32px;
    padding: 0 0 32px;
  }
}
@media (max-width: 1024px) {
  .people-list h2 {
    font-size: 29px;
    margin: 0 0 28px;
    padding: 0 0 28px;
  }
}
.people-list h2:before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
}
.people-list__row {
  padding: 0;
  margin: 0 -25px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .people-list__row {
    margin: 0 -15px;
  }
}
@media (max-width: 600px) {
  .people-list__row {
    margin: 0 -10px;
  }
}
@media (max-width: 400px) {
  .people-list__row {
    margin: 0;
  }
}
.people-list__item {
  padding: 0 25px 50px;
  min-width: 25%;
  max-width: 25%;
}
@media (max-width: 1024px) {
  .people-list__item {
    padding: 0 15px 30px;
    min-width: 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 600px) {
  .people-list__item {
    padding: 0 10px 20px;
    min-width: 50%;
    max-width: 50%;
  }
}
@media (max-width: 400px) {
  .people-list__item {
    padding: 0 0 20px;
    min-width: 100%;
    max-width: 100%;
  }
}
.people-list__item a {
  display: block;
  text-decoration: none;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
}
.people-list__item a:hover .people-list__img img {
  transform: scale(1.1);
}
.people-list__item a:hover h3 {
  color: var(--orange);
}
.people-list__item--dark a {
  background: var(--blueLightest);
}
.people-list__item img {
  display: block;
  max-width: 100%;
  transition: all 0.5s;
}
.people-list__item h3 {
  color: var(--blue);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 5px;
  line-height: 1.2;
  font-family: var(--sans-serif);
  font-style: normal;
  transition: all 0.3s;
}
@media (max-width: 1520px) {
  .people-list__item h3 {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .people-list__item h3 {
    font-size: 18px;
  }
}
.people-list__item h4 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.2;
  font-family: var(--sans-serif);
  font-style: normal;
}
@media (max-width: 1520px) {
  .people-list__item h4 {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .people-list__item h4 {
    font-size: 12px;
  }
}
.people-list__item p {
  margin: 10px 0;
  color: var(--black);
  line-height: 1.4;
  font-size: 18px;
  transition: all 0.3s;
}
@media (max-width: 1520px) {
  .people-list__item p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .people-list__item p {
    font-size: 12px;
  }
}
.people-list__img {
  overflow: hidden;
  margin: 0;
}
.people-list__content {
  padding: 20px;
  flex: 1;
}
@media (max-width: 600px) {
  .people-list__content {
    padding: 15px;
  }
}
