#team #container .s2 {
  padding: 9.5rem 0;
}

#team #container .s2 .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  row-gap: 3.35rem;
  position: relative;
  z-index: 2;
}

#team #container .s2 .wrap .person .headshot {
  position: relative;
  max-height: 573px;
  margin-bottom: 2.23rem;
}

#team #container .s2 .wrap .person .headshot img {
  display: block;
  width: 100%;
  height: 100%;
}

#team #container .s2 .wrap .person .headshot::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(92, 103, 111, 0.6);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

#team #container .s2 .wrap .person p {
  font-size: 1.33rem;
  line-height: 1.7rem;
}

#team #container .s2 .wrap .person .name {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 13px;
  color: #5C676F;
}

#team #container .s2 .wrap .person .title {
  font-weight: 400;
  color: #A4A9AC;
}

#team #container .s2 .wrap .person:hover .headshot::after {
  opacity: 1;
}

#team #container .s2 .custom-dropdown {
  position: relative;
  display: inline-block;
  min-width: 400px;
  margin-bottom: 4rem;
  cursor: pointer;
}

#team #container .s2 .custom-dropdown .dropdown-header {
  font-family: "Roboto Serif", serif;
  font-style: normal;
  font-weight: 400;
  font-weight: 300;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 50px 10px 20px;
  text-align: left;
  font-size: 2.23rem;
  color: #7E858B;
  background-image: url(/i/svg/drop-down-arrow.svg);
  background-repeat: no-repeat;
  background-position: 96%;
  background-size: 10px;
  border-bottom: solid 1px #7E858B;
}

#team #container .s2 .custom-dropdown .dropdown-header.active {
  background-image: url(/i/drop-up-arrow.png);
  background-color: #F6F6F7;
  background-size: 9px;
  border-bottom: none;
}

#team #container .s2 .custom-dropdown .dropdown-options {
  display: none;
  position: absolute;
  top: 125%;
  width: 100%;
  background-color: #F6F6F7;
  z-index: 10;
  padding: 0 20px;
  overflow-y: auto;
}

#team #container .s2 .custom-dropdown .dropdown-option {
  font-family: "Roboto Serif", serif;
  font-style: normal;
  font-weight: 400;
  padding: 15px 0;
  font-size: 1.33rem;
  line-height: 2rem;
  color: #7E858B;
  text-align: left;
  cursor: pointer;
  border-bottom: solid 1px #7E858B;
}

#team #container .s2 .custom-dropdown .dropdown-option:last-of-type {
  border-bottom: none;
}

/***** MEDIA *****/
@media screen and (max-width: 1300px) {
  #team #container .s2 {
    padding: 8.34rem 0;
  }
  #team #container .s2 .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  #team #container .s2 .wrap .person p {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }
  #team #container .s2 .custom-dropdown {
    min-width: 350px;
  }
  #team #container .s2 .custom-dropdown .dropdown-header {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  #team #container .s2 {
    padding: 6rem 0;
  }
  #team #container .s2 .wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  #team #container .s2 .wrap .person p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #team #container .s2 .wrap .person .name {
    margin-bottom: 5px;
  }
  #team #container .s2 .custom-dropdown {
    min-width: 270px;
  }
  #team #container .s2 .custom-dropdown .dropdown-header {
    font-size: 1.3rem;
    background-size: 7px;
    padding: 10px 30px 10px 10px;
  }
  #team #container .s2 .custom-dropdown .dropdown-options {
    padding: 0 10px;
  }
  #team #container .s2 .custom-dropdown .dropdown-option {
    padding: 5px 0;
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
