/*--
/*  Team CSS
/*----------------------------------------*/
.single-team {
  padding: 29px 26px 18px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-team {
    padding: 29px 20px 18px;
  }
}
.single-team .team-image {
  overflow: hidden;
}
.single-team .team-image img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-team .team-content {
  padding-top: 22px;
}
.single-team .team-content h3 {
  margin: 0 0 6px;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-team .team-content h3 {
    font-size: 22px !important;
  }
}
.single-team .team-content p {
  letter-spacing: 0.1px;
}
.single-team:hover {
  -webkit-box-shadow: 0px 21px 32px 0px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 21px 32px 0px rgba(0, 0, 0, 0.13);
}
.single-team:hover .team-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Team Social CSS */
.team-member .image img{
  width: 100%;
}
.team-member .content {
  border-radius: 0px 0px 6px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 21px 30px 26px;
}
.team-member h3 {
  line-height: 1.57;
  margin-bottom: 3px;
}
.team-member p {
  line-height: 1.3125;
}
.team-member .social {
  width: 40px;
  position: relative;
}
.team-member .social-icon {
  width: 100%;
  height: 40px;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-member .social-icon svg path{
  fill: currentColor;
  stroke: currentColor;
}
.team-member .social-list {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  margin-bottom: 10px;
  padding: 15px 13px 11px 12px;
  -webkit-filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.04));
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.team-member .social-link {
  display: block;
}
.team-member .social-link svg path{
  fill: currentColor;
  stroke: currentColor;
}
.team-member .social-link:not(:last-child) {
  margin-bottom: 10px;
}

.team-member .social:hover .social-list {
  opacity: 1;
  visibility: visible;
}