.products__container{
    padding: 4rem;
}
.products__cards{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.product{
    overflow: hidden;
    background: #fff;
    text-align: center;
    width: 240px;
    height: 380px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(163, 162, 162);
    border-radius: 1rem;
    margin: 2rem;
}
.product:hover img{
    scale: 1.05;
}
.product:hover{
    box-shadow: 5px 15px 25px #000;
    /* border: 2px solid #dc6504; */
}
.product a:link, .product a:visited{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: black;
    border-radius: 4px;
    padding: .5rem;
}
.card__img{
    /* margin-bottom: 1rem; */
    height: 220px;
    border-radius: 1.2rem;
    margin: 1rem;
    transition: all .3s;
}
/* .card__info{
    margin-bottom: 1rem;
} */