.sale-products {
    display: flex;
    flex-wrap: wrap;
}

.sale-products > li {
    width: 20%;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding-bottom: 25px;
}

.sale-products > li > img {
    height: auto;
    max-width: 250px;
    padding: 25px;
}

.sale-products > li > h2 {
    font-size: 24px !important;
    font-family: 'GothamProLight' !important;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}

.sale_price {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cross {
    text-decoration: line-through;
    font-size: 14px;
    font-family: 'GothamProRegular';
    color: var(--hover-link);
}

.sale {
    font-size: 20px;
    font-family: 'GothamProBold';
}

.sale_color {
    padding-top: 5px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1500px) {

    .sale-products > li {
        width: 25%;
    }

}

@media screen and (max-width: 1250px) {

    .sale-products > li {
        width: calc(100% / 3);
    }

}

@media screen and (max-width: 1050px) {

    .sale-products > li {
        width: calc(100% / 2);
    }

}

@media screen and (max-width: 650px) {

    .sale-products > li {
        width: 100%;
    }

}