.statistics {
    position: relative;
}

.statistics__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.statistics__wrap {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255, 0.75);
}

.statistics.overlay-red .statistics__wrap {
    background: rgba(124,35,50, 0.75);
}

.statistics.bg-white .statistics__wrap {
    background: rgba(255,255,255, 0.75);
}

.statistics__content {
    margin-bottom: 10px;
}

.statistics__item + .statistics__item {
    margin-top: 40px;
}

.statistics__item {
    display: flex;
    flex-direction: column;
}

.statistics__info {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.statistics__info h4 {
    margin: 0;
    padding: 0;
    font-size: 50px;
    color: var(--color-black-100);
    line-height: 1em;
    font-family: var(--font-ephesis); 
    font-weight: 400;
    margin-bottom: 5px;
}

.statistics__info h5 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--color-black-100);
    line-height: 1.25em;
    font-weight: 700;
    text-transform: uppercase;
}

.statistics__info h5 br {
    display: none;
}

.statistics.overlay-red .statistics__content :where(h2,h3,h4,h5,h6,p,li),
.statistics.overlay-red .statistics__info :where(h2,h3,h4,h5,h6,p,li) {
    color: var(--color-white);
}

.statistics.overlay-transparent .statistics__wrap {
    background: transparent;
}

@media(min-width: 768px) {
    .statistics__info h4 {
        font-size: 65px;
        margin-bottom: 10px;
    }
    
    .statistics__info h5 {
        font-size: 17px;
    }

    .statistics__item + .statistics__item {
        margin-top: 0;
    }

    .statistics__item:nth-child(n+3) {
        margin-top: 40px;
    }
}

@media(min-width: 1200px) {
    .statistics__item:nth-child(n+3) {
        margin-top: 0;
    }

    .statistics__item:nth-child(n+5) {
        margin-top: 20px;
    }

    .statistics__info h4 {
        font-size: 65px;
    }
    
    .statistics__info h5 {
        font-size: 18px;
    }

    .statistics__info h5 br {
        display: block;
    }

}