.team-current-theme1 .inner-block {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.team-current-theme1 .inner-block .image-block {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.team-current-theme1 .inner-block .image-block::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: linear-gradient(360deg, #000000 11.41%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.team-current-theme1 .inner-block .image-block img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 500ms ease;
}
.team-current-theme1 .inner-block .image-block img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.team-current-theme1 .inner-block .content-block {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 40px;
  transform: translateY(58px);
  transition: all 0.4s ease-in-out;
}
.team-current-theme1 .inner-block .content-block .team-title {
  margin: 0;
}
.team-current-theme1 .inner-block .content-block .team-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-current-theme1 .inner-block .content-block .team-title a:hover {
  color: #fff;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}
.team-current-theme1 .inner-block .content-block .social-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-current-theme1 .inner-block .content-block .social-links a {
  display: inline-block;
  border-radius: 50%;
  background: var(--theme-color2);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 13px;
  color: #fff;
}
.team-current-theme1 .inner-block .content-block .social-links a:hover {
  background-color: #fff;
  color: var(--theme-color1);
}
.team-current-theme1 .inner-block:hover .image-block::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: linear-gradient(360deg, #ff6b1e 11.41%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  z-index: 11;
}
.team-current-theme1 .inner-block:hover .image-block img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.team-current-theme1 .inner-block:hover .image-block img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.team-current-theme1 .inner-block:hover .team-subtitle {
  color: #fff;
}
.team-current-theme1 .inner-block:hover .content-block {
  transform: translateY(0px);
}
.team-current-theme1 .inner-block:hover .content-block .social-links {
  opacity: 1;
  visibility: visible;
}