.block-stats-cnt {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 116px ;
}
.block-stats-item {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.block-stats-item:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: -58px;
    background: #D7D7D7;
}
.block-stats-item:last-of-type:after {
    display: none;
}


/*Circle Donut*/
.circle-donut {
    position: relative;
    width: 260px;
    height: 260px;
}
.circle-donut svg {
    position: absolute;
    top: 0; left: 0;
}
.stats-load-circle circle {
    fill: transparent;
    stroke-width: 65px;
    stroke-dasharray: 584;
    stroke-dashoffset: 584;
    transition: all 2s ease-out;
}

/*Full Circle*/
.circle-full {
    position: relative;
    width: 262px;
    height: 262px;
}
.circle-full svg {
    position: absolute;
    top: 1px; left: 1px;
}
.circle-full circle {
    stroke-dasharray: 584;
    stroke-dashoffset: 584;
    transition: all 2s ease-out;
}
.circle-full-width {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url("/wp-content/themes/cjs/images/icons/people-elipce.png");
    background-size: cover;
    background-position: center top;
    z-index: 2;
    transition: all 2s ease-out;
}
.load-circle {
    height: 0;
}

.circle-full-icon {
    position: absolute;
    z-index: 3;
    bottom: 0px;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .6s .5s ease-out;
}
.load-circle ~ .circle-full-icon {
    bottom: 10px;
    opacity: 1;
}

/*Stats figure*/
.stats-figure {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 72px;
    line-height: 72px;
    font-family: Open-Sans-700;

    min-width: 100%;
    text-align: center;
    display: block;
}

.stats-info {
    margin: 40px auto 0 auto;
    max-width: 360px;
}
.stats-info a {
    display: inline;
    background-image: linear-gradient(90deg, var(--orange) 50%, var(--black) 50%);
    background-size: 200% 1px;
    background-position: 100% 92%;
    background-repeat: no-repeat;
    transition: all .24s ease;
}
.stats-info a:is(:hover,:focus) {
    color: var(--black);
    background-position: 0% 95%;
    background-size: 200% 2px;
}

.stats-info strong {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 16px;
}

/*Black bg*/
.block-bg-black .circle-donut svg:first-of-type circle {
    stroke: #5B6770;
}
.block-bg-black .circle-full-width {
    top: 1px;
    left: 1px;
    background: url("/wp-content/themes/cjs/images/icons/people-elipce--black.png");
    background-repeat: no-repeat !important;
}
.block-bg-black .circle-full .stats-figure-count {
    color: var(--black);
}

@media (max-width: 1440px) {
    .block-stats-cnt {
        gap: 80px;
    }
}
@media (max-width: 992px) {
    .block-stats-cnt {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .stats-info {
        max-width: 560px;
    }
    .block-stats-item:after {
        display: none;
    }
}