/* Team */
.team {
  text-align: center;
  background-color: #f8f9fa;
}
.team:hover .team-social {
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}
.team-thumb {
  position: relative;
}
.team-thumb img{
  width: 100%;
}
.team-social {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  padding: 10px 15px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  gap: 6px;
}
.team-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.team-social svg {
	width: 16px;
	height: 16px;
}
.team-social svg path {
    stroke: currentColor;
    fill: currentColor;
}


.team-content {
  padding: 20px;
}
.team-content h4 {
  line-height: 1.5;
  margin-bottom: 5px;
}
.team-content p {
  line-height: 1.5;
  display: block;
  margin: 0;
}
