.allProducts {
    padding: 9.5rem 9.375% 15.1875rem;
    background-color: #F5F7F9;
    margin-bottom: 9.375rem;
}
.allProducts__header {
    padding-bottom: 5.5625rem;
}
.allProducts__products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    column-gap: 1.875rem;
    row-gap: 6.25rem;
}

.allProducts__product{
    display: flex;
    flex-direction: column;
    height: 33rem;
    justify-content: space-between;
    align-items: center;
}

.allProducts__product__picture{
    width: 23.125rem;
    height: 23.125rem;
    background-color: #FFE9E9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 0 3.75rem;
    border-radius: 5px;
}
.allProducts__product--img {
    width: 50%;
}
.allProducts__product:nth-of-type(4) .allProducts__product--img{
    width: 35%;
}
.allProducts__product:last-of-type .allProducts__product--img{
    width: 70%;
}
.allProducts__product__text{
    text-align: center;
}

.allProducts__product__paragraph--beforePrice{
    text-decoration: line-through;
    color: #A7B0B4;
    padding-right: 5px;
}


/* MEDIA QUERIES TABLET */
@media screen and (max-width: 768px) {
    .allProducts__product__picture{
        width: 100%;
        height: 60%;
    }
    .allProducts {
        padding: 3rem 6% 6rem;
        margin-bottom: 4rem;
    }
    .allProducts__header {
        padding-bottom: 3rem;
    }
}