.section-to-do {
    position: relative;
}
.backdrop-light {
    position: absolute;
    z-index: -1;
    max-width: 70%;
}
.section-to-do .backdrop-light:first-of-type {
    left: 0;
    top: 0;
    transform: translateY(-40%) translateX(-10%);
}
.section-to-do .backdrop-light:last-of-type {
    right: 0;
    bottom: 0;
    transform: translateY(20%) translateX(10%);
}
.container-to-do {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 -12px 112px;
}
.block-to-do {
    border-radius: 40px;
    width: calc(100% - 24px);
    margin: 0 12px 24px;
    padding: 36px 36px 44px;
}
.block-to-do h2 {
    margin-bottom: 64px;
}
.block-numbers {
    padding: 30px;
    margin: 0 12px;
    width: calc(100%/3 - 24px);
}
.block-numbers h2 {
    color: var(--yellow);
    margin-bottom: 8px;
}

.to-do-list {
    display: flex;
    justify-content: space-around;
    counter-reset: section;
}
.to-do-item {
    max-width: 240px;
    width: 100%;
}
.to-do-item::before {
    display: block;
    margin: 0 auto 24px;
    width: 40px;
    height: 40px;
    color: var(--black);
    background-color: var(--yellow);
    border-radius: 50%;
    font-family: 'SpaceMono';
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    counter-increment: section;
    content: counter(section);
}

@media screen and (max-width: 1024px) {
    .block-to-do h2 {
        margin-bottom: 32px;
    }
    .block-to-do {
        padding: 24px 24px 36px;
        border-radius: 30px;
    }
    .block-numbers {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .backdrop-light {
        max-width: 80%;
    }
    .block-to-do {
        margin-bottom: 20px;
        border-radius: 20px;
    }
    .container-to-do {
        margin: 0 -10px 40px;
        justify-content: center;
    }
    .block-numbers {
        min-width: 200px;
        width: 100%;
        max-width: 250px;
        margin: 0 10px 20px;
        border-radius: 10px;
    }
    .to-do-list {
        flex-wrap: wrap;
    }
    .to-do-item {
        margin-bottom: 24px
    }
    .to-do-item:last-child {
        margin-bottom: 0;
    }
    .to-do-item::before {
        width: 32px;
        height: 32px;
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 600px) {
    .block-numbers {
        max-width: 100% ;
    }

    .backdrop-light {
        max-width: 90%;
    }
}
