.save-level {
    background-color: var(--bg_3);
    padding: 177px 0;
}

.save-level__heading {
    text-align: center;
}

.save-level__title {
    margin-top: 13px;
}

.save-level__wrapper {
    margin-top: 80px;
    display: flex;
}

.save-level__item {
    padding-left: 35px;
    position: relative;
    z-index: 1;
    width: 25%;
    counter-increment: counter;

}

.save-level__item h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 20px;
    color: var(--accent);
    min-height: 40px;
    margin-bottom: 15px;
}

.save-level__item p {
    font-size: 16px;
}

.save-level__item::before {
    content: counter(counter);
    font-size: 140px;
    line-height: 115px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 1px var(--text_2);
    color: #fff;
    opacity: 0.2;
}


/* Adaptive */

@media (max-width: 992px) {

    .save-level {
        padding: 90px 0;
    }

    .save-level__wrapper {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 40px 0;
    }

    .save-level__item {
        width: 40%;
    }

}


@media (max-width: 576px) {

    .save-level {
        padding: 52px 0;
    }

    .save-level__heading {
        text-align: left;
    }

    .save-level__item {
        width: 100%;
    }

    .save-level__wrapper {
        gap: 27px;
    }

}

@media (max-width: 480px) {

    .save-level__wrapper {
        margin-top: 62px;
    }

    .save-level__item h4 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
        min-height: initial;
    }

    .save-level__item p {
        line-height: 26px;
    }

    .save-level__item::before {
        font-size: 100px;
        top: -43px;
        opacity: 0.35;
    }

}

/* \Adaptive */