
.pna-label-figure {
  position: absolute;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: orbit 25s linear infinite reverse;


}

.pna-label-figure:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pna-label-figure .span-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}

.pna-image {
  margin-bottom: 60px;
  position: relative;
}

.pna-image .img-wrapper {
  position: relative;
  margin: auto;
  width: 345px;
  height: 345px;
  border-radius: 50%;
}

.pna-circle-border {
  position: absolute;
  transform: rotate(145deg);
  z-index: 0;
  animation: orbit1 25s linear infinite;
}

.pna-image .img-wrapper img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 767px) {
  .pna-image .img-wrapper {
    width: 443px;
    height: 443px;
  }
}

@media screen and (min-width: 1200px) {
  @keyframes orbit1 {
    0% {
      transform: rotate(145deg);
    }

    100% {
      transform: rotate(505deg);
    }
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .pna-label-figure {
    top: unset;
    left: 60px;
    bottom: -20px;
  }

  .pna-orbit-container {
    border-radius: 50%;
    position: absolute;
    inset: 0;
    animation: orbit 25s linear infinite;
  }

  .pna-image {
    margin-bottom: 0px;
  }
}