@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
.team-current-theme2 .inner-block {
  position: relative;
  overflow: hidden;
}
.team-current-theme2 .inner-block:hover .image-box img {
  transform: scale(1.1);
}
.team-current-theme2 .inner-block:hover .content-box .team-title {
  color: var(--theme-color1);
}
.team-current-theme2 .inner-block:hover .social-links {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-current-theme2 .image-box {
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}
.team-current-theme2 .image-box img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 500ms ease;
}
.team-current-theme2 .content-box .inner-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 24px;
}
@media (max-width: 1439.98px) {
  .team-current-theme2 .content-box .inner-box {
    padding: 0 15px;
  }
}
@media (max-width: 1365.98px) {
  .team-current-theme2 .content-box .inner-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 575.98px) {
  .team-current-theme2 .content-box .inner-box {
    padding: 0;
  }
}
.team-current-theme2 .content-box .team-title {
  color: var(--text-color);
  margin-bottom: 3px;
  margin-top: 0;
}
.team-current-theme2 .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  list-style: none;
  transition: all 300ms ease;
}
@media (max-width: 1439.98px) {
  .team-current-theme2 .social-links {
    gap: 6px;
  }
}
.team-current-theme2 .social-links li {
  margin-bottom: 0;
}
.team-current-theme2 .social-links li a {
  width: 28px;
  height: 28px;
  line-height: 27px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #B5B5B5;
  display: inline-block;
  color: #B5B5B5;
  font-size: 14px;
}
.team-current-theme2 .social-links li a:hover {
  color: var(--theme-color1);
  border-color: var(--theme-color1);
}