.team-current-theme1 {
  position: relative;
  margin-bottom: 30px;
}
.team-current-theme1 .inner-box {
  position: relative;
  border: 4px solid var(--theme-color3);
}
.team-current-theme1 .inner-box:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 55px;
  height: 35px;
  background-color: var(--theme-color3);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.team-current-theme1 .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.team-current-theme1 .inner-box:hover .social-links {
  right: -23px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.team-current-theme1 .inner-box:hover .share-icon {
  z-index: -1;
}
.team-current-theme1 .image-box {
  position: relative;
}
.team-current-theme1 .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
}
.team-current-theme1 .image-box .image img {
  width: 100%;
  transition: all 400ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme1 .image-box .image img {
    transition: none;
  }
}
.team-current-theme1 .info-box {
  position: relative;
  padding: 20px 30px;
  margin-top: 10px;
}
.team-current-theme1 .info-box .team-subtitle {
  position: relative;
  display: block;
  font-size: 14px;
  color: #888888;
  letter-spacing: 1px;
  line-height: 1em;
  margin-top: 0px;
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 400ms ease;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme1 .info-box .team-subtitle {
    transition: none;
  }
}
.team-current-theme1 .info-box .team-title {
  z-index: 2;
  margin-bottom: 0;
  text-transform: capitalize;
}
.team-current-theme1 .info-box .team-title a:hover {
  color: var(--headings-color);
}
.team-current-theme1 .share-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  font-size: 20px;
  line-height: 50px;
  color: #222;
  background-color: var(--theme-color3);
  text-align: center;
  transition: all 300ms ease;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme1 .share-icon {
    transition: none;
  }
}
.team-current-theme1 .social-links {
  position: absolute;
  right: 0;
  bottom: -1px;
  opacity: 0;
  visibility: hidden;
  flex-direction: column;
  background: var(--theme-color1);
  transform-origin: bottom;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 400ms ease;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme1 .social-links {
    transition: none;
  }
}
.team-current-theme1 .social-links li {
  list-style: none;
  list-style: none;
  margin: 0;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-current-theme1 .social-links li:first-child i::after {
  display: none;
}
.team-current-theme1 .social-links a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #fff;
  text-align: center;
  -webkit-transform: rotate(88deg);
  -moz-transform: rotate(88deg);
  -ms-transform: rotate(88deg);
  transform: rotate(88deg);
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme1 .social-links a {
    transition: none;
  }
}
.team-current-theme1 .social-links a:hover {
  color: var(--theme-color2);
}
.team-current-theme1 .social-links a i {
  position: relative;
}
.team-current-theme1 .social-links a i:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -17px;
  width: 1px;
  height: 19px;
  background-color: rgba(255, 255, 255, 0.4588235294);
}

