.section-comite-executivo {
  background-color: #FBFEFD;
  padding: 40px 0
}

@media (min-width: 768px){
  .section-comite-executivo {
    padding: 150px 0
  }
}

.section-comite-executivo .text {
  margin: 0 0 50px
}

.section-comite-executivo .text h2 {
  color: #003787;
}

.section-comite-executivo .text p {
  font-size: 24px;
  line-height: 36px;
  margin: 0;
  font-weight: 300;
}

.member {
  position: relative;
  max-width: 500px;
  margin: 40px auto 0;
  color: #fff;
  transition: all .5s ease 0s;
}

.member::before {
  content: '';
  background-image: linear-gradient(to top,rgba(6,32,49,1) 25%,rgba(6,32,49,0.50) 60%);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .5s ease 0s;
}

.member .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
}

.member .caption h3 {
  font-size: 23px;
  line-height: 42px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.member .caption .office p {
  font-size: 14px;
  line-height: 39px;
  margin: 0;
  font-weight: 600;
  position: relative;
}

.member .caption .office p:after {
  content: '';
  height: 4px;
  width: 30%;
  background-color: #c34650;
  position: absolute;
  top: 50%;
  margin-left: 10px;
  transition: all .5s ease 0s;
}

.member .caption .bio {
  overflow: hidden;
  transition: all .5s ease 0s;
  height: 0;
  max-height: 500px;
  opacity: 0;
}

.member:hover::before {
  opacity: 1;
}

.member:hover .caption .office p:after {
  width: 70%;
}

.member:hover .caption .bio {
  height: auto;
  opacity: 1;
}

/* mobile */
@media (max-width: 767px){
  .section-comite-executivo .text {
    margin: 0;
    padding: 0 15px;
  }
  .section-comite-executivo .text p {
    font-size: 16px;
    line-height: 30px;
  }
}