/* CSS Document */

.site-inner .wrap {
  max-width: 100%;
}

.content .wrap {
  max-width: 1500px;
}

/* About Hero */

.about-hero img {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

/* About Content */

.about-content {
  padding: 50px 0;
}

/* change to match site */ 
.about-title {
    text-align: center;
    display: block;
    font-family: "Open Sans";
    color: #000;
    font-size: 36px;
    line-height: 38px;
    margin: 0 0 40px;
}

  .about-content p:last-child {
    margin: 0;
  }

/* Team */

.team-section {
  text-align: center;
  padding: 0 0 50px;
}

.team {
  width: 100%;
  display: inline-grid;
  grid-template-columns: 32% 32% 32%;
  grid-column-gap: 2%;
  grid-row-gap: 30px;
}

.team-member {
  background: #f5f5f5;
  padding: 30px;
}

.member-img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 350px;
  margin: 0 auto 20px;
}

.member-name {
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
  margin: 0 0 10px;
}

.member-title {
  display: block;
  font-size: 22px;
  line-height: 24px;
  margin: 0 0 20px;
}

.member-bio {
  text-align: left;
}

    .member-bio p:last-child {
      margin: 0;
    }

/* Responsive Design */

@media (max-width: 1650px) {
  
  .content .wrap {
    max-width: 1400px;
  }  
}

@media (max-width: 1550px) {
  
  .content .wrap {
    max-width: 1300px;
  }  
}

@media (max-width: 1440px) {
  
  .content .wrap {
    max-width: 1200px;
  }  

/* Team */
  
  .member-img {
    height: 310px;
  }  
}

@media (max-width: 1350px) {
  
  .content .wrap {
    max-width: 1100px;
  }

/* Team */
  
  .member-img {
    height: 270px;
  }  

  .member-bio p,
  .member-bio li {
    font-size: 16px;
  }
}

@media (max-width: 1250px) {
  
  .content .wrap {
    max-width: 1000px;
  }

/* About Hero */

  .about-hero img {
    height: 360px;
  }  
}

@media (max-width: 1150px) {
  
  .content .wrap {
    max-width: 900px;
  }

/* Team */
  
  .team-member {
    padding: 20px;
  }

  .member-img {
    height: 230px;
  }  

  .member-name {
      font-size: 26px;
      line-height: 28px;
  }  
}

@media (max-width: 1024px) {
  
  .content .wrap {
    max-width: 90%;
  }

/* Team */

  .team {
    grid-template-columns: 49% 49%;
  }

  .member-img {
    height: 350px;
  }  
}

@media (max-width: 900px) {
    
/* Team */

  .member-img {
    height: 310px;
  }  
}

@media (max-width: 768px) {

/* About Content */

  .about-content {
    text-align: center;
  }   
    
/* Team */
  
  .team {
    display: block;
  }
  
  .team-member {
    margin: 0 0 20px;
  }

      .team-member:last-child {
        margin: 0;
      }

  .member-img {
    height: 550px;
  }  

  .member-name {
      font-size: 30px;
      line-height: 32px;
  }

  .member-bio {
    text-align: center;
  }
  
  .member-bio p,
  .member-bio li {
    font-size: 18px;
  } 
}

@media (max-width: 660px) {

/* Team */

  .member-img {
    height: 460px;
  }    
}

@media (max-width: 550px) {

.about-title {
    font-size: 32px;
    line-height: 34px;
}
  
/* About Content */
  
  .about-content p,
  .about-content li {
    font-size: 16px;
  }  

/* Team */

  .member-img {
    height: 420px;
  }  

  .member-name {
      font-size: 28px;
      line-height: 30px;
  }
  
  .member-bio p,
  .member-bio li {
    font-size: 16px;
  }   
}

@media (max-width: 450px) {

/* Team */

  .member-img {
    height: 340px;
  }  

  .member-name {
      font-size: 26px;
      line-height: 28px;
  } 
}

@media (max-width: 350px) {

/* Team */

  .member-img {
    height: 260px;
  }  
}