.offers-block {
    min-height: 530px;
    margin: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}
.offers-block-container {
    min-height: 530px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
}
.offers-block__card {
    position: relative;

    flex: 1 1 0;
    min-width: 0;
    max-width: 412px;
    height: 530px;

    overflow: hidden;
}
.offers-block__picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.offers-block-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* min-height: 530px; */
}
.offers-block__content-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    position: relative;
}
.offers-block__content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    width: 100%;
    height: 100%;
}
.offers-block__content-title {
    display: block;
    font-family: 'Inter';
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0%;
    margin: 0;
}
.offers-block__content-subtitle {
    display: block;
    font-family: 'Inter';
    font-weight: 600;
    text-transform: none;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0%;
}
/* .offers-block__content-head .btn-offers-block.btn-credit {
        background: #ffce00;
    } */
.btn-offers-block.btn-models {
    border: none;
    text-transform: none;
    height: 44px;
    color: #000000;
    font-family: 'Inter';
    font-weight: 500;
}
@media (max-width: 768px) {
    .offers-block {
        min-height: 520px;
        margin: 0;
    }
    .offers-block-container {
        min-height: 520px;
        flex-direction: column;
        gap: 20px;
    }
    .offers-block__card {
        max-width: 100%;
        height: 160px;
    }
    .offers-block__content-head {
        gap: 2px;
    }
    .offers-block__content {
        padding: 8px 10px;
    }
    .offers-block__content-title {
        font-size: 22px;
    }
    .offers-block__content-subtitle {
        font-size: 16px;
        line-height: 1;
    }
    .offers-block__content-head .btn-offers-block.btn-credit {
        font-size: 15px;
    }
    .btn-offers-block.btn-models {
        text-transform: uppercase;
        font-weight: 700;
    }
}