.catalog_all_product {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
}

.product_item {
    width: 25%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.big_picture {
    opacity: 0;
    width: 100%;
    transition: 0.8s;
    position: absolute;
}

.product_item:hover .big_picture {
    opacity: 1;
}

.product_item:hover .small_picture,
.product_item:hover .catalog_title,
.product_item:hover .catalog_description {
    display: none;
}

.catalog_title {
    font-weight: 600;
    margin-bottom: 10px;
}

.small_picture {
    width: 300px;
}

@media screen and (max-width: 1500px) {
    .product_item {
        width: 50%;
    }

    .product_item {
        height: 470px;
    }
}

@media screen and (max-width: 1080px) { 
    .product_item {
        height: 350px;
    }
}

@media screen and (max-width: 672px) {
    .product_item {
        height: auto;
    }
    
    .small_picture {
        width: 100%;
    }
}