.bonuses {
    padding: 2rem 0 15rem;

    @media (max-width: 991px) {
        padding: 2rem 0 5rem;
    }
}

.bonuses__title {
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin:0 0 7rem;
    text-transform: uppercase;
    font-size: 4.8rem;

    @media (max-width: 991px) {
        font-size: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }
}
.bonuses__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    margin: 0;
    gap: 2rem;

    @media (max-width: 991px) {
        grid-template-columns: 100%;
        grid-auto-rows: 1fr;
    }
}

.bonuses__item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.bonuses-cart {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;
    padding: 4rem 2rem 2rem;
    border-radius: 2rem;
    background: #F8F8F8;
    z-index: 1;

    .btn {
        display: flex;
        height: 6rem;
        padding: 1.4rem 2.4rem;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        align-self: stretch;
        margin-bottom: 0;
        color:  #0B4C8B;

        font-size: 1.8rem;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        text-transform: uppercase;

        border-radius: 0.7rem;
        border: 1px solid #D8E7F0;
        background: #FFF;
        transition: .3s ease-out;

    }

    @media (max-width: 991px) {
        .btn:hover {
            background: #D8E7F0; 
        }
        
    }
}

.bonuses-cart__title {
    color: #000;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 110%;
    margin: 0 0 1.2rem;
}

.bonuses-cart__text {
    flex-grow: 1;
    color: #000;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 2.8rem;
}

.bonuses-cart__logos {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    list-style: none;
    margin: 0 0 4rem;
}

.bonuses-cart__logos-item {
    .icon {
        display: block;
        height: auto;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
}

.bonuses-cart__img {
    position: absolute;
    height: auto;
    max-height: 60%;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: 0 auto;
    object-fit: contain;

    @media (max-width: 991px) {
        max-height: 70%;
        bottom: 2rem;
    }
}   
