/*@import url('fontawesome.min.css');
@import url('GeneralStyling.Css');*/

.allproducts {
    justify-content: center;
    /*height: 100%;*/
    display: flex;
    flex-wrap: wrap;
    margin-top: 120px;
}

.allproducts .Products {
    box-sizing: border-box;
    border: 2px solid rgba(216, 132, 132, 0.801);
    width: max(21%, 270px);
    min-width: 240px;
    /*height: 500px;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
    text-align: center;
    margin: 10px 10px;
}

.allproducts .Products h2 {
    transition: all 0.3s;
}

.allproducts img {
    width: 85%;
    transition: all 0.3s;
}

.Products-descripction {
    height: auto;
    width: 90%;
    padding: 0px 10px;
    margin: auto;
    text-align: justify;
    font-family: "Vazir";
    text-decoration: none;
    margin-bottom: 10px;
}

.Products-title {
    font-family: "Aviny";
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding: 10px 0px;
}

.allproducts .Products:hover img {
    scale: 1.1;
    transform: translateY(10px);
}

.allproducts .Products:hover h2 {
    scale: 1.3;
    transform: translateY(5px);
}