.box-card {
    background: rgba(255, 255, 255, 0.062);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
    color: white;
    padding: 25px 10px 25px 10px;
    width: 300px;
    margin: 20px 0;
    text-align: center;
}

.dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(150, 22, 22, 0.801);
    border-radius: 50%;
    animation: fade 6s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

.dot:nth-child(4) {
    animation-delay: 1.5s;
}

.dot:nth-child(5) {
    animation-delay: 2s;
}

.dot:nth-child(6) {
    animation-delay: 2.5s;
}

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

    16.67%,
    83.33% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}