.bonus {
    padding-bottom: 37px;
}

.bonus__inner {
    position: relative;
    padding: 40px 32px 77px;
    background: #fff;
    border-radius: 6px;
    color: #051854;
    margin-top: 38px;
}

.bonus__reg-btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.bonus__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    text-align: center;
}

.bonus__description {
    margin-top: 40px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

.bonus-steps {
    margin-top: 44px;
    display: flex;
    align-items: center;
}

.bonus-steps__step {
    border-radius: 8px;
    font-size: 24px;
    line-height: 32px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
}

.bonus-steps__step b {
    font-weight: bold;
}

.bonus-steps__delimiter {
    margin: 8px 16px;
    border-left: 22px solid #051854;
    box-sizing: content-box;
    height: 0;
    width: 0;
    border-top: 10.5px solid transparent;
    border-bottom: 10.5px solid transparent;
}

@media screen and (max-width: 767px) {
    .bonus__inner {
        padding: 32px 32px 52px;
    }

    .bonus__title {
        font-size: 16px;
        line-height: 20px;
    }

    .bonus-steps__step {
        max-width: 220px;
        font-size: 14px;
        line-height: 18px;
    }

    .bonus-steps__delimiter {
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 16px;
    }

    .bonus__description {
        margin-top: 32px;
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .bonus-steps__step {
        max-width: 340px;
    }
}

@media screen and (max-width: 1023px) {
    .bonus-steps {
        flex-direction: column;
        margin-top: 32px;
    }

    .bonus-steps__delimiter {
        transform: rotate(90deg);
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .bonus-steps__step {
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .bonus-steps__step {
        min-height: 128px;
        padding: 16px;
        background: #DAE0E5;
    }
}