.team-current-theme3 {
  margin-bottom: 70px;
}
.team-current-theme3 .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-theme3 .inner-box {
    padding-top: 20px;
  }
}
.team-current-theme3 .inner-box:hover .image-box .image img {
  opacity: 0.7;
}
.team-current-theme3 .image-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.team-current-theme3 .image-box .image {
  position: relative;
}
.team-current-theme3 .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-theme3 .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);
  }
}