
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.elem {
    padding: 7px;
    margin-bottom: 40px;
    border-radius: 10px;
    flex-basis: 21.9%;
}

.elem:hover {
    box-shadow: 0 0 8px black;
    cursor: pointer;
    background-color: rgb(245, 245, 245);
}

.no {
    height: 0px;
    margin-bottom: 0px;
}

.no:hover {
    box-shadow: 0 0 0px;
    cursor: auto;
    background-color: white;
}

.elem img {
    width: 100%;
    border-radius: 7px;
}

.elem p {
    margin: 0px;
}

.elem h4 {
    margin: 5px 0px;
}

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

    .row {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .elem {
        flex-basis: 44%;
        padding: 5px;
    }
  }