.about-statistic {
    margin-bottom: 30px;
}

.about-statistic .about-title {
    text-align: center;
}

.about-statistic .statistic-title {
    color: #9e005c;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 42px;
}

.about-statistic-item {
    display: block;
    margin-bottom: 15px;
}

.about-statistic-item:not(:first-of-type) {
    margin-left: 30px;
}

.about-statistic-item:not(:last-of-type) {
    margin-right: 30px;
}

.about-statistic .image {
    width: 80px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.about-statistic .image img {
}

.about-statistic .desc {
    margin-left: 0;
    display: block;
    text-align: left;
    max-width: 150px;
    font-size: 16px;
}

.about-statistic .desc p {
}

.about-statistic-wrap {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 650px) {
    .about-statistic-wrap {
        display: block;
    }

    .about-statistic-item,
    .about-statistic-item:not(:first-of-type),
    .about-statistic-item:not(:last-of-type) {
        margin: 0;
        width: 25%;
        float: left;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .about-statistic .statistic-title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .about-statistic .desc {
        max-width: 100%;
        font-size: 10px;
    }
}

@media screen and (max-width: 540px) {

    .about-statistic-item {
        display: block;
        text-align: center;
    }

    .about-statistic .desc {
        margin: 0;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .about-statistic .image {
        margin: 0 auto;
    }
}


/* NEW TEMPLATE*/
.statistics {
    margin-bottom: 50px;
}

.statistics .statistics__list {
    display: flex;
    flex-wrap: wrap;
}

.statistics .statistics__item {
    max-width: 21%;
    flex: 1 0 21%;
    margin: 25px 6% 25px 6%;
}

.statistics .statistics__title {
    font-size: 70px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.statistics .statistics__desc {
    color: #fff;
    text-align: center;
    background-color: #a24097;
    font-size: 25px;
    padding: 10px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .statistics .statistics__desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 998px) {
    .statistics .statistics__title {
        font-size: 50px;
    }
}

@media screen and (max-width: 768px) {
    .statistics .statistics__list {
        justify-content: center;
    }

    .statistics .statistics__item {
        max-width: 25%;
        flex: 1 0 25%;
        margin: 25px 6% 25px 6%;
    }
}

@media screen and (max-width: 540px) {
    .statistics .statistics__item {
        max-width: 40%;
        flex: 1 0 40%;
        margin: 25px 4% 25px 4%;
    }
}