.campaign {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .counter {
        margin: 2rem 0;
    }
}

.counter .title {
    color: #9c9c9c;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px #0003;
}

.counter .counter-boxes {
    display: flex;
    flex-direction: row;
}

.counter .counter-boxes .count-box {
    background-color: #1a1c1ccc;
    box-shadow: 0 5px 10px #0000004d;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-right: 4px;
    margin-left: 4px;
    text-shadow: 0 1px 0 #0000004d;
    border: 2px dashed #25a56a;
    animation: dash 2s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
    from {
        stroke-dashoffset: 100;
    }
}

@media screen and (max-width: 768px) {
    .counter .counter-boxes .count-box {
        width: 70px;
        height: 70px;
    }
}

.counter .counter-boxes .count-box h1 {
    color: #fff;
    padding: 8px 0 0;
    margin: 0;
    font-size: 2.5rem;
    line-height: 2rem;
}

@media screen and (max-width: 768px) {
    .counter .counter-boxes .count-box h1 {
        font-size: 2rem;
    }
}

.counter .counter-boxes .count-box span {
    color: #9c9c9c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .counter .counter-boxes .count-box span {
        font-size: 10px;
        letter-spacing: 0;
    }
}

.counter .counter-boxes .count-box:last-of-type {
    margin-right: 0;
}

.container {
    width: 100%;
}