.f-evn {
    width: 100%;
    position: relative;
}

.f-evn::before {
    content: attr(data-title);
    width: 100%;
    text-align: center;
    font-size: 2em;
    color: var(--main);
}

.img-sml {
    width: 200px;
    text-align: center;
}

.img-sml img {
    width: 100%;
}

.progress-box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: conic-gradient(var(--c) var(--v), var(--sub) var(--v2));
    position: relative;
    cursor: pointer;
    color: var(--sub);
}

.progress-box::before {
    content: attr(data-val);
    width: 100%;
    text-align: center;
    position: absolute;
    font-size: 30px;
    top: 50%;
    z-index: 9;
}

.progress-box:hover {
    scale: 0.9;
    transition: cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.3s;
}

.progress-box::after {
    content: attr(data-name);
    width: 100%;
    text-align: center;
    position: absolute;
    font-size: 28px;
    top: 30%;
}

.progress-box .circle {
    width: 180px;
    height: 180px;
    background-color: var(--text);
    position: absolute;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

ul li {
    font-weight: 600;
}

.box1 {
    width: 400px;
    height: 400px;
}

.box {
    transform-style: preserve-3d;
    animation: animate 16s linear infinite;
    width: 360px;
    height: 0;
    margin-right: -100px;
}

@keyframes animate {
    0% {
        transform: rotateX(360deg) rotate(25deg);
    }
    100% {
        transform: rotateX(0deg) rotate(25deg);
    }
}

.box span {
    position: absolute;
    color: #fff;
    font-size: 3.5em;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 1000;
    padding: 0 10px;
    line-height: 0.76em;
    transform-style: preserve-3d;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transform: translate(-25%, -50%) rotateX(calc(var(--i) * 25.7deg)) translateY(120px);
}