.milestone_block {
    margin: 150px auto;
}
.milestone_block.bg_color {
    background: var(--mb-bg-color);
    position: relative;
}
.milestone_block.bg_color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--mb-bg-overlay-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.milestone_block .container {
    z-index: 99;
}
.milestone_block .content_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.milestone_item {
    flex: 0 0 calc(25% - 30px);
}
.milestone_number {
    font-family: 'Moderat';
    font-size: 80px;
    line-height: 60px;
    color: var(--green);
    font-weight: 400;
}
.milestone_label {
    font-family: 'Moderat';
    font-size: 22px;
    line-height: 40px;
    color: var(--text-color);
    font-weight: 400;
    margin-top: 100px;
}

@media (max-width: 991px) {
    .milestone_item {
        flex: 0 0 calc(50% - 20px);
    }
}
@media (max-width: 545px) {
    .milestone_item {
        flex: 0 0 100%;
    }
	.milestone_block .content_wrap {
        gap: 60px;
    }
}