.example_products {
    display: flex;
    flex-flow: row wrap;
    margin: auto;
    justify-content: space-evenly;
}
.example_products .product_category {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.example_products article {
    background: #fff;
    transition: all 0.2s ease;
    border-radius: 3px;
}
.example_products .product-name {
    padding: 5px 20px;
    min-height: 64px;
    font-weight: 600;
}
.example_products .product-details {
    padding: 10px 20px;
    display: flex;
    flex-flow: column;
}
.example_products .product_category h4 {
    font-size: 26px;
    font-weight: 700;
}
.example_products .product_category h4,
.example_products .product_category p {
    color: #fff;
}
.example_products .product-image_container {
    text-align: center;
    padding: 5px;
    width: auto;
    height: 250px;
}
.example_products .product-image {
    object-fit: contain;
    height: 100%;
}
.example_products .product-login {
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
}
.example_products article:hover {
    transform: scale(1.05);
}
.example_products .product-login:hover {
    color: #33CC33;
}
.ppe_btn {
    width: 100%;
    text-align: center;
}
@media (min-width: 1401px) {
    .example_products article,
    .example_products .product_category {
        width: 24%;
        margin-bottom: 10px;
    }
}
@media (min-width: 1281px) and (max-width: 1400px) {
    .example_products article,
    .example_products .product_category {
        width: 48%;
        margin-bottom: 10px;
    }
}

/* @media (min-width: 1280px) {
    .example_products article,
    .example_products .product_category {
        width: 24%;
        margin-bottom: 10px;
    }
} */
@media (max-width: 1280px) and (min-width: 601px) {
    .example_products article,
    .example_products .product_category {
        width: 48%;
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) {
    .example_products article,
    .example_products .product_category {
        width: 100%;
        margin-bottom: 10px;
    }
}