html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px 100px;
    overflow: hidden;
    background: #cfd1e1;
}

.box {
    position: relative;
    width: 240px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .box .content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .box .content .percent {
            position: relative;
            width: 150px;
            height: 150px;
        }

            .box .content .percent::before {
                content: attr(data-text);
                position: absolute;
                inset: 20px;
                background: #555;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #fff;
                font-size: 1.75rem;
                letter-spacing: 0.1rem;
                text-transform: uppercase;
            }

            .box .content .percent svg {
                position: relative;
                width: 150px;
                height: 150px;
                transform: rotate(270deg);
            }

                .box .content .percent svg circle {
                    width: 100%;
                    height: 100%;
                    fill: transparent;
                    stroke-width: 3;
                    stroke: rgba(0,0,0,0.05);
                    transform: translate(5px, 5px);
                }

                    .box .content .percent svg circle:nth-child(2) {
                        stroke: #555;
                        stroke-dasharray: 440;
                        opacity: 0;
                        animation: fadeIn 1s linear forwards;
                        animation-delay: 2.5s;
                    }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.box .content .percent .dot {
    position: absolute;
    inset: 5px;
    z-index: 10;
    animation: animateDot 2s linear forwards;
}

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

    100% {
        transform: rotate(calc(3.6deg * var(--num)));
    }
}

.box .content .percent .dot::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #555;
    border-radius: 50%;
}

.box .content .number {
    position: relative;
    inset: 0;
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 2.5s;
}

    .box .content .number h2 {
        font-size: 2.5rem;
        color: #555;
    }

        .box .content .number h2 span {
            font-weight: 300;
            font-size: 1.5rem;
        }