.container{
      position: relative;
    text-align: center;
}
.container .card{
        position: relative;
    /* background: #2a2a2a; */
    display: inline-block;
    justify-content: cen
}

.container .card .percent{
    position:relative;
    width: 150px;
    height:150px;
}
.container .card .percent svg{
    position:relative;
    width: 150px;
    height:150px;
    transform: rotate(270deg);
}
.container .card .percent svg circle{
width: 100%;
height: 100%;
filL:transparent;
stroke-width:2;
stroke:#191919;
transform: translate(5px,5px);

}

.container .card .percent svg circle:nth-child(2){
    -webkit-stroke: var(--clr);
    stroke: var(--clr);
    stroke-dasharray:440;
    stroke-dashoffset:calc(440px - (440px * var(--num)) / 100);
    opacity:0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 2.5s;
}
@keyframes fadeIn{
    0%{
       opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

.dot{
    position: absolute;
  /* background:red;*/
    inset:5px;
    z-index: 10;
    transform: rotate(calc(3.6deg * var(--num)));
    /* 360deg / 100 = 3.6 */
    animation: animateDot 2s linear forwards;

}

@keyframes animateDot{
    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(calc(3.6deg * var(--num)));
    }
}


.dot::before{
    content: '';
    position: absolute;
    top:-5px;
    left:50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr);

    box-shadow: 0 0 10px var(--clr),
    0 0 30px var(--clr);

}

.number{
    position:absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
     opacity:0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 2.5s;
}
.number h2{
display: flex;
justify-content:center;
align-items: center;
color: white;
font-weight: 700;
font-size: 2.5em;
}

.number h2 span{
    font-weight: 300;
    color: white;
    font-size: 0.5em;
}
.number p{
    font-weight: 300;
    font-size: 0.75em;
    letter-spacing: 2px;
  /*  margin-top:5px;*/
    text-transform:uppercase;
    color: rgba(255,255,255, 0.75);
        position: relative;
    top: -31px;
}