.team-current-theme1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 180px;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--theme-color-white);
}
@media (max-width: 575.98px) {
  .team-current-theme1 {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.team-current-theme1::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  height: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 29.66%, #b4e019 75.68%);
  top: auto;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.team-current-theme1.style-2 {
  margin-top: 135px;
}
@media (max-width: 575.98px) {
  .team-current-theme1.style-2 {
    margin-top: 30px;
  }
}
.team-current-theme1 .image {
  width: 100%;
  height: 600px;
}
@media (max-width: 1199.98px) {
  .team-current-theme1 .image {
    height: 100%;
  }
}
.team-current-theme1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 180px;
}
.team-current-theme1 .content {
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.team-current-theme1 .content .social-links {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.team-current-theme1 .content .social-links li {
  list-style: none;
}
.team-current-theme1 .content .social-links a {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 15px;
  margin-right: 5px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--theme-color2);
  background-color: var(--theme-color-white);
}
.team-current-theme1 .content .social-links a:hover {
  color: #fff;
  background-color: var(--theme-color1);
}
.team-current-theme1 .content .team-title {
  color: var(--headings-color);
  margin-top: 15px;
  margin-bottom: 5px;
}
.team-current-theme1 .content .team-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--headings-color);
}
.team-current-theme1:hover {
  border: 1px solid var(--theme-color1);
}
.team-current-theme1:hover::before {
  height: 370px;
  opacity: 1;
}
.team-current-theme1:hover .content {
  transform: translateX(-50%) translateY(-50px);
  opacity: 1;
  visibility: visible;
}
.team-current-theme1:hover .content .social-links {
  opacity: 1;
}

.team-margin-top .team-item:nth-child(odd) .team-current-theme1 {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .team-margin-top .team-item:nth-child(odd) .team-current-theme1 {
    margin-top: 0px;
  }
}