.sale {
    padding-top: 164px;
    background: #F1F1F1;
    position: relative;
    z-index: 1;
}
.sale:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 91%;
    top: 0;
    background: #111;
    z-index: -1;
}
.sale-title {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
.sale__inner {
    display: flex;
    justify-content: space-between;
}
.sale__item {
    width: 372px;
    height: 300px;
    position: relative;
}
.sale__item:hover .sale-text {
    padding-top: 101px;
}
.sale-img {
    width: 100%;
    height: 100%;
}
.sale-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sale-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17,17,17,.75);
    color: #fff;
    text-align: center;
    padding: 14px 0 63px;
    transition: all .2s linear;
}
.sale-text:before {
    content: '';
    position: absolute;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 47px;
    height: 4px;
    background: #fff;
}
.sale-text__title {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}
.sale-text__desc, .sale-text__date  {
    font-family: 'Lato';
}

.sale__inner .owl-item {
    display: flex;
    justify-content: center;
}

.sale-text__icon img {
    width: inherit !important;
}

@media(max-width: 480px) {
    .sale {
        padding: 80px 0 70px;
        background: #111;
    }
    .sale:before {
        content: none;
    }
    .sale-title {
        text-align: left;
        font-size: 30px;
        line-height: 38px;
    }
    .sale-text {
        padding-top: 101px;
    }
}
