/* Team */
.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;
}

/* Team Two CSS */
.team-item {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.team-item:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}
.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  display: inline-block;
}
.team-image-inner {
  display: block;
}
.team-image-inner img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.team-image::before {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.team-item:hover .team-image .team-social-link {
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  opacity: 1;
  visibility: visible;
}
.team-social-link {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(50% + 30px));
          transform: translate(-50%, calc(50% + 30px));
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.team-social-link ul {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
}
.team-social-link ul li a {
  border-radius: 100%;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
}
.team-social-link ul li a svg {
  width: 16px;
  height: 16px;
}
.team-social-link ul li a svg path {
    stroke: currentColor;
    fill: currentColor;
}

.team-content h3 {
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.team-content h3 a {
  color: inherit;
}

.team-content span {
  text-transform: uppercase;
  line-height: 1.25;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .four-column-team-section .row-fluid .span3 , 
  .team-area .row-fluid .span3  {
    width: 50%;
  }
}



