.products {
	display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
}
.catalog .products .product-item {
	width: 290px;
    flex-shrink: 0;
    height: 650px;
	margin-top: 0;
}
.products .product-item .product-card {
	height: 630px;
}
.products .product-card .type {
	height: 40px;
	display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
	body .products {
		gap: 50px;
		padding: 20px 10px;
	}
	body .catalog .products .product-item {
		width: 100%;
		height: auto;
	}
	body .products .product-item .product-card {
		height: auto;
	}
	body .products .product-item .product-card .inner:before {
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
		filter: alpha(opacity=100);
	}
}