.number-counter {
    position: relative;
    background: linear-gradient(45deg, rgba(19, 19, 59, 1) 0%, rgba(26, 71, 130, 1) 86%);
    padding: 60px 0 40px;
    z-index: 1;
}

.number-counter-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.number-counter-box {
    text-align: center;
    margin-bottom: 20px;
}

.number-counter-box h2 {
    color: #00AEEF;
    font-size: 56px;
    line-height: 1.142em;
    padding: 0 0 5px;
}

.number-counter-box p {
    font-size: 16px;
    line-height: 1.75em;
    color: #FFFFFF;
    padding: 0;
}

@media(min-width: 768px) {

    .number-counter {
        padding: 60px 0 30px;
    }

    .number-counter .row {
        justify-content: center;
    }

    .number-counter-box {
        margin-bottom: 30px;
    }
}

@media(min-width: 1200px) {
    .number-counter-box h2 {
        font-size: 70px;
        line-height: 1.08em;
    }

    .number-counter-box p {
        font-size: 18px;
        line-height: 1.66em;
    }

    .number-counter-box {
        margin-bottom: 0px;
    }

    .number-counter {
        padding: 84px 0;
    }

}

@keyframes moveUpStats {
    0% {
        background-position-y: 0;
    }
    100% {
        background-position-y: -1682px; /* The image width */
    }
}

.number-counter-image-overlay {
    background-repeat: repeat-y;
    animation: moveUpStats 30s linear infinite;
    opacity: 0.2;
}
