.section-nft {
    color: #FFF;
    margin-bottom: 264px;
    position: relative;
}
.section-nft .backdrop-light {
    left: 0;
    transform: translateY(-30%);
}
.container-nft {
    display: flex;
    align-items: flex-start;
    padding: 30px 35px;
}

.container-nft img {
    width: 470px;
    max-width: 100%;
    margin-right: 34px;
}

.rewards-list {
    margin: 40px 0 50px;
    counter-reset: rewards;
}

.rewards-item {
    position: relative;
    margin-bottom: 24px;
    padding-left: 64px;
}

.rewards-item::before {
    counter-increment: rewards;
    content: counter(rewards);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    color: #FFF;
    background-color: var(--pink);
    border-radius: 50%;
    font-family: 'SpaceMono';
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
}

.rewards-item:last-child {
    margin-bottom: 0;
}

.nft-info {
    font-size: 24px;
    line-height: 30px;
}

@media screen and (max-width: 1024px) {
    .section-nft {
        margin-bottom: 100px;
    }
    .container-nft img {
        width: 100%;
        max-width: 50%;
        margin-right: 0
    }
    .container-nft {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .container-nft-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .container-nft-info h2 strong{
        display: block;
    }
    .rewards-list {
        max-width: 350px;
        text-align: left;
    }
}
@media screen and (max-width: 768px) {
    .container-nft {
        padding: 20px;
    }
    .rewards-item {
        padding-left: 56px;
    }
    .rewards-item::before {
        width: 32px;
        height: 32px;
        font-size: 20px;
        line-height: 32px;
    }

    .section-nft .backdrop-light {
        left: 0;
        max-width: 100%;
        transform: translateY(-20%);
    }
}
