.team-current-theme2 {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 0 30px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767.98px) {
  .team-current-theme2 {
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .team-current-theme2 {
    flex-direction: column;
    gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}
.team-current-theme2:hover {
  border-bottom: 1px solid var(--theme-color1);
}
.team-current-theme2:hover .arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.team-current-theme2 .image {
  position: relative;
  width: 174px;
  height: 174px;
}
.team-current-theme2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-current-theme2 .arrow-icon {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: inherit;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  cursor: pointer !important;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: var(--theme-color1);
  opacity: 1;
  visibility: hidden;
}
.team-current-theme2 .arrow-icon i {
  rotate: -30deg;
  transition: all 0.2s ease-in-out;
}
.team-current-theme2 .arrow-icon:hover {
  background-color: var(--theme-color1);
  color: #000;
}
.team-current-theme2 .arrow-icon:hover i {
  rotate: 0deg;
}
.team-current-theme2 .content .team-title {
  color: #fff;
  margin-bottom: 5px;
}
.team-current-theme2 .content .team-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.team-current-theme2 .content .social-links {
  padding-top: 20px;
  gap: 5px;
  display: flex;
}
.team-current-theme2 .content .social-links li {
  list-style-type: none;
}
.team-current-theme2 .content .social-links li a {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: inherit;
  transition: all 0.4s ease-in-out;
  width: 34px;
  height: 34px;
  background-color: #151414;
  color: #fff;
}
.team-current-theme2 .content .social-links li a:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}

.team-item:first-child .team-current-theme2 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tm-sc-team.tm-team-grid .team-item {
  margin-bottom: 0;
}