.team-current-theme3 {
  position: relative;
}
.team-current-theme3 .inner-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 30px 30px;
  background-color: var(--theme-light-background);
  text-align: center;
  transition: all 300ms ease;
}
body.tm-dark-layout .team-current-theme3 .inner-box {
  background-color: var(--theme-color-light);
}
.team-current-theme3 .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.team-current-theme3 .inner-box:hover .social-links {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.team-current-theme3 .inner-box:hover .info-box {
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
}
.team-current-theme3 .image {
  position: relative;
  display: block;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
  z-index: 1;
}
.team-current-theme3 .image img {
  width: 100%;
  transition: all 400ms ease;
}
.team-current-theme3 .team-title {
  margin-bottom: 10px;
}
.team-current-theme3 .team-title a:hover {
  color: var(--theme-color1);
}
.team-current-theme3 .team-subtitle {
  position: relative;
  display: block;
  transition: all 400ms ease;
  margin-bottom: 20px;
}
.team-current-theme3 .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;
}
.team-current-theme3 .social-links li {
  list-style: none;
  margin-bottom: 0;
}
.team-current-theme3 .social-links li a {
  position: relative;
  height: 40px;
  width: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: var(--body-font-size);
  background: var(--theme-color-white);
  color: var(--theme-color2);
  border-radius: 50px;
  margin: 0 5px;
  transition: all 300ms ease;
}
body.tm-dark-layout .team-current-theme3 .social-links li a {
  color: #fff;
}
.team-current-theme3 .social-links li a:hover {
  color: #fff;
  background-color: var(--theme-color1);
}