.team-current-theme1 {
  border-radius: 10px;
  margin-top: 30px;
  position: relative;
  transition: all 300ms ease;
  z-index: 1;
}
[data-tm-layout=dark] .team-current-theme1 {
  background-color: #144443;
}
.team-current-theme1 .team-image {
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 23px 23px 22px;
  overflow: hidden;
  position: relative;
  transition: all 300ms ease;
}
.team-current-theme1 .team-image .inner-image {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.team-current-theme1 .team-image img {
  width: 100%;
  transition: all 300ms ease;
}
.team-current-theme1 .team-image img {
  background-size: cover;
  transition: 0.5s;
  width: 100%;
}
.team-current-theme1 .team-image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.team-current-theme1 .team-image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.team-current-theme1 .content-box {
  text-align: center;
  padding: 12px 30px;
}
.team-current-theme1 .content-box .name {
  margin-bottom: 6px;
}
.team-current-theme1 .content-box .name a:hover {
  color: var(--theme-color1);
}
.team-current-theme1 .content-box .designation {
  color: #666666;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.team-current-theme1 .socials {
  width: 45px;
  height: 45px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  background-color: #183147;
  color: var(--theme-color-white);
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 300ms ease;
}
[data-tm-layout=dark] .team-current-theme1 .socials {
  color: #ffffff;
  background-color: var(--dark-color1);
}
.team-current-theme1 .socials .fa-plus {
  transition: all 300ms ease;
}
.team-current-theme1 .socials ul {
  width: 40px;
  position: absolute;
  bottom: 50px;
  right: 2px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  visibility: hidden;
  list-style: none;
}
.team-current-theme1 .socials ul li {
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 700ms ease;
}
.team-current-theme1 .socials ul li:nth-child(2) {
  transition: all 500ms ease;
}
.team-current-theme1 .socials ul li:nth-child(3) {
  transition: all 400ms ease;
}
.team-current-theme1 .socials ul li:nth-child(4) {
  transition: all 300ms ease;
}
.team-current-theme1 .socials ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme-color-white);
  color: var(--theme-color4);
  border-radius: 50%;
  display: inline-block;
}
[data-tm-layout=dark] .team-current-theme1 .socials ul li a {
  color: #ffffff;
}
.team-current-theme1 .socials ul li i {
  transition: all 900ms ease;
}
.team-current-theme1 .socials ul li:hover i {
  transform: rotateY(360deg);
}
.team-current-theme1:hover .team-image img {
  filter: grayscale(100%);
  transform: scale(1.1);
}
.team-current-theme1:hover .team-image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.team-current-theme1:hover .team-image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.team-current-theme1:hover .socials {
  background-color: #1793ca;
  color: var(--theme-color-white);
}
.team-current-theme1:hover .socials .fa-plus {
  display: inline-block;
  transform: rotate(135deg);
}
.team-current-theme1:hover .socials ul {
  visibility: visible;
}
.team-current-theme1:hover .socials ul li {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}