.container {
    height: 45vh;
}

.products {
    display: grid;
    width: 80%;
    grid-template-columns: repeat(3, 1fr);
    margin: auto;
    justify-content: center;
}

.item h4 {
    text-align: center;
    font-weight: 500;
    color: rgb(170, 167, 167);
    font-size: 14px;
}

.item h2 {
    margin-bottom: 0;
}

.product-item {
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    margin-bottom: 8%;
}

.product-item img {
    display: inline-block;
    align-self: center;
    height: 25vh;
    width: 25vw;
    object-fit: contain;
    margin-bottom: 10%;
}

.product-item h2 {
    font-size: 13px;
    justify-items: center;
    font-weight: 600;
}

.product-item h5 {
    color: rgb(153, 151, 151);
    font-weight: 50;
}

.highlight {
    border-bottom: 2px solid black;
    padding-bottom: 5px;
}

@media (max-width: 500px) {
    .products {
        margin-top: 0;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .product-item img {
        height: 38vh;
        width: 38vw;
        margin-bottom: 0;
    }

    .container img {
        display: none;
    }

    .container {
        height: 10vh;
    }
}