.type-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.type-product {
    display: block;
}
.type-product__image--wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--background);
    max-height: 250px;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.type-product__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all .6s ease-in-out;
}
.type-product__image--wrapper::after {
    content: '';
    z-index: 1;
    width: 100px;
    height: 20px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all .6s ease-in-out;
}
.type-product__name {
    font-size: var(--font-size-16-20);
    font-weight: 700;
    line-height: 125%;
    color: var(--black);
    transition: all .6s ease-in-out;
    margin-top: 10px;
}
.type-product:hover .type-product__image {
    transform: scale(0.9);
}
.type-product:hover .type-product__image--wrapper::after {
    width: 100%;
    height: 100%;
}
.type-product:hover .type-product__name {
    color: var(--primary);
}
@media (max-width: 1024px) {
    .type-products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .type-products {
        grid-template-columns: 1fr;
    }
}