@import url(//fonts.googleapis.com/css?family=Montserrat:300,500);

.team4 {
  background-color: white;
}

.team4 h3 {
  font-size: 45px;
  font-family: Poppins, "Source Sans Pro";
  margin: 1rem;
  color: black;
}

.team4 h4{
  color: #8d97ad;
}


.team4 .font-weight-medium {
  font-weight: 500;
}

.team4 h5 {
  line-height: 22px;
  font-size: 18px;
}

.team4 .subtitle {
  color: #8d97ad;
  /* color:  #d5cfcf; */
  line-height: 24px;
  font-size: 13px;
}



.team-member {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

}

.img-container img{
  height: 12rem;
  width: 12rem;
  object-fit: cover;
  border-radius: 50%;
}

.img-container {
  position: relative;
  z-index: 1;
  height: 12rem;
  width: 12rem;
  margin: 0 auto;
  
}

@media(min-width: 900px){
  .img-container{
    height: 14rem;
    width: 14rem;
  }
  .img-container img{
    height: 14rem;
    width: 14rem;
  }
}


@media(max-width: 400px){
  .img-container{
    height: 10rem;
    width: 10rem;
  }
  .img-container img{
    height: 10rem;
    width: 10rem;
  }
}

.img-container .overlay {
  position: absolute;
  top: 0;
 
  left: 0;

  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: rgba(255, 255, 255, 0.568);
  /* background-color: rgba(0, 0, 0, 0.5); */
  border-radius: 50%;
  
}

.img-container:hover .overlay {
  opacity: 1;
}

.social-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 13px;
}

.social-icons a {
  color: white;
  font-size: 30px;
}

.icon-social-linkedin i,
.icon-social-instagram i {
  font-size: 30px;
}

.divider {
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin: 2rem 0;
  position: relative;
}

.divider h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 0 1rem;
  color: rgb(51, 50, 50);
  font-family: Poppins, "Source Sans Pro";
  font-size: 2rem;
}
