/**====================================
Contents
====================================**/
.ecomm-offers-card{

}
.ecomm-offers-card{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ecomm-offers-card figure{
    height: 100%;
}
.ecomm-offers-card figure:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(21,21,21,1) 100%);
}
.ecomm-offers-card figure img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ecomm-offers-card .card-body{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
}
.ecomm-offers-card .card-body .offer-num{
    font-size: 36px;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 7px;
}
.ecomm-offers-card .card-body .offer-desc{
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}
.ecomm-offers-card .card-body .shop-btn{
    width: 152px;
    height: 40px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 14px;
    background-color: transparent;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.ecomm-offers-card .card-body .shop-btn:hover{
    background: #fff;
    color: #000;
}
.ecomm-offers-card .card-body .shop-btn img{
    display: block;
    max-width: 6px;
    max-height: 11px;
    margin-left: 10px;
}
.ecomm-offers-card .card-body .shop-btn:hover img{
    mix-blend-mode: difference;
}


/**====================================
Responsive 
====================================**/
@media (max-width: 1399px){
    .ecomm-offers-card .card-body .offer-num{
        font-size: 26px;
    }
    .ecomm-offers-card .card-body .offer-desc{
        font-size: 14px;
    }
}
@media (max-width: 1199px){
    .ecomm-offers-card .card-body .offer-num{
        font-size: 22px;
    }
    .ecomm-offers-card .card-body .offer-desc{
        font-size: 12px;
    }
    .ecomm-offers-card .card-body .shop-btn{
        width: 100px;
        height: 30px;
        font-size: 10px;
        letter-spacing: 2px;
    }
    .ecomm-offers-card .card-body .shop-btn img {
        max-width: 5px;
        max-height: 9px;
        margin-left: 6px;
    }
}
@media (max-width: 767px){
    .ecomm-offers-card .card-body{
        padding: 20px;
    }    
}