.team-current-theme2 {
  margin-bottom: 30px;
}
.team-current-theme2 .inner-box {
  position: relative;
  border: 1px solid #ababab;
  overflow: hidden;
  background-color: #fff;
  transition: all 300ms ease;
  max-width: 450px;
  margin: 0 auto;
}
.team-current-theme2 .inner-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 320px;
  background-color: var(--theme-color3);
  clip-path: polygon(0 50%, 100% 5%, 100% 100%, 0% 100%);
  transition: all 400ms ease;
}
.team-current-theme2 .inner-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--theme-color1);
  clip-path: polygon(0 50%, 100% 5%, 100% 100%, 0% 100%);
  transition: all 400ms ease;
}
.team-current-theme2 .inner-box:hover {
  transform: translateY(-10px);
  border: 1px solid var(--theme-color1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.team-current-theme2 .inner-box:hover::after {
  height: 320px;
}
.team-current-theme2 .inner-box:hover .image {
  transform: scale(1.1);
}
.team-current-theme2 .inner-box .content-box {
  position: relative;
  padding: 27px 0 30px 40px;
}
@media (max-width: 575.98px) {
  .team-current-theme2 .inner-box .content-box {
    padding: 20px 0 20px 20px;
  }
}
.team-current-theme2 .inner-box .content-box .team-subtitle {
  display: block;
  color: #888888;
  font-size: 14px;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.team-current-theme2 .inner-box .content-box .team-title {
  margin-top: 0;
  margin-bottom: 20px;
}
.team-current-theme2 .inner-box .content-box .team-title a:hover {
  color: var(--theme-color1);
}
.team-current-theme2 .inner-box .content-box .contact {
  display: inline-flex;
  align-items: center;
  color: #222;
}
.team-current-theme2 .inner-box .content-box .contact:hover {
  color: var(--theme-color1);
}
.team-current-theme2 .inner-box .content-box .contact i {
  width: 42px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  display: inline-block;
  background-color: var(--theme-color3);
  color: #222;
  margin-right: 8px;
}
.team-current-theme2 .inner-box .image {
  position: relative;
  margin-bottom: 0;
  margin-left: -10px;
  text-align: center;
  z-index: 2;
  transition: all 300ms ease;
}

.team-current-theme3 {
  position: relative;
  margin-bottom: 40px !important;
}
.team-current-theme3 .inner-box {
  position: relative;
}
.team-current-theme3 .inner-box:hover .image-box:after {
  clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.team-current-theme3 .inner-box:hover .thumb img {
  transform: scale(1.1);
  transform-origin: top center;
}
.team-current-theme3 .inner-box:hover .social-links {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.team-current-theme3 .inner-box:hover .share-icon {
  opacity: 0;
}
.team-current-theme3 .image-box {
  position: relative;
  border-radius: 50%;
  padding: 25px 25px 15px 25px;
  margin: 0 auto;
}
.team-current-theme3 .image-box:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
  background-color: #ecf0f4;
  border-radius: 300px 300px 0 0;
  transition: all 700ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme3 .image-box:before {
    transition: none;
  }
}
.team-current-theme3 .image-box:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 52%;
  clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  background: linear-gradient(to left, var(--theme-color2), var(--theme-color1), var(--theme-color1), var(--theme-color2));
  content: "";
  border-radius: 300px 300px 0 0;
  transition: all 700ms ease;
}
.team-current-theme3 .image-box .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
}
.team-current-theme3 .image-box .thumb img {
  width: 100%;
  transition: all 400ms ease;
}
.team-current-theme3 .share-icon {
  position: absolute;
  left: 15px;
  top: 160px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--theme-color1);
  background-color: #ffffff;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 300ms ease;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme3 .share-icon {
    transition: none;
  }
}
.team-current-theme3 .social-links {
  position: absolute;
  left: 15px;
  top: 166px;
  display: flex;
  align-items: center;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #ffffff;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms ease;
  border-radius: 20px;
  overflow: hidden;
  padding: 0px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme3 .social-links {
    transition: none;
  }
}
.team-current-theme3 .social-links li {
  margin-bottom: 0 !important;
  list-style: none;
}
.team-current-theme3 .social-links a {
  position: relative;
  height: 45px;
  width: 35px;
  display: block;
  font-size: 15px;
  line-height: 45px;
  text-align: center;
  color: var(--theme-color1);
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme3 .social-links a {
    transition: none;
  }
}
.team-current-theme3 .social-links a:hover {
  color: var(--theme-color2);
  background-color: transparent;
}
.team-current-theme3 .info-box {
  position: relative;
  text-align: center;
}
.team-current-theme3 .info-box .team-title {
  z-index: 2;
  margin-bottom: 10px;
}
.team-current-theme3 .info-box .team-subtitle {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #73787d;
  z-index: 2;
  line-height: 1em;
  transition: all 400ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme3 .info-box .team-subtitle {
    transition: none;
  }
}

