.team-current-theme2 .inner-block {
  position: relative;
  background-color: #e7ebea;
  border-radius: 20px;
  height: 406px;
  transition: all 300ms ease;
}
.team-current-theme2 .inner-block:hover {
  background-color: var(--theme-color1);
}
.team-current-theme2 .inner-block:hover .image img {
  transform: scale(1.04, 1.04) rotate(2deg);
}
.team-current-theme2 .inner-block:hover .socials-icon-box .social-links {
  transform: scale(1, 1);
}
.team-current-theme2 .inner-block:hover .socials-icon-box .social-links a {
  border-color: #fff;
}
.team-current-theme2 .inner-block:hover .content .inner {
  background: var(--theme-color3);
}
.team-current-theme2 .image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}
.team-current-theme2 .image img {
  width: 100%;
  transition: all 500ms ease;
}
.team-current-theme2 .content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.team-current-theme2 .content .inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background-color: rgba(12, 47, 37, 0.56);
  border: 1px solid rgba(12, 47, 37, 0.1);
  backdrop-filter: blur(51.4000015259px);
  padding: 16px 20px 18px;
  border-radius: 10px;
  width: 100%;
  transition: all 300ms ease;
}
.team-current-theme2 .content .team-title {
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  letter-spacing: -0.02em;
}
.team-current-theme2 .content .team-subtitle {
  color: var(--theme-color1);
  letter-spacing: -0.02em;
}
.team-current-theme2 .socials-icon-box {
  position: relative;
  display: inline-block;
}
.team-current-theme2 .socials-icon-box .share-icon {
  background-color: #f7f8ed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color1);
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.team-current-theme2 .socials-icon-box .social-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: column;
  position: absolute;
  bottom: 75px;
  left: calc(50% - 21px);
  transform: scale(0, 1);
  transition: all 300ms ease;
}
.team-current-theme2 .socials-icon-box .social-links a {
  width: 45px;
  height: 45px;
  line-height: 28px;
  border-radius: 50%;
  font-size: 14px;
  color: #00142b;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}
.team-current-theme2 .socials-icon-box .social-links a:hover {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
}