
.promo__list {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.promo__list:after{content: '';  width: calc(50% - 10px);}

.promo__item {
    padding: 20px;
    background: #ffffff;
    width: calc(50% - 10px);
    display: block;

    margin-left: auto;
    border-radius: 30px;
    overflow: hidden;
}


.promo__item_card{display: flex; flex-direction: column; height: 100%;position: relative;}
.promo__item_card__content {
    padding: 20px;
}

.promo__item_card__content__title {
    font-family: "Unbounded", sans-serif;
    line-height: 1.2;
    font-size: 24px;
    margin: 0;
    padding-right: 30px;
    font-weight: 400;
}

.promo__discount-title{padding: 0 20px;
    margin: 0;
    margin-bottom: 5px;
    color: #007aff;
    font-size: 13px;}

.promo__item_card__content__desc {
    min-height: 40px;
    padding-right: 40px;
}

.promo__item_card__content__date {
    margin-bottom: 20px;
    background: #ccc;
    padding: 5px 13px;
    display: inline-block;
    background: #f4f6fa;
    border-radius: 20px;
    color: #818da8;
    margin-left: -10px;
    top: -10px;
    position: relative;
    font-size: 14px;
    display: none;
}

.promo__item_card__row {
    display: flex;
}

.promo__item_card__row_col {
    display: flex; flex-direction: column;
    width: 100%;
}

.promo__item_card__icon {
    width: 120px;
    height: 120px;
    background: url(../images/ills/home.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    margin-bottom: 20px;
    position: absolute;
    bottom: -30px;
    right: -10px;
}

.promo__item_card__icon_familyipoteka{background-image: url(../images/ills/home.png);}
.promo__item_card__icon_itipoteka{background-image: url(../images/ills/it.png);}
.promo__item_card__icon_skidka15{background-image: url(../images/ills/percent.png);}
.promo__item_card__icon_transhevaya{background-image: url(../images/ills/transh.png);}
.promo__item_card__icon_skidka{background-image: url(../images/ills/k13.png);}

.promo__item_card__btn{
    width: 100%;
    padding: 20px 20px;
    /* background: #f4f6fa; */
    color: var(--main-color);
    border-radius: 10px;
    display: flex;
    font-size: 16px;
    align-content: center;
    line-height: 20px;
}


.promo__item_card__counter {
    display: flex;
    align-content: center;
    padding: 0 20px 20px;

}

.promo__discount-timer {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 5px;
}

.promo__discount-timer span{display: flex; gap: 0px; flex-direction: column;}

.promo__discount-timer span strong{font-size: 22px;
    line-height: 1;
    font-family: "Unbounded", sans-serif; }
.promo__discount-timer span small{}

.promo__discount-timer .blink{font-size: 20px;
    line-height: 1;
    font-family: "Unbounded", sans-serif;
    width: 5px;
    display: flex;
    text-align: center;}


@media (max-width: 576px) {
    .promo__list:after{content: '';  width: calc(100% - 10px);}

    .promo__item {
        padding: 15px 10px;
        background: #ffffff;
        width: calc(100%);
        display: block;

        margin-left: auto;
        border-radius: 30px;
    }

    .promo__item_card__content__title {

        padding-right: 0px;
    }
    .promo__item_card__icon {
        /*width: 80px;*/
        /*height: 80px;*/

        bottom: -20px;
        right: 0px;
    }

}