.progress-wrapper {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f1f1f1;
  }

  .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip: rect(0, 50px, 100px, 0);
    transform: rotate(0deg);
  }

  .progress-bar-male {
    background-color: #007bff;
    z-index: 3;
  }

  .progress-bar-female {
    background-color: #ffc107;
    z-index: 2;
  }

  .progress-bar-other {
    background-color: #28a745;
    z-index: 1;
  }

  .progress-bar[data-percent]:after {
    content: attr(data-percent) "%";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
  }

  .progress-bar[data-percent="0"] {
    clip: rect(0, 0, 100px, 0);
  }

  .progress-bar[data-percent="100"] {
    clip: rect(0, 100px, 100px, 50px);
  }

  .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
.img-details{
  margin-left: 30%;
  width: 4rem;
  height: 4rem;
}
  