section.what-unlock {
    padding: 0;
}

.what-unlock__top-bar {
    background: linear-gradient(90deg, #c29226 0%, #b27d0f 20%, #d9b14a 40%, #fade7b 60%, #dab74f 80%, #c7972b 100%);
    padding: 9px 0 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.what-unlock__heading {
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
}

.what-unlock__text {
    margin-bottom: 0;
    text-align: center;
    font-size: 20px;
    color: #000;
}

.what-unlock__wrapper {
    position: relative;
    padding: 20px 37px 30px 37px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1e1e1e 100%);
}

.what-unlock__bg {
    position: absolute;
    width: 65%;
    height: 100%;
    object-fit: cover;
    top: 0;
    right: 0;
}

.what-unlock__image {
    width: 63%;
    position: relative;
    z-index: 10;
    object-fit: contain;
}

.what-unlock__circles {
    position: absolute;
    top: 27px;
    right: 44%;
    transform: translateX(-50%);
    z-index: 11;
}

.what-unlock__circle {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    text-align: center;
    color: #1e1e1e;
    border-radius: 50px;
    background: linear-gradient(90deg, #c29226 0%, #b27d0f 20%, #d9b14a 40%, #fade7b 60%, #dab74f 80%, #c7972b 100%);
}

.what-unlock__circle:nth-child(2) {
    margin-top: -4px;
    margin-left: 72px;
}

.what-unlock__circle:nth-child(3) {
    margin-top: -4px;
}

@media screen and (max-width: 1024.98px) {
    .what-unlock__circle {
        font-weight: 700;
        font-size: 16px;
        line-height: 1.1;
        width: 75px;
        height: 75px;
    }
    .what-unlock__circles {
        right: 30%;
    }

    .what-unlock__text {
        font-size: 18px;
    }
}

@media screen and (max-width: 767.98px) {
    .what-unlock__circles {
        display: flex;
        gap: 10px;
        top: unset;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .what-unlock__wrapper {
        padding: 20px 20px 10px 20px;
    }

    .what-unlock__circle:nth-child(2) {
        margin-left: 0;
    }
}

@media screen and (max-width: 599.98px) {
    .what-unlock__image {
        width: 100%;
    }

    .what-unlock__text {
        font-size: 16px;
    }

    .what-unlock__circles {
      display: flex;
        gap: 10px;
        right: 50%;
        top: unset;
        bottom: 20px;
        transform: translateX(50%);
    }

    .what-unlock__bg {
       right: 0;
        width: 100%;
        object-position: right;
    }
}