.block-offer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    text-decoration: none;
    background: var(--color-light);
    border-radius: 8px;
    padding: 30px;
    min-height: 100%;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.block-offer.has-logo {
    border-radius: 32px;
    background: transparent;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.block-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.block-offer-image:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: radial-gradient(circle at 20.4% 55.2%, /* translated from translate(128 276) relative to dimensions */ #f5f6f9 6.45%, rgba(245, 246, 249, 0.93) 46.55%, rgba(245, 246, 249, 0.78) 60.81%, rgba(245, 246, 249, 0.43) 70.66%, rgba(245, 246, 249, 0) 79.99%);
}

.block-offer-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

.block-offer-content {
    width: 100%;
    z-index: 1;
    position: relative;
    transition: 0.3s ease-in-out;
}

.block-offer-icon {
    margin-bottom: 35px;
}

.block-offer-logo {
    height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.block-offer-logo img {
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

.block-offer-button {
    width: 100%;
    text-align: right;
}

@media screen and (min-width: 1025px) {
    .block-offer {
        padding: 55px;
    }

    .block-offer-image {
        opacity: 0;
    }

    .is-large .block-offer-content {
        padding-right: 35%;
    }

    .is-large .block-offer-image {
        opacity: 1;
    }
}
