.kd-statistic {
    margin-top: calc(-136px / 2);
}
.kd-statistic__list {
    display: flex;
    align-items: center;
    gap: 10px;
}
.kd-statistic__item {
    flex: 1;
}
.kd-statistic__item-wrap {
    background-color: #fff;
    border: 1px solid #D6DEEE;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 136px;
    justify-content: center;
}
.kd-statistic__item-wrap h2 {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.kd-statistic__item-icon {
    margin-right: 18px;
}
.kd-statistic__item-wrap p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
    text-align: center;
}
@media (max-width: 1024px) {
    .kd-statistic__list {
        flex-wrap: wrap;
    }
    .kd-statistic__item {
        flex: 0 1 calc(50% - 5px);
    }
}
@media (max-width: 767px) {
    .kd-statistic__item {
        flex: 100%;
    }
}