#team .s1 {
  background: url(/i/team-hero.jpg) no-repeat center/cover;
}

#team .s1 .left {
  width: 10rem;
}

#team .overview-section .left, #team .overview-section .right {
  max-width: 660px;
}

#team .s3 {
  background: #242B3D;
  padding: 7.5rem 0;
}

#team .s3 .filters {
  display: flex;
  gap: 2rem;
  margin-bottom: 4.6rem;
}

#team .s3 .filters p {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 300;
  color: #fff;
}

#team .s3 .filters .label {
  margin: 0;
}

#team .s3 .filters .dd {
  position: relative;
}

#team .s3 .filters .dd .dd-toggle {
  min-width: 270px;
  text-align: left;
  background: none;
  border: 0;
  padding: 0 100px 2px 0;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  color: #fff;
}

#team .s3 .filters .dd .dd-text {
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: avenir-lt-pro, sans-serif;
  font-style: normal;
  font-weight: 200;
}

#team .s3 .filters .dd .dd-caret {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
}

#team .s3 .filters .dd .dd-caret img {
  width: 100%;
  height: 100%;
}

#team .s3 .filters .dd .dd-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  width: 100%;
  background: rgba(10, 12, 16, 0.7);
  display: none;
  z-index: 30;
  padding: 1.1rem .6rem;
}

#team .s3 .filters .dd .dd-menu li {
  color: #fff;
  list-style: none;
  font-size: 16px;
  margin-bottom: .85rem;
  cursor: pointer;
  transition: color .3s ease;
}

#team .s3 .filters .dd .dd-menu li:hover {
  color: #E0B0A6;
}

#team .s3 .filters .dd .dd-menu li:last-child {
  margin-bottom: 0;
}

#team .s3 .filters .dd .dd-menu.open {
  display: block;
}

#team .s3 .filters .dd .dd-toggle[aria-expanded="true"] .dd-caret img {
  transform: translateY(-50%) scaleY(-1);
}

#team .s3 .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.2rem;
  row-gap: 2.5rem;
}

#team .s3 .person {
  display: block;
}

#team .s3 .person .img-wrap {
  border: solid 1px transparent;
  transition: border-color .3s ease;
}

#team .s3 .person .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform .3s ease;
}

#team .s3 .person .info {
  padding: 1.2rem 0;
}

#team .s3 .person .info h3 {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1em;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: color .3s ease;
}

#team .s3 .person .info p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 300;
  color: #fff;
}

#team .s3 .person:hover .img-wrap {
  border-color: #E0B0A6;
}

#team .s3 .person:hover .img-wrap img {
  transform: scale(0.9);
}

#team .s3 .person:hover .info h3 {
  color: #E0B0A6;
}

@media screen and (max-width: 1100px) {
  #team .s3 .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  #team .s3 {
    padding: 5rem 0;
  }
  #team .s3 .filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  #team .s3 .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
