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

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

#team #container .s2 .container > div{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  row-gap: 3.8rem;
}

#team #container .s2 .container .person .img-wrap {
  position: relative;
  height: 566px;
  margin-bottom: 2.23rem;
  overflow: hidden;
}

#team #container .s2 .container .person .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
}

#team #container .s2 .container .person .img-wrap .color {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
}

#team #container .s2 .container .person .content {
  padding-left: 1.27rem;
  border-left: solid 3px #2C7881;
  margin:0;
}

#team #container .s2 .container .person .content h3 {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 200;
  font-size: 1.77rem;
  line-height: 2.5rem;
  color: #2E3743;
  margin-bottom: 10px;
}

#team #container .s2 .container .person .content p {
  color: #637B7C;
}

#team #container .s2 .container .person:hover .color {
  opacity: 1;
  visibility: visible;
}

/***** MEDIA *****/
@media screen and (max-width: 1100px) {
  #team #container .s2 .container > div{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 980px) {
  #team #container .s2 .container .person .img-wrap {
    height: 450px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  #team #container .s2 {
    padding: 5rem 0;
  }
  #team #container .s2 .container > div{
    grid-template-columns: repeat(1, 1fr);
  }
  #team #container .s2 .container .person .img-wrap {
    height: 350px;
  }
  #team #container .s2 .container .person .content {
    padding-left: 1rem;
  }
  #team #container .s2 .container .person .content h3 {
    font-size: 1.5rem;
    line-height: 2.1rem;
    margin-bottom: 5px;
  }
}
