.statistics-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.statistics-holder .statistic {
    width: calc(1/4*100% - (1 - 1/4)*30px);
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 6px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.statistics-holder .statistic .image {
    width: 40px;
}

.statistics-holder .statistic .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 !important;
}

.statistics-holder .number {
    font-weight: 700;
    font-size: 25px;
    min-height: 38px;
}

@media screen and (max-width:991px)  {
    .statistics-holder .statistic {
        width: calc(1/2*100% - (1 - 1/2)*30px);
    }   
}

@media screen and (max-width:767px)  {
    .statistics-holder .statistic {
        width: 100%;
    }   
}