.sales-items-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}
.sales-items-list a.sale-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: calc((100% - 60px) / 3);
    max-height: 200px;
    height: 200px;
    border-radius: 15px;
    padding: 56px;
    background-color: #F3F5FA;
    color: #161616;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    box-shadow: 0 1px 5px 0 rgba(101, 101, 101, 0.15);
}
.sales-items-list a.sale-item .sale-item-title{
    font-size: 20px;
}
.sales-items-list a.sale-item .sale-item-desc{
    font-size: 24px;
}
@media (min-width: 922px){
    .sales-items-list a.sale-item:hover{
        background-color: #CCF3B5;
        color: #3F7332;
    }
}