.team-current-theme4 .inner-box {
  position: relative;
  margin: 0 auto;
  margin-right: 80px;
}
@media (max-width: 991.98px) {
  .team-current-theme4 .inner-box {
    margin-right: 0;
  }
}
.team-current-theme4 .inner-box:hover .image-box .image img {
  transform: scale(1.1);
}
.team-current-theme4 .inner-box .image-box {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 22px;
}
.team-current-theme4 .inner-box .image-box .image {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.team-current-theme4 .inner-box .image-box .image img {
  height: 140px;
  width: 140px;
  transition: all 300ms ease;
}
.team-current-theme4 .content-box {
  position: relative;
  text-align: center;
}
.team-current-theme4 .content-box .team-subtitle {
  position: relative;
  color: var(--theme-color1);
  text-transform: uppercase;
}
.team-current-theme4 .content-box .team-title {
  position: relative;
  font-size: 48px;
  margin-bottom: 0;
  margin-top: 0;
  font-family: var(--font-current-theme3);
}
.team-current-theme4 .content-box .team-title a:hover {
  color: var(--theme-color2);
}
.team-current-theme4 .content-box .text {
  position: relative;
  line-height: 2em;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .team-current-theme4 .content-box .text br {
    display: none;
  }
}
.team-current-theme4 .content-box .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.team-current-theme4 .content-box .social-links li {
  list-style: none;
  margin: 0 12.5px;
}
.team-current-theme4 .content-box .social-links a {
  font-size: 18px;
  color: #707070;
}
.team-current-theme4 .content-box .social-links a:hover {
  color: var(--theme-color1);
}
.team-current-theme4.style-two .inner-box {
  margin-right: 0;
  margin-left: 90px;
}
@media (max-width: 991.98px) {
  .team-current-theme4.style-two .inner-box {
    margin-left: 0;
  }
}

.team-current-theme5 {
  margin-bottom: 40px;
}
.team-current-theme5 .inner-box {
  position: relative;
  text-align: center;
}
.team-current-theme5 .inner-box:hover .image-box .icon-leaves-18,
.team-current-theme5 .inner-box:hover .image-box .icon-leaves-17 {
  animation: zoom-two 3s infinite linear;
}
.team-current-theme5 .inner-box .image-box {
  position: relative;
  max-width: 330px;
  margin: 0 auto 25px;
}
.team-current-theme5 .inner-box .image-box .image img {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-current-theme5 .inner-box .image-box .image img {
    transition: none;
  }
}
.team-current-theme5 .inner-box .image-box .icon-leaves-17 {
  position: absolute;
  top: 30px;
  left: 0;
  pointer-events: none;
  width: 345px;
  height: 290px;
  background-image: url(../../../images/current-theme/icon-leaves-20.png);
  background-repeat: no-repeat;
}
.team-current-theme5 .inner-box .image-box .icon-leaves-18 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  width: 356px;
  height: 303px;
  background-image: url(../../../images/current-theme/icon-leaves-19.png);
  background-repeat: no-repeat;
}
.team-current-theme5 .inner-box .content-box {
  position: relative;
  text-align: center;
}
.team-current-theme5 .inner-box .content-box .team-title {
  color: var(--theme-color2);
  font-weight: 400;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 32px;
}
.team-current-theme5 .inner-box .content-box .team-subtitle {
  color: #aaaaaa;
  font-weight: 400;
}

.zoom-two {
  animation: zoom-two 5s infinite linear;
}

@keyframes zoom-two {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.team-current-theme6 {
  margin-bottom: 70px;
}
.team-current-theme6 .inner-box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .team-current-theme6 .inner-box {
    padding-top: 20px;
  }
}
.team-current-theme6 .inner-box:hover .image-box .image img {
  opacity: 0.7;
}
.team-current-theme6 .image-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.team-current-theme6 .image-box .image {
  position: relative;
}
.team-current-theme6 .image-box .image:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  margin-top: -132px;
  margin-left: -132px;
  background-image: url(../../../images/current-theme/couple-frame-2.png);
  background-repeat: no-repeat;
  animation: zoom-two 3s infinite linear;
}
.team-current-theme6 .image-box .image img {
  position: relative;
  border-radius: 300px;
  transition: all 300ms ease;
}

.zoom-two {
  animation: zoom-two 5s infinite linear;
}

@keyframes zoom-two {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}