.bonuses-wrapper {
    background: linear-gradient(90deg, #E93293 0%, #6B73B7 50%, #22B0E5 100%);
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    color: #fff;
    /*font-family: "Mulish", sans-serif;*/
    font-size: 18px;
    text-align: center;
}

.bonus__title {
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: .7em;
}

.bonus__title span {
    background: linear-gradient(90deg, #FF9900 0%, #FFD500 29.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.bonus__title u {
    text-decoration: none;
    border-bottom: 4px solid #FFD500;
}

.bonus__row {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
}

.bonus img {
    display: block;
    width: 100%;
}

.bonus .bonus__img {
    border-radius: 15px;
    border: 1px solid #FF9900;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    max-width: 270px;
    overflow: hidden;
}

.bonus .bonus__badge {
    font-size: 1.2em;
    font-weight: 800;
    color: #375C6D;
    background: linear-gradient(90deg, #FF9900 0%, #FFD500 100%);
    border-radius: 25px;
    display: inline-block;
    margin: 15px auto 10px;
    padding: 4px 2em;
}

.bonus .bonus__heading {
    font-weight: 800;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.bonus .bonus__value {
    font-weight: bold;
    color: #FFD500;
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .bonuses-wrapper {
        padding-top: 2em;
        padding-bottom: 1.5em;
        font-size: 25px;
    }

    .bonus__title {
        font-size: 2em;
        margin-bottom: 1em;
    }

    .bonus__row {
        flex-direction: row;
        align-items: normal;
        justify-content: space-around;
    }

    .bonus {
        flex: 0 0 45%;
    }

    .bonus .bonus__img {
        border-radius: 25px;
        border-width: 2px;
        max-width: 75%;
    }

    .bonus .bonus__badge {
        display: block;
        border-radius: 25px;
        max-width: 70%;
        padding: 3px 10px;
        margin: 25px auto 15px;
    }

    .bonus .bonus__heading {
        min-height: 75px;
        line-height: 1.2;
    }
